:root {
	--main-color-text: #292929;
	--auxiliary-color: #8E8E8E;
	--main-color-two: #BC7750;
    --auxiliary-color-two: #FFD392;
    --main-color: #2DBBB5;
    --auxiliary-color-three: #DEFFFE;
    --auxiliary-color-four: #EEFEFF;
    --font-second: 'Segoe Script';
}
/* Fonts  */
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat-medium-webfont.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat-semibold-webfont.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Segoe Script';
    src: url('../fonts/subset-SegoeScript-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe Script';
    src: url('../fonts/subset-SegoeScript.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track:hover {
    background-color: #e5ebff;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--auxiliary-color);
    border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--main-color); 
  }

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'montserrat', sans-serif;
    color: var(--main-color-text);
    overflow-x: hidden;
}
.container {
    max-width: 1360px;
    position: relative;
}
#page .container,#page .content-container {
    max-width: 1300px;
}
.tqb-answer-status{
	display:none
}
.content-container {
    max-width: 1200px;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
}
.content-container.center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.slider-page .slider-page-main > .swiper-wrapper > .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section-title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 15px;
}
.block-title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.block-title::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: -10px;
    width: 65px;
    height: 25px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .content-container.center {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: auto;
    }
    .slider-page .swiper-slide {
        display: block;
    }
    .section-title  {
        font-style: normal;
        font-weight: 600;
        font-size: 22px;
        line-height: 27px;
    }
    .block-title {
        font-size: 22px;
        line-height: 27px;
    }
    .block-title::before {
        width: 30px;
        height: 12px;
    }
}
/* Links
--------------------------------------------- */
a {
	color: var(--main-color-text);
}

a:visited {
	color: var(--main-color-text);
}

a:hover,
a:focus,
a:active {
	color: var(--main-color);
    outline: none;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}
h2, .h2, .text .h2, .h1-like-h2 h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 25px;
}
p {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
	margin-bottom: 1.5em;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    h2, .h2, .text .h2, .h1-like-h2 h1 {
        font-weight: 600;
        font-size: 22px;
        line-height: 27px;
    }
    p {
        font-size: 16px;
    }
}
/* Forms
--------------------------------------------- */
form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
button {
    border: none;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"],
.custom-button {
	background: #2DBBB5;
    -webkit-box-shadow: 0px 10px 30px rgba(45, 187, 181, 0.2);
            box-shadow: 0px 10px 30px rgba(45, 187, 181, 0.2);
    border-radius: 5px;
    color: #fff !important;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;  
    text-transform: uppercase;
    padding: 20px 50px;
    border: none;
    cursor: pointer;
    width: auto;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
a.custom-button:hover {
    color: #fff;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
    outline: none;
}
.custom-button:active,
.custom-button:focus {
	border: none;
    color: initial;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--auxiliary-color);
    border: none;
	border-bottom: 1px solid #C4C4C4;
	padding: 3px;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 40px;
    font-family: 'montserrat', sans-serif;
}
.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    padding-left: 26px;
    padding-bottom: 40px;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    position: relative;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
    position: absolute;
    content: '';
    top: -4px;
    left: -26px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--main-color);
    display: block;
    cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label::after {
    position: absolute;
    content: '';
    top: -1px;
    left: -23px;
    width: 14px;
    height: 14px;
    background-color: var(--main-color);
    display: block;
    cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item label input {
    opacity: 0;
    display: none;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: var(--main-color-text);
    cursor: pointer;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus, input:active {
	color: var(--main-color-text);
    border: none;
	border-bottom: 1px solid var(--main-color);
    outline: none;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
    resize: vertical;
    min-height: 30px;
    overflow-x: hidden;
}
.input-wrapper {
    position: relative;
}
.input-wrapper.submit-wrapper {
    text-align: center;
    padding: 10px 0 30px 0;
}
.input-wrapper.privacy-policy {
    text-align: center;
}
.input-wrapper.privacy-policy a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}
.input-info {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 1;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: var(--main-color);
}
.form-info-text {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: var(--main-color);
}
.input-wrapper .text-date::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--main-color);
    top: 0;
    right: -5px;
}
.wpcf7 .ajax-loader {
    display: block;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
}
/* Flags input  */
.iti__flag {
    background-image: url("../images/flags.png") !important;
}
.iti {
    margin-bottom: 40px;
    width: 100%;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("../images/flags@2x.png");}
}
@media screen and (max-width: 767px) {
    input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .custom-button {
        font-size: 12px;
        padding: 10px 25px;
    }
}
/* MODALS  */
.modal {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.modal.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.75;
}
.modal .modal-content {
    overflow: auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.05);
    max-width: 875px;
    width: 100%;
    z-index: 1;
    padding: 50px 15px 15px 15px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.modal .modal-content .close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    cursor: pointer;
}
.modal .modal-content .close-button svg {
    height: 26px;
}
.modal .modal-content .title {
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 100px;
}
#enter .modal-content {
   max-width: 650px;
}
#enter .modal-content .title {
    margin-bottom: 50px;
}
.modal .modal-content .form-wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.modal .modal-content .privacy-policy {
    text-align: center;
}
.modal .modal-content .privacy-policy a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}
.modal-buttons {
    justify-content: center;
    gap: 40px;
    display: flex;
}
@media screen and (max-width: 767px) {
    .modal .modal-content {
        height: 100%;
        overflow-y: scroll;
    }
    .modal .modal-content .title {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    #enter .modal-content {
        width: 90%;
        height: auto;
    }
}
/* Breadcrumbs  */
.breadcrumbs-wrapper .rank-math-breadcrumb a, .breadcrumbs-wrapper .rank-math-breadcrumb .last {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
}
.breadcrumbs-wrapper .rank-math-breadcrumb .separator {
    padding: 0 5px;
}
.breadcrumbs-wrapper .rank-math-breadcrumb .separator svg {
    width: 20px;
    vertical-align: middle;
}
.breadcrumbs-wrapper .rank-math-breadcrumb .last {
    color: var(--main-color);
}
.breadcrumbs-wrapper.white-breadcrumbs .rank-math-breadcrumb a {
    color: #fff;
}
.breadcrumbs-wrapper.white-breadcrumbs .rank-math-breadcrumb a:hover {
    color: var(--main-color);
}
@media screen and (max-width: 767px) {
    .breadcrumbs-wrapper .rank-math-breadcrumb a, .breadcrumbs-wrapper .rank-math-breadcrumb .last {
        font-size: 12px;
    }
}
/* HEADER START  */
#page.main.sticky #header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9;
    color: #fff;
}
#header .top-header {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
    padding-bottom: 5px;
}
#header .top-header .top-header-col {
    display: flex;
    align-items: center;
    margin-right: 10px;
    flex-wrap: wrap;
	max-width: 320px;
}
#header .top-header .top-header-col .last{
	text-align: right;
	width: 100%;
}
#header .top-header .top-header-col .time{
	font-size:20px
}
#header .top-header svg {
    height: 20px;
    margin-right: 5px;
}
#header .top-header svg path {
    fill: var(--main-color);
}
#header .top-header a {
    text-decoration: none;
    color: #fff;
}
.about-us-page #header .top-header, 
.about-us-page #header .top-header a,
.slider-page #header .top-header,
.slider-page #header .top-header a,
.post-page #header .top-header,
.post-page #header .top-header a,
.service-page #header .top-header,
.service-page #header .top-header a,
.special-page #header .top-header,
.special-page #header .top-header a,
.staff-single-page #header .top-header,
.staff-single-page #header .top-header a
{
    color: #fff;
}
#header .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0;
}
#header a.mobile-phone {
    display: none;
    margin-left: auto;
}
#header a.mobile-phone svg {
    height: 30px;
}
#header a.mobile-phone:hover svg path,
#header-mob a.mobile-phone:hover svg path {
    fill: var(--main-color);
}
#header .mobile-toggler {
    display: none;
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 15px;
    margin-left: 10px;
}
/* Menu  */
#header .menu-wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
#header .menu-wrapper #primary-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
#header .menu-wrapper #primary-menu .menu-item a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 5px;
    line-height: 1;
    text-decoration: none;
    color: #fff;
}
#header .menu-wrapper #primary-menu .menu-item.menu-item-has-children li a:hover{
    color: #000;
}
#header .menu-wrapper #primary-menu .menu-item a:hover{
    color: #2dbbb5;
}
.main-navigation.white-menu #primary-menu li a {
    color: #fff;
}
.main-navigation.white-menu #primary-menu .sub-menu  a:hover {
    color: #000;
}
#header .phone-wrapper a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 25px;
}
#header .phone-wrapper a:hover, #header .phone-wrapper a:active, #header .phone-wrapper a:focus {
    color: #fff;
}
#primary-menu > li {
    padding: 20px 0;
}
#primary-menu li.menu-item-has-children {
    position: relative;
}
#primary-menu li.menu-item-has-children::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fff
}
#primary-menu li.menu-item-has-children .sub-menu {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 5px;
    list-style: none;
    padding: 10px;
    margin: 0;
    width: 275px;
    background-color: var(--main-color);
    z-index: 9;
    max-height: 0px;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: hidden;
}
#primary-menu li.menu-item-has-children:hover .sub-menu {
    /* display: block; */
    opacity: 1;
    max-height: 430px;
}
#primary-menu li.menu-item-has-children .sub-menu li a {
    display: block;
}
/* Menu  Chernivtsi */
#header .menu-wrapper #main-menu-chernivtsi {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
#header .menu-wrapper #main-menu-chernivtsi .menu-item a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 5px;
    line-height: 1;
    text-decoration: none;
    color: #fff;
}
#header .menu-wrapper #main-menu-chernivtsi .menu-item.menu-item-has-children li a:hover{
    color: #000;
}
#header .menu-wrapper #main-menu-chernivtsi .menu-item a:hover{
    color: #2dbbb5;
}
.main-navigation.white-menu #main-menu-chernivtsi li a {
    color: #fff;
}
.main-navigation.white-menu #main-menu-chernivtsi .sub-menu  a:hover {
    color: #000;
}
#header .phone-wrapper a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 25px;
}
#header .phone-wrapper a:hover, #header .phone-wrapper a:active, #header .phone-wrapper a:focus {
    color: #fff;
}
#main-menu-chernivtsi > li {
    padding: 20px 0;
}
#main-menu-chernivtsi li.menu-item-has-children {
    position: relative;
}
#main-menu-chernivtsi li.menu-item-has-children::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fff
}
#main-menu-chernivtsi li.menu-item-has-children .sub-menu {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 5px;
    list-style: none;
    padding: 10px;
    margin: 0;
    width: 275px;
    background-color: var(--main-color);
    z-index: 9;
    max-height: 0px;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: hidden;
}
#main-menu-chernivtsi li.menu-item-has-children:hover .sub-menu {
    /* display: block; */
    opacity: 1;
    max-height: 400px;
}
#main-menu-chernivtsi li.menu-item-has-children .sub-menu li a {
    display: block;
}
.slider-page .home-header #main-menu-chernivtsi li a:hover {
    color: var(--main-color);
}
.mobile-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.93)), to(rgba(255, 255, 255, 0.93))), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
    background-position: center;
    padding: 20px 15px 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.mobile-menu-wrapper.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mobile-menu-wrapper .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.mobile-menu-wrapper .top .mobile-menu-close-button {
    background: none;
    border: none;
    padding: 15px;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.mobile-menu-wrapper .menu-wrapper {
    overflow-y: scroll;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.mobile-menu-wrapper .menu {
    margin: 0;
    padding: 20px 0 0 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.mobile-menu-wrapper .menu li {
    margin-bottom: 25px;
    text-align: center;
}
.mobile-menu-wrapper .menu li.menu-item-has-children .sub-menu {
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding-top: 25px;
}
.mobile-menu-wrapper .menu li.menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
}
.mobile-menu-wrapper .menu li a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    display: block;
}
.mobile-menu-wrapper .phone-wrapper {
    text-align: center;
    margin-bottom: 20px;
}
.mobile-menu-wrapper .phone-wrapper a {
    display: inline-block;
    padding: 5px 25px;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
}
.socials-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: center;
        align-content: center;
}
@media screen and (max-width: 991px) {
    #primary-menu > li {
        padding: initial;
    }
    #main-menu-chernivtsi > li {
        padding: initial;
    }
    #header .top-header {
        display: none;
    }
    #header .header-wrapper {
        padding-top: 20px;
    }
    #header .header-wrapper .logo-wrapper a img {
        width: 100px;
        height: auto;
    }
    #header .menu-wrapper {
        display: none;
    }
    #header a.mobile-phone {
        display: block;
        color: #fff;
    }
    #header .mobile-toggler {
        display: block;
    }
    #header .phone-wrapper {
        display: none;
    }
    .mobile-menu-wrapper .menu li.menu-item-has-children > a {
        display: none;
    }
    .mobile-menu-wrapper .menu li.menu-item-has-children .sub-menu {
        padding-top: 0;
    }
}
/* HEADER END  */
/* FOOTER START  */

/* FOOTER END  */

/* HOME START */
.slider-page {
    height: 100%;
    overflow: hidden;
}
.slider-page .slider-page-main.swiper-container {
    height: 100Vh;
}
.slider-page .inner-slide {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.slider-page .home-header #primary-menu li a:hover {
    color: var(--main-color);
}
.slider-page .inner-slide .inner-scroll-icon {
    position: absolute; 
    bottom: 20px;
    left: 0;
    right: 0;
    height: 45px;
    width: 28px;
    margin-left: auto; 
    margin-right: auto; 
}
.slider-page .inner-slide .content-wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 1140px;
    margin: auto;
    width: 100%;
    padding-bottom: 40px;
}
.slider-page .inner-slide .content-wrapper .container {
    height: 100%;
}
.slider-page .inner-slide .content-wrapper > .container > .row {
    height: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.slider-page .inner-slide .content-wrapper .top-title {
    font-family: var(--font-second);
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    line-height: 1.5;
    margin-bottom: 5px;
}
.slider-page .inner-slide .content-wrapper .title {
    font-weight: 600;
    font-size: 64px;
    line-height: 78px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    width: auto;
}
.slider-page .inner-slide .content-wrapper .title span {
    color: var(--main-color);
}
.slider-page .inner-slide .content-wrapper .title::after {
    position: absolute;
    content: '';
    bottom: -7px;
    right: 0;
    width: 115px;
    height: 5px;
    border-radius: 3px;
    background-color: var(--main-color);
}
.slider-page .inner-slide .content-wrapper p {
    margin: 0;
}
.slider-page .inner-slide .content-wrapper .inner-text {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
}
.slider-page .slider-page-pagination {
    left: 10px;
    height: 320px;
    width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.slider-page .slider-page-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: none;
    border: 1px solid #fff;
    opacity: 1;
    position: relative;
}
.slider-page .slider-page-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.slider-page .slider-page-pagination.dark .swiper-pagination-bullet {
    border-color: #000;
}
.slider-page .slider-page-pagination.dark .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background-color: #000;
}
.slider-page .slider-page-pagination .swiper-pagination-bullet .bullet-title {
    /* display: none; */
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    margin-left: 25px;
    color: var(--main-color);
    white-space: nowrap;
}
.slider-page .slider-page-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-title {
    display: inline-block;
}
@media screen and (max-width: 1320px) {
    .slider-page .slider-page-pagination {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .slider-page {
        height: inherit;
        overflow: auto;
    }
    .slider-page .slider-page-main.swiper-container {
        height: auto;
    }
    .slider-page .slider-page-main > .swiper-wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .slider-page .inner-slide .content-wrapper .top-title {
        font-size: 18px;
    }
    .slider-page .inner-slide .content-wrapper .title {
        font-size: 28px;
        line-height: 34px;
    }
    .slider-page .inner-slide .content-wrapper .title::after {
        content: none;
    }
    .slider-page .inner-slide .content-wrapper .text {
        font-size: 14px;
    }
    .slider-page .inner-slide .inner-scroll-icon {
        display: none;
    }
}
/* Home services  */
.home-services {
    padding: 40px 0;
}
.home-services .content-container {
    position: relative;
    background-color: #fff;
    /* display: flex; */
}
.home-services .content-container::before {
    position: absolute;
    content: '';
    bottom: -1px;
    left: -1px;
    width: 105px;
    height: 70px;
    background-color: var(--auxiliary-color);
    z-index: -1;
}
.home-services .content-container::after {
    position: absolute;
    content: '';
    bottom: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    z-index: -1;
}
.home-services .services-title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.home-services .services-title::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: -10px;
    width: 65px;
    height: 25px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.home-services .services-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 35px;
    padding-bottom: 35px;
}
.home-services .services-col .services-wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
}
.home-services .services-col .services-wrapper li span {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: var(--main-color);
}
.home-services .services-col .services-wrapper li a {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    margin-left: 30px;
}
.home-services .img-col {
    position: relative;
    z-index: 1;
}
.home-services .img-col::before {
    position: absolute;
    content: '';
    bottom: -15px;
    right: 15px;
    width: 100%;
    height: 100%;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.home-services .bottom-text-wrapper {
    padding: 45px 0;
    text-align: right;
    max-width: 1200px;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.home-services .bottom-text-wrapper .bottom-text {
    background-color: #fff;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--font-second);
    color: var(--main-color);
    display: inline-block;
}
.home-services .bottom-text-wrapper::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.1;
    z-index: -1;
}
.home-services .mobile-services .service-item .img {
    padding: 20px 15px;
    position: relative;
}
.home-services .mobile-services .service-item .img a {
    display: block;
    height: 175px;
}
.home-services .mobile-services .service-item .img a img {
    width: 90%;
    height: 175px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.home-services .mobile-services .service-item .img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 90%;
    border: 1px solid #292929;
    opacity: 0.1;
}
.home-services .mobile-services .service-item:hover .img::before {
    border-color: var(--main-color);
    opacity: 1;
}
.home-services .mobile-services .service-item:nth-child(2n) .img a img {
    right: auto;
    left: 0;
}
.home-about-us {
    padding-bottom: 40px;
}
.home-about-us .img-col .img-wrapper {
    position: relative;
}
.home-about-us .img-col .img-wrapper::before {
    position: absolute;
    content: '';
    bottom: -5px;
    left: 5px;
    width: 90%;
    height: 90%;
    opacity: 0.1;
    border: 1px solid #000;
    z-index: -1;
}
.home-about-us .img-col .img-wrapper::after {
    position: absolute;
    content: '';
    bottom: -15px;
    left: -5px;
    width: 150px;
    height: 150px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.home-about-us .text-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.home-about-us .about-text {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.home-about-us .about-text::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100px;
    background-color: var(--main-color);
    border-radius: 3px;
}
.home-about-us .readmore {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.home-reviews .top-text {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--font-second);
    color: var(--main-color);
    text-align: center;
    margin-bottom: 20px;
}
.home-reviews .section-title {
    text-align: center;
    font-size: 36px;
    line-height: 44px;
}
.home-reviews.home-reviews .section-title{
    padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .home-services .services-title {
        font-size: 22px;
        line-height: 27px;
    }
    .home-services .services-title::before {
        width: 30px;
        height: 12px;
    }
    .home-services .services-col {
        padding-left: 15px;
        padding-right: 15px;
    }
    .home-services .content-container::before, .home-services .content-container::after {
        content: none;
    }
    .home-services .services-col .services-wrapper li {
        margin-bottom: 30px;
    }
    .home-about-us .readmore {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }
}
/* HOME END */
/* Make appointment form  */
.make-appointment {
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.make-appointment::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.make-appointment::after {
    position: absolute;
    content: '';
    top: -2px;
    right: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.make-appointment .cta-col {
    text-align: center;
}
.make-appointment .cta-col .title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 15px;
}
.make-appointment .cta-col .text, .make-appointment .phones-col .text {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: var(--auxiliary-color);
    margin-bottom: 15px;
}
.make-appointment .phones-col {
    text-align: center;
}
.make-appointment .phones-col a {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    text-decoration: none;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .make-appointment {
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.93)), to(rgba(255, 255, 255, 0.93))), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
/* Reviews  */
.reviews-wrapper {
    position: relative;
}
.reviews-wrapper::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.reviews-wrapper .review-item .img-col {
    position: relative;
}
.reviews-wrapper .review-item .img-col img {
    max-height: 375px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}
.reviews-wrapper .review-item .img-col .video-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.reviews-wrapper .review-item .img-col .video-wrapper video {
    display: block;
    width: 100%;
}

.reviews-wrapper .review-item .img-col .play-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    right: -30px;
    width: 140px;
    height: 140px;
    background-color: var( --main-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.reviews-wrapper .review-item .img-col .play-button svg {
    -webkit-transform: translateX(6px);
        -ms-transform: translateX(6px);
            transform: translateX(6px);
}
.reviews-wrapper .review-item .img-col .play-button:hover {
    -webkit-transform: translateY(-50%) scale(0.8);
        -ms-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
}
.reviews-wrapper .review-item .text-col {
    position: relative;
    padding: 17px 29px 0 40px;
}
.reviews-wrapper .review-item .text-col::after {
    position: absolute;
    content: '';
    top: -2px;
    right: 0px;
    width: 70px;
    height: 60px;
    background-color: var(--main-color);
    z-index: -2;
}
.reviews-wrapper .review-item .text-col .text-wrapper {
    background-color: #EEFEFF;
    height: 100%;
    position: relative;
    padding: 50px 20px 40px 20px;
}
.reviews-wrapper .review-item .text-col .text-wrapper::after {
    position: absolute;
    content: '';
    top: -15px;
    right: -15px;
    width: 45%;
    height: 45%;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.reviews-wrapper .review-item .text-col .name {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}
.reviews-wrapper .review-item .text-col .text {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
.reviews-wrapper .slider-navigation {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    bottom: 0px;
    padding: 10px;
}
.reviews-wrapper .slider-navigation svg path {
    fill: var(--auxiliary-color);
}
.reviews-wrapper .slider-navigation:hover svg path {
    fill: var(--main-color);
}
.reviews-wrapper .slider-button-prev {
    right: 40%;
}
.reviews-wrapper .slider-button-next {
    right: 30%;
}
.reviews-wrapper .slider-pagination.swiper-pagination-fraction {
    position: absolute;
    bottom: 0;
    z-index: 2;
    right: 0;
    left: inherit;
    display: block;
    width: 50px;
}
.reviews-wrapper .slider-pagination.swiper-pagination-fraction .swiper-pagination-current {
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    color: var(--main-color);
}
.reviews-wrapper .slider-pagination.swiper-pagination-fraction .swiper-pagination-total {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
}
.home-reviews .readmore {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.home-reviews .mobile-reviews-title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 40px;
    position: relative;
    display: none;
    z-index: 1;
}
.home-reviews .mobile-reviews-title::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: -10px;
    width: 65px;
    height: 25px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.home-reviews .mobile-reviews-wrapper {
    background-color: var(--auxiliary-color-three);
}
.home-reviews .mobile-reviews-wrapper .review-mobile-item {
    padding: 15px 20px 50px 15px;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-item .name {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 10px;
    padding-right: 70px;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-item .text {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-pagination {
    position: absolute;
    top: 15px;
    z-index: 2;
    right: 10px;
    display: block;
    width: 50px;
    text-align: center;
    left: inherit;
    bottom: inherit;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-pagination .swiper-pagination-current {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: var(--main-color);
}
.home-reviews .mobile-reviews-wrapper .review-mobile-pagination .swiper-pagination-total {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-navigation {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    bottom: 0px;
    padding: 10px;
}
.home-reviews .mobile-reviews-wrapper .review-mobile-navigation svg path {
    fill: var(--auxiliary-color);
}
.home-reviews .mobile-reviews-wrapper .review-mobile-navigation:hover svg path {
    fill: var(--main-color);
}
.home-reviews .mobile-reviews-wrapper .review-mobile-button-prev {
    left: calc(50% - 90px);
}
.home-reviews .mobile-reviews-wrapper .review-mobile-button-next {
    left: 50%;
}
.home-reviews .mobile-review-button {
    margin: 20px 0 40px 0;
    display: none;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .home-reviews .mobile-reviews-title {
        font-size: 22px;
        line-height: 27px;
        display: inline-block;
    }
    .home-reviews .mobile-reviews-title::before {
        width: 30px;
        height: 12px;
    }
    .home-reviews .mobile-review-button {
        display: block;
    }
    .home-reviews .mobile-reviews-wrapper .review-mobile-item .text {
        font-size: 16px;
    }
}
/* Staff  */
.home-staff .staff-title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.home-staff .staff-title::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: -10px;
    width: 65px;
    height: 25px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.home-staff .staff-slider {
    height: 600px;
} 
.home-staff .staff-slider .staff-slider-navigation {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    bottom: 60px;
    padding: 10px;
}
.home-staff .staff-slider .staff-slider-navigation svg path {
    fill: var(--auxiliary-color);
}
.home-staff .staff-slider .staff-slider-navigation:hover svg path {
    fill: var(--main-color);
}
.home-staff .staff-slider .staff-slider-button-prev {
    left: calc(50% - 90px);
}
.home-staff .staff-slider .staff-slider-button-next {
    left: 50%;
}
.home-staff .staff-slider .staff-item {
    padding: 0 15px 15px 15px;
    text-align: center;
}
.home-staff .staff-slider .staff-item img {
    border-radius: 30px;
}
.home-staff .staff-slider .staff-item .staff-img {
    max-height: 340px;
}
.home-staff .staff-slider .staff-item .staff-info {
    display: none;
    text-align: center;
}
.home-staff .staff-slider .staff-item .staff-info .name {
    position: relative;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    padding: 10px 0 15px 0;
    display: inline-block;
}
.home-staff .staff-slider .staff-item .staff-info .name img {
    position: absolute;
    top: 0;
    left: -35px;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.home-staff .staff-slider .staff-item .staff-info .description {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
}
.home-staff .staff-slider .staff-item.swiper-slide-active .staff-info {
    display: block;
}
.home-staff .staff-slider .slider-pagination.swiper-pagination-fraction {
    position: absolute;
    bottom: 85px;
    z-index: 2;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 100px;
    text-align: center;
}
.home-staff .staff-slider .slider-pagination.swiper-pagination-fraction .swiper-pagination-current {
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    color: var(--main-color);
}
.home-staff .staff-slider .slider-pagination.swiper-pagination-fraction .swiper-pagination-total {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
}
.home-staff .staff-bg-line {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-bottom: 20px;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item .col-img {
    width: 30%;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item .col-img img {
    border-radius: 10px;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item .col-info {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item .col-info .name {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 5px;
}
.home-staff .staff-mobile-wrapper .staff-mobile-item .col-info .description {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .home-staff .staff-title {
        font-size: 22px;
        line-height: 27px;
    }
    .home-staff .staff-title::before {
        width: 30px;
        height: 12px;
    }
    .home-staff .staff-mobile-wrapper .staff-mobile-item .col-info .name {
        font-size: 18px;
    }
    .home-staff .staff-mobile-wrapper .staff-mobile-item .col-info .description {
        font-size: 16px;
    }
}
/* Specials  */
.specials-block {
    position: relative;
    background-color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.specials-block::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 70px;
    width: 100px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-right: 60px solid #dedede;
}
.specials-block::after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -2px;
    height: 70px;
    width: 100px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-left: 60px solid #dedede;
}
.special-item {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.special-item .col-img {
    padding-right: 0;
}
.special-item .col-img a {
    display: block;
    height: 100%;
}
.special-item .col-img a img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.special-item .col-info {
    background-color: var(--auxiliary-color-three);
    padding: 20px 30px;
}
.special-item .col-info .title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 15px;
}
.special-item .col-info .description {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
.special-item .col-info .date {
    font-weight: bold;
}
.special-item .col-info .details-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
}
.special-item .col-info .details-wrapper .readmore {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
    color: var(--main-color);
}
.special-item .col-info .details-wrapper .price-wrapper .price-full {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    color: var(--auxiliary-color);
}
.special-item .col-info .details-wrapper .price-wrapper .price-spacial {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    color: red;
}
/* .special-item:nth-child(odd) .col-info .details-wrapper .price-wrapper .price-spacial {
    color: red;
} */
.specials-block .readmore-wrapper {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .special-item .col-info .title {
        font-size: 18px;
    }
    .special-item .col-info .description {
        font-size: 14px;
    }
}
/* News  */
.home-news .readmore-wrapper {
    text-align: center;
}
.news-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    background-color: #fff;
}
.news-wrapper::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 70px;
    width: 100px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-right: 60px solid #dedede;
}
.news-wrapper::after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -2px;
    height: 70px;
    width: 100px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-left: 60px solid #dedede;
}
.news-wrapper .news-item {
    padding: 0 30px 0 30px;
}
.news-wrapper .news-item .img-wrapper {
    position: relative;
}
.news-wrapper .news-item .img-wrapper a {
    display: block;
}
.news-wrapper .news-item .img-wrapper a img {
    display: block;
}
.news-wrapper .news-item .img-wrapper .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    text-align: center;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #fff;
    background-color: var(--main-color);
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px 5px 0 0;
}
.news-wrapper .news-item .excerpt {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.02em;
    padding: 15px;
}
@media screen and (max-width: 767px) {
    .news-wrapper .news-item .img-wrapper .title {
        font-size: 16px;
    }
    .news-wrapper .news-item .excerpt {
        font-size: 14px;
    }
}
/* Footer  */
.footer {
    padding-top: 30px;
    padding-bottom: 15px;
}
.footer .logo-wrapper {
    margin-bottom: 20px;
}
.footer .footer-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.footer .footer-navigation.block-navigation ul {
    display: block;
}
.footer .footer-navigation li {
    margin: 0 10px;
}
.footer .footer-navigation li a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    white-space: nowrap;
}
.socials-wrapper {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer .phone-title {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 5px;
}
.footer .phone-wrapper a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    white-space: nowrap;
}
.footer .phone-wrapper a:hover {
    text-decoration: underline;
}
.footer .phone-text {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--auxiliary-color);
}
.footer a.email {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .footer {
        text-align: center;
    }
    .footer .col-logo, .footer .col-menu {
        margin-bottom: 20px;
    }
    /* .footer .col-menu {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    } */
    .footer .col-contacts {
        margin-bottom: 20px;
    }
}
/* Services  */
.services-wrapper .service-item {
    margin-bottom: 50px;
}
.services-wrapper .service-item .title {
    position: relative;
    padding-left: 70px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
}
.services-wrapper .service-item .title img {
    width: 65px;
    height: 65px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.services-wrapper .service-item .title a {
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    text-decoration: none;
    display: block;
    color: var(--main-color);
    line-height: 1;
}
.services-wrapper .service-item .title a:hover {
    text-decoration: underline;
}
.services-wrapper .service-item .children-list {
    list-style: none;
    padding: 0px 0 0 85px;
    margin: 0;
    max-height: 150px;
    height: auto;
    overflow: hidden;
    -webkit-transition: max-height 1s ease-in-out;
    -o-transition: max-height 1s ease-in-out;
    transition: max-height 1s ease-in-out;
}
.services-wrapper .service-item .children-list.open {
    max-height: 1920px;
}
.services-wrapper .service-item .children-list li {
    position: relative;
}
.services-wrapper .service-item .children-list li::after {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--main-color);
    display: block;
    top: 5px;
    left: -15px;
}
.services-wrapper .service-item .children-list li a {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}
.services-wrapper .service-item .list-toggle {
    display: block;
    margin-left: 65px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    cursor: pointer;
    line-height: 1.6;
    color: var(--main-color);
}
@media screen and (max-width: 767px) {
    .services-wrapper .service-item {
        margin-bottom: 0;
    }
    .services-wrapper .service-item .title {
        margin-bottom: 0;
    }
    .services-wrapper .service-item .title img {
        width: 50px;
        height: 50px;
        top: calc(50% - 25px);
    }
    .services-wrapper .service-item .title a {
        line-height: 1;
        font-size: 18px;
    }
    .services-wrapper .service-item .children-list {
        max-height: 165px;
    }
}
/* Service page  */
.service-page .inner-wrapper {
    min-height: 80Vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.service-page .inner-content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.service-page .inner-content .container {
    height: 100%;
}
.service-page .inner-content .container .content-container {
    min-height: 50Vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.service-page .inner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #fff;
}
.service-page .inner-content .price {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: var(--main-color);
    margin-right: auto;
}
.service-page .inner-content svg.inner-scroll-icon {
    position: absolute;
    bottom: 20px;
}
.text {
    padding: 30px 0;
}
.text .container {
    position: relative;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}
.text .container::before {
    position: absolute;
    content: '';
    top: -2px;
    left: -2px;
    width: 150px;
    height: 125px;
    background-color: var(--main-color);
    display: block;
    z-index: -1;
}
.text .container::after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -2px;
    width: 150px;
    height: 125px;
    background-color: var(--main-color);
    display: block;
    z-index: -1;
}
.text p {
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
}
.text ul {
    list-style: none;
    padding: 0px 0 0 15px;
    margin: 0 0 25px 0;
}
.text ol {
    padding: 0px 0 0 25px;
    margin: 0 0 25px 0;
}
.text ul li, .text ol li {
    position: relative;
    font-size: 24px;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.6;
}
.text p, .text ul li, .text ol li {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 1.5em;
    line-height: 1.6;
}
.text ul li::after {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--main-color);
    display: block;
    top: 12px;
    left: -15px;
}
.text ul li{
	list-style: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='9' width='9'> <circle cx='4.5' cy='4.5' r='4.5' fill='%232DBBB5'/></svg> ");
}
.service-page .materials {
    padding: 30px 0;
}
.service-page .materials .material-item {
    padding: 0 10px 50px 10px;
}
.service-page .materials .material-item .img-wrapper {
    border: 1px solid var(--main-color);
    position: relative;
    height: 280px;
}
.service-page .materials .material-item .img-wrapper img {
    position: absolute;
    width: calc(100% - 30px);
    height: 234px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    top: calc(50% - 117px);
    right: -1px;
}
.service-page .materials .material-item .name {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding: 10px;
}
@media screen and (max-width: 767px) {
    .service-page #header .header-wrapper {
        padding-bottom: 0;
    }
    .service-page .inner-wrapper {
        height: 300px;
        min-height: initial;
    }
    .service-page .inner-content .container .content-container {
        min-height: initial;
    }
    .service-page .inner-content h1 {
        font-size: 18px;
        line-height: 22px;
    }
    .service-page .inner-content .price {
        font-size: 18px;
        line-height: 22px;
        padding: 7px 10px;
    }
    .service-page .breadcrumbs-wrapper {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
    .service-page .breadcrumbs-wrapper p {
        margin-bottom: 10px;
        line-height: 1;
    }
    .text {
        padding: 0;
    }
    .text .container::before {
        display: none;
    }
    .text .container::after {
        display: none;
    }
    .text p {
        font-size: 12px;
    }
    .text ul li {
        font-weight: 300;
        font-size: 12px;
        margin-bottom: 10px;
    }
    .text ul li::after {
        top: 5px;
    }
    .service-page .materials .material-item {
        padding-bottom: 20px;
    }
    .service-page .materials .material-item-wrapper:nth-child(2n) .material-item .img-wrapper img {
        right: initial;
        left: -1px;
    }
}
/* Portfolio  */
.portfolio-item {
    margin-bottom: 40px;
}
.portfolio-item .title {
    font-size: 24px;
    text-decoration: none;
}
.portfolio-item .description {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    padding: 10px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    background-color: var(--auxiliary-color-three);
}
.portfolio-item .image-wrapper {
    position: relative;
    width: 100%;
    /* height: 390px; */
    overflow: hidden;
}
.portfolio-item .image-wrapper img {
    object-fit: cover;
    display: block;
}
.portfolio-item .image-wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
}
.portfolio-item .image-wrapper .img.before-after-slider-image {
    width: 50%;
}
.portfolio-item .image-wrapper input {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 100%;
    outline: none;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
}
.portfolio-item .image-wrapper input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 390px;
    background: var(--main-color);
    cursor: pointer;
}
.portfolio-item .image-wrapper input::-moz-range-thumb {
    width: 6px;
    height: 390px;
    background: var(--main-color);
    cursor: pointer;
}
.portfolio-item .image-wrapper .before-after-slider-button {
    position: absolute;
    content: '';
    width: 24px;
    height: 150px;
    border-radius: 12px;
    pointer-events: none;
    top: calc(50% - 75px);
    left: calc(50% - 14px);
    background-color: var(--main-color);
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}   
.portfolio-item .image-wrapper .before-after-slider-button svg.left {
    -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
            transform: translateX(-30px);
}
.portfolio-item .image-wrapper .before-after-slider-button svg.right {
    -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
            transform: translateX(30px);
}
.portfolio-item .image-wrapper .top-text {
    text-transform: uppercase;
    z-index: 2;
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    /* padding: 0 10px; */
    background-color: rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.portfolio-item .image-wrapper .top-text.before {
    left: 0;
}
.portfolio-item .image-wrapper .top-text.after {
    right: 0;
    text-align: right;
    justify-content: flex-end;
}
.portfolio-item .image-wrapper .top-text .before-text, .portfolio-item .image-wrapper .top-text .after-text {
    padding: 0 10px;
}
.pagination-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 30px;
    padding-bottom: 30px;
}
.pagination-wrapper a {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px;
    text-decoration: none;
    padding: 5px;
}
.pagination-wrapper a:hover svg path {
    fill: var(--main-color);
}
.pagination-wrapper .current {
    color: var(--auxiliary-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px;
    padding: 5px;
    position: relative;
}
.pagination-wrapper .current::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: -8px;
    width: 35px;
    height: 2px;
    background-color: var(--auxiliary-color);
}
.pagination-wrapper .page-numbers {
    position: relative;
}
.pagination-wrapper a.page-numbers:not(.prev):not(.next):hover::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: -8px;
    width: 35px;
    height: 2px;
    background-color: var(--main-color);
}
/* Newsletter  */
.newsletter-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.newsletter-wrapper::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.newsletter-wrapper::after {
    position: absolute;
    content: '';
    top: -2px;
    right: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.newsletter-wrapper .title {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
}
.newsletter-wrapper form {
    max-width: 100%;
    padding-top: 30px;
}
.newsletter-wrapper form .form-text {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 56px;
}
.newsletter-wrapper form .input-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.newsletter-wrapper form .input-col .text-wrapper input {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 50px;
    margin-bottom: 0;
    border: none;
    background-color: var(--auxiliary-color-three);
    padding: 4px 20px;
    height: 56px;

}
.newsletter-wrapper form .input-col .submit-wrapper {
    padding: 0;
}
.newsletter-wrapper form .input-col .submit-wrapper input {
    border-radius: 0;
    height: 56px;
}
@media screen and (max-width: 767px) {
    .newsletter-wrapper {
        padding: 20px 0;
        border: none;
    }
    .newsletter-wrapper::before, .newsletter-wrapper::after {
        display: none;
    }
    .newsletter-wrapper .title {
        font-size: 22px;
        line-height: 27px;
    }
    .newsletter-wrapper form .form-text {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 15px;
    }
}
/* Specials page  */
.special-page .inner-wrapper {
    min-height: 80Vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.special-page .inner-content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.special-page .inner-content .container {
    height: 100%;
}
.special-page .inner-content .container .content-container {
    min-height: 50Vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.special-page .inner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #fff;
}
.special-page .inner-content .price-wrapper {
    margin-right: auto;
}
.special-page .inner-content .price.full {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    color: var(--auxiliary-color);
    margin-bottom: 15px;
}
.special-page .inner-content .price.special {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: var(--main-color);
}
.special-page .inner-content svg.inner-scroll-icon {
    position: absolute;
    bottom: 20px;
}
.special-page .title-block {
    padding-top: 70px;
}
.special-page .title-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.special-page .title-wrapper::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.special-page .title-wrapper::after {
    position: absolute;
    content: '';
    top: -2px;
    right: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.special-page .title-wrapper .title {
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 51px;
    margin-bottom: 30px;
}
.special-page .title-wrapper .short-description {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
}
.special-page .title-wrapper .price-special {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
}
.special-page .title-wrapper .price-list-wrapper {
    padding: 25px 0;
    border-top: 1px solid var(--main-color);
    margin-top: 20px;
    text-align: center;
}
.special-page .title-wrapper .price-list-wrapper a {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    text-decoration: underline;
    -webkit-text-decoration-style: dashed;
            text-decoration-style: dashed;
    color: var(--main-color);
}
.special-page .container .text {
    position: relative;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .special-page #header .header-wrapper {
        padding-bottom: 0;
    }
    .special-page .inner-wrapper {
        height: 300px;
    }
    .special-page .inner-content .container .content-container {
        min-height: initial;
    }
    .special-page .inner-content h1 {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
    .special-page .inner-content .price.full {
        font-size: 14px;
        line-height: 17px;
    }
    .special-page .inner-content .price.special {
        font-size: 18px;
        line-height: 22px;
        padding: 7px 10px;
    }
    .special-page .breadcrumbs-wrapper {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
    .special-page .breadcrumbs-wrapper p {
        margin-bottom: 10px;
        line-height: 1;
    }
    .special-page .title-wrapper {
        border: none;
        padding: 20px 0;
        margin-bottom: 0;
    }
    .special-page .title-wrapper::before, .special-page .title-wrapper::after {
        display: none;
    }
    .special-page .title-wrapper .title {
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
    }
    .special-page .title-wrapper .short-description {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 15px;
    }
    .special-page .title-wrapper .price-list-wrapper a {
        font-size: 12px;
        font-weight: 600;
        background: #2DBBB5;
        -webkit-box-shadow: 0px 10px 30px rgb(45 187 181 / 20%);
                box-shadow: 0px 10px 30px rgb(45 187 181 / 20%);
        border-radius: 5px;
        text-decoration: none;
        color: #fff;
        padding: 15px 30px;
    }
    .special-page .container .text {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
/* About us  */
.about-us-page .inner-wrapper {
    min-height: 80Vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.about-us-page .inner-content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.about-us-page .inner-content .container {
    height: 100%;
}
.about-us-page .inner-content .container .content-container {
    min-height: 50Vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    padding-bottom: 150px;
}
.about-us-page .inner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 64px;
    line-height: 1.6;
    color: var(--main-color);
    margin-bottom: 30px;
}
.about-us-page .inner-content .bottom-title-text {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}
.about-us-page .inner-content svg {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
}
.history {
    padding: 80px 0;
}
.history .img-col .img-wrapper {
    position: relative;
}
.history .img-col .img-wrapper::before {
    position: absolute;
    content: '';
    bottom: -5px;
    left: -5px;
    width: 80%;
    height: 90%;
    opacity: 0.1;
    border: 1px solid #000;
    z-index: -1;
}
.history .img-col .img-wrapper::after {
    position: absolute;
    content: '';
    bottom: -10px;
    left: -10px;
    width: 150px;
    height: 150px;
    background-color: var(--auxiliary-color-three);
    z-index: -1;
}
.history .text {
    padding: 0;
}
.history .text h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
}
.history .text p {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
}
.text-slogan .slogan-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #fff;
    padding: 50px 0;
    margin-bottom: 20px;
}
.text-slogan .slogan-wrapper::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.text-slogan .slogan-wrapper::after {
    position: absolute;
    content: '';
    top: -2px;
    right: -2px;
    height: 75px;
    width: 155px;
    background-color: var(--main-color);
    z-index: -1;
}
.text-slogan .slogan-wrapper .slogan-content {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}
.about-us-page .services-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
    background-color: #fff;
}
.about-us-page .services-block::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    height: 40px;
    width: 40px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-right: 60px solid #dedede;
}
.about-us-page .services-block::after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -2px;
    height: 40px;
    width: 40px;
    background-color: var(--main-color);
    z-index: -1;
    border-top: 30px solid #dedede;
    border-left: 60px solid #dedede;
}
.about-us-page .services-block .readmore-wrapper {
    width: 100%;
    text-align: center;
}
.about-us-page .services-block .readmore-wrapper a {
    color: #fff;
}
.about-us-page .bottom-text-wrapper {
    padding: 20px 0;
    text-align: right;
    position: relative;
}
.about-us-page .bottom-text-wrapper .bottom-text {
    background-color: #fff;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--font-second);
    color: var(--main-color);
    display: inline-block;
}
.about-us-page .bottom-text-wrapper::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.1;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .about-us-page #header .header-wrapper {
        padding-bottom: 0;
    }
    .about-us-page .inner-content .container .content-container {
        padding-bottom: 0;
        min-height: initial;
    }
    .about-us-page .inner-wrapper {
        height: 300px;
        min-height: initial;
    }
    .about-us-page .inner-content h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }
    .about-us-page .inner-content .bottom-title-text {
        font-size: 14px;
    }
    .about-us-page .breadcrumbs-wrapper {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
    .about-us-page .breadcrumbs-wrapper p {
        margin-bottom: 10px;
        line-height: 1;
    }
    .text-slogan .slogan-wrapper {
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.93)), to(rgba(255, 255, 255, 0.93))), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('/wp-content/themes/royal-dental-theme/assets/images/favicon_512.png'), #FFF;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .text-slogan .slogan-wrapper .slogan-content {
        font-size: 12px;
    }
}
/* Post  */
.post-page .inner-wrapper {
    min-height: 80Vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.post-page .inner-content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.post-page .inner-content .container {
    height: 100%;
}
.post-page .inner-content .container .content-container {
    min-height: 50Vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-bottom: 150px;
}
.post-page .inner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}
.post-page .inner-content svg {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .post-page #header .header-wrapper {
        padding-bottom: 0;
    }
    .post-page .inner-wrapper {
        height: 300px;
        min-height: initial;
    }
    .post-page .inner-content .container .content-container {
        padding-bottom: 0;
        min-height: 50Vh;
    }
    .post-page .inner-content h1 {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
    .post-page .breadcrumbs-wrapper {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
}
/* Reviews page */
.reviews-wrapper.reviews-page::after {
    display: none;
}
.reviews-wrapper.reviews-page .review-item .img-col .play-button {
    bottom: initial;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
}
.reviews-wrapper.reviews-page .review-item .img-col .play-button:hover {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
}
.reviews-wrapper.reviews-page .review-item .text-col .rating svg {
    height: 30px;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper {
    padding-top: 30px;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item {
    background-color: #fff;
    -webkit-box-shadow: 0px -25px 50px rgb(0 0 0 / 5%), 0px 25px 50px rgb(0 0 0 / 5%);
            box-shadow: 0px -25px 50px rgb(0 0 0 / 5%), 0px 25px 50px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
    padding: 20px 30px;
    overflow: hidden;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info .name {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;

}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info .date-review {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    margin-left: 5px;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info .review-rating{
    margin-left: 5px;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-info .review-rating i {
    color: #DAA520;
}
.footer-rating i{
    color: #DAA520;
    vertical-align: 0;
}
.footer-rating{
    position: relative;
    margin-right: 5px;

}
.footer-rating-wrapper{
    color: #9aa0ad;
    font-size: 15px;
}
.footer-rating .full_rating{
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
}
.footer-rating-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    font-family: 'montserrat', sans-serif;
    color: var(--main-color-text);
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

@media only screen and (max-width: 576px){
    .footer-rating-wrapper {
        justify-content: center;
    }
}

.divider {
    width: 100%;
    height: 2px;
    background: -o-linear-gradient(
45deg
, rgba(45,187,181,0.1) 0%, rgba(45,187,181,0.8) 50%, rgba(45,187,181,0.1) 100%);
    background: linear-gradient(
45deg
, rgba(45,187,181,0.1) 0%, rgba(45,187,181,0.8) 50%, rgba(45,187,181,0.1) 100%);
    margin-top: 10px;
    margin-bottom: 20px;
}
.reviews-wrapper.reviews-page .text-reviews-wrapper .text-review-item .review-item-text {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
.reviews-wrapper.reviews-page .review-form-wrapper {
    padding: 30px 0;
}
.reviews-wrapper.reviews-page .review-form-wrapper .title {
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.tooltip {
    position: absolute;
    top: 0;
    right: 30px;
    width: 17px;
    height: 17px;
    background-color: var(--auxiliary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    cursor: pointer;
}
.tooltip-message {
    position: absolute;
    bottom: 12px;
    left: -42px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}
.tooltip:hover .tooltip-message {
    opacity: 1;
    height: 80px;
}
.tooltip-message .text {
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
            box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
    border-radius: 10px;
    padding: 15px 10px;
    width: 100px;
    height: 65px;
    color: #000;
    z-index: 1;
    position: relative;
}
.tooltip-message .text::after {
    content: '';
    position: absolute;
    width: 15px; 
    height: 15px;
    background-color: #fff;
    -webkit-box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
            box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: calc(100% - 10px);
    z-index: 2;
    left: calc(50% - 7px);
    display: block;
}
.reviews-wrapper .submit-wrapper {
    text-align: left;
}
.mobile-review-modal-wrapper {
    padding-bottom: 30px;
    text-align: center;
}
/* FAQ  */
.faq-page .ask-question-wrapper {
    text-align: center;
}
.faq-page .ask-question-wrapper .ask-question {
    padding-right: 70px;
}
.faq-page .ask-question-wrapper svg {
    height: 24px;
    transform: rotate(180deg) translateY(50%);
    position: absolute;
    right: 50px;
    top: 50%;
}
.faq-page .ask-question-wrapper svg path {
    fill: #fff;
}
.faq-page .form-question-section .form-col .form-wrapper {
    background-color: var(--auxiliary-color-four);
    padding: 50px 30px 0px 30px;
}
.faq-page .form-question-section .form-col form .title {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 35px;
}
.faq-page .form-question-section .form-col form input[type="text"], .faq-page .form-question-section .form-col form input[type="tel"], .faq-page .form-question-section .form-col form textarea {
    background-color: var(--auxiliary-color-four);
}
.faq-page .form-question-section .form-col form .submit-wrapper {
    padding-bottom: 0;
    text-align: left;
}
.faq-page .form-question-section .img-col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.faq-page .questions-section {
    padding: 30px 0;
}
.faq-page .faq-wrapper .question-item {
    background-color: var(--auxiliary-color-four);
    padding: 30px 20px;
    margin-bottom: 15px;
}
.faq-page .faq-wrapper .question-item .question {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 15px;
}
.faq-page .faq-wrapper .question-item .name {
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: var(--auxiliary-color);
}
.faq-page .faq-wrapper .question-item .answer {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-top: 30px;
    margin-bottom: 10px;
}
.faq-page .faq-wrapper .question-item .date {
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    color: var(--auxiliary-color);
}
.faq-page .faq-wrapper .question-item .info {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .faq-page .ask-question-wrapper .ask-question {
        padding-right: 50px;
    }
    .faq-page .ask-question-wrapper svg {
        right: 30px;
    }
    .faq-page .form-question-section .form-col .form-wrapper {
        background-color: #fff;
        padding: 0;
    }
    .faq-page .form-question-section .form-col form input[type="text"], .faq-page .form-question-section .form-col form input[type="tel"], .faq-page .form-question-section .form-col form textarea {
        background-color: #fff;
    }
}
/* Contacts  */
.contacts-page {
    padding: 30px 0;
}
.contacts-page .contacts-wrapper .icon-col {
    text-align: left;
    padding-top: 5px;
    width: 10%;
}
.contacts-page .contacts-wrapper .email svg {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px);
}
.contacts-page .contacts-wrapper .info-col {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    min-height: 70px;
    width: 90%;
}
.contacts-page .contacts-wrapper .info-col a {
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}
.contacts-page .contacts-wrapper .info-col a:hover {
    text-decoration: underline;
}
.contacts-page .socials-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.contacts-page .socials-wrapper a {
    margin-right: 50px;
}
@media screen and (max-width: 767px) {
    .contacts-page .contacts-wrapper .info-col {
        font-size: 18px;
    }
    .contacts-page .contacts-wrapper .icon-col {
        width: 13%;
    }
    .contacts-page .contacts-wrapper .info-col {
        width: 87%;
    }
    .contacts-page .contacts-wrapper .email .info-col {
        min-height: auto;
    }
    .contacts-page .socials-wrapper {
        padding: 30px 0;
    }
}
/* Staff page  */
.staff-page .staff-wrapper .staff-item {
    padding: 0 15px 15px 15px;
    text-align: center;
}
.staff-page .staff-wrapper .staff-item img {
    border-radius: 30px;
}
.staff-page .staff-wrapper .staff-item .staff-img {
    max-height: 400px;
}
.staff-page .staff-wrapper .staff-item .staff-info {
    text-align: center;
}
.staff-page .staff-wrapper .staff-item .staff-info .name {
    position: relative;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    padding: 10px 0 15px 0;
    display: inline-block;
}
.staff-page .staff-wrapper .staff-item .staff-info .name img {
    position: absolute;
    top: 0;
    left: -35px;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.staff-page .staff-wrapper .staff-item .staff-info .description {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
}
.staff-page .staff-wrapper .staff-mobile-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-bottom: 20px;
}
.staff-page .staff-wrapper .staff-mobile-item .col-img {
    width: 30%;
}
.staff-page .staff-wrapper .staff-mobile-item .col-img img {
    border-radius: 10px;
}
.staff-page .staff-wrapper .staff-mobile-item .col-info {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
}
.staff-page .staff-wrapper .staff-mobile-item .col-info .name {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 5px;
}
.staff-page .staff-wrapper .staff-mobile-item .col-info .description {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
}
/* Staff single page  */
.staff-single-page .inner-wrapper {
    min-height: 80Vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.staff-single-page .inner-content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.staff-single-page .inner-content .container {
    height: 100%;
}
.staff-single-page .inner-content .container .content-container {
    min-height: 50Vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    padding-bottom: 150px;
}
.staff-single-page .inner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #fff;
}
.staff-single-page .inner-content .profil, .staff-single-page .inner-content .specialization {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
}
.staff-single-page .inner-content .profil span, .staff-single-page .inner-content .specialization span {
    color: var(--main-color);
}
.staff-single-page .inner-content svg.inner-scroll-icon {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
}
.staff-single-page .text {
    padding: 40px 0;
    min-height: 570px;
}
@media screen and (max-width: 767px) {
    .staff-single-page .inner-content .container .content-container {
        padding-bottom: 0;
        min-height: initial;
    }
    .staff-single-page .inner-wrapper {
        height: 300px;
        min-height: initial;
    }
    .staff-single-page .inner-content h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }
    .staff-single-page .breadcrumbs-wrapper {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
    .staff-single-page .breadcrumbs-wrapper p {
        margin-bottom: 10px;
        line-height: 1;
    }
    .staff-single-page .inner-content .profil, .staff-single-page .inner-content .specialization {
        font-size: 14px;
    }
}
/* to top  */
.to-top-button-wrapper {
    position: fixed;
    bottom: 150px;
    right: 25px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}
.to-top-button-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top-button-wrapper button {
    cursor: pointer;
}
.to-top-button-wrapper button svg circle {
    fill: #fff;
}
/* Price page  */
.price-page .prices-wrapper .category {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.6;
    color: var(--main-color);
    margin-bottom: 15px;
}
.price-page .prices-wrapper .price-category-block {
    margin-top: 35px;
}
.price-page .prices-wrapper .price-row {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.price-page .prices-wrapper .price-row .price {
    color: var(--main-color);
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .price-page .prices-wrapper .category {
        font-size: 20px;
    }
    .price-page .prices-wrapper .price-row {
        font-size: 16px;
    }
}
/* Gallery  */
.gallery-wrapper .gallery-img {
    margin-bottom: 20px;
}
.gallery-wrapper .gallery-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.rating-handler label {
    color: #6c757d;
    font-weight: 400;
}
.rating-handler .stars-handler{
    display: flex;
}
.rating-handler .stars-handler i {
    color: #DAA520;
    cursor: pointer;
}
.staff-single-page .text .img{
	width: 300px;
	height: 500px;
    float: left;
	margin: 0 30px 20px 0;
}
.staff-single-page .text h2{
	display:inline;
    margin-bottom: 20px;
}

.alignleft {
    float: left;
    margin: 0 10px 10px 0;
}
.alignright {
    float: right;
    margin: 0 0 10px 10px;
}

.text ol.inside {
    padding: 0;
    list-style-position: inside;
}

.page-id-1418 .marquiz__container iframe {
height: 700px!important;
}
.page-id-1418 .row .col-12 {
  display: none;
}
.page-id-1418 .main.sticky {
    padding-top: 50px!important;
}
.page-id-1418 #header,
.page-id-1418 .breadcrumbs-wrapper,
.page-id-1418 .footer {
  display: none;
}
#footer-nev .soc-seti .elementor-element {
  width: 25%;
  float: left;
}
#header-mob .bloc-logo {
  width: calc(100% - 100px);
}
#header-mob .bloc-menu {
  max-width: 50px;
  width: 50px;
  margin: auto;
}
#header-mob .bloc-phone {
  max-width: 50px;
  width: 50px;
  margin: auto;
}
#header-mob .elementor-nav-menu--dropdown{
  position:absolute;
  margin-top: 35px;
  right: 10px;
}
#section-1 {
  margin-top:-125px;
}
section#header {
  z-index: 1;
}
section#header.elementor-section {
  min-height: 76px;
  display: block;
}
section#header + #section-1 {
  margin-top:-200px;
}
section#header.breadcrumbs-wrapper .rank-math-breadcrumb a {
  color: #fff;
  transition: .4s;
}
section#header.breadcrumbs-wrapper .rank-math-breadcrumb a:hover {
  color: #2DBBB5;
}
#header-nev2 .bloc-menu {
      width: calc(100% - 440px);
}
#header-nev2 .bloc-menu li {
      margin-right: 40px;
}
#header-nev2  .bloc-logo {
  max-width: 145px;
  width: 145px;
  margin-right: 40px;
}
#header-nev2  .bloc-button {
      max-width: 265px;
  width: 265px;
}
#header-nev  .bloc-phone {
      max-width: 190px;
  width: 190px;
}
#header-nev  .bloc-map {
      max-width: 330px;
  width: 330px;
}
#header-nev .bloc-cloc {
      width: calc(100% - 710px);
}
#header-nev  .elementor-image-box-img {
      width: 18px;
}
#header-nev .elementor-image-box-content {
      width: calc(100% - 25px);
}
.elementor-field-group-field_3 label {
  font-size: 12px!important;
}

#popup-1 input[type="number"] {
  margin-bottom: 0;
}
#popup-1 input[type="text"] {
  margin-bottom: 0;
}
#otziv .section-title {
    text-align: center;
    font-size: 30px;
    line-height: 44px;
}
.page-id-1078 .breadcrumbs-wrapper {
  display: none;
}
#price .uael-price-list-discount-price {
      color: #ff0000;
}
#price .has-discount {
      color: #8E8E8E;
}
.error-404{
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.error-404 b{
  font-size: 100px;
}
.error-404 .custom-logo{
  margin:0 40px;
}
.error-404 .page-content{
    display: flex;
	align-items: center;
	justify-content: center;
}
.elementor-form .elementor-button.elementor-size-sm {
    min-height: auto!important;
}
@media (max-width: 767px) {
  .elementor-nav-menu--dropdown.elementor-nav-menu__container{
    margin-top: 30px;
  }
  .error-404 b{
    font-size: 50px;
  }
  
  .page-id-1418 .main.sticky {
    padding-top: 0px!important;
}
  .page-id-1418 .elementor-element-populated {
    padding: 0!important;
  }

  .marquiz__container_has_button .marquiz__inline-frame {
    display: block!important;
}
 .marquiz__container_has_button .marquiz__button {
    display: none!important;
}
  
  #price .dop-data {
font-size: 8px;
font-style: normal;
font-weight: 400;
text-align: left;

  }
    #ogliad .elementor-image-box-content {
      width: 94%;
      float: left;
  }
    #ogliad .elementor-image-box-img {
      float: left;
  }
  #section-1 .elementor-image-box-content {
      width: 94%;
      float: left;
  }
    #section-1 .elementor-image-box-img {
      float: left;
  }
     #section-2 .elementor-col-33 {
      float: left;
        width: 33%;
  }
  #metodika .elementor-image-box-img {
    float: left;
  }
  #metodika .elementor-image-box-content {
    float: left;
  }
  #metodika .elementor-image-box-img {
  width: 35px;
  margin-right: 5px!important;
}
#metodika .elementor-image-box-content {
      width: calc(100% - 40px);
}
  #pochemu .elementor-image-box-img {
    float: left;
    width: 85px;
  }
   #pochemu .elementor-image-box-content {
    float: left;
    width: calc(100% - 85px);
    margin-top: 20px;
  }
  #price .uael-price-list-title {
    width: 75%;
  }
  #price .uael-pl-price-inner {
    display: block;
    margin: 5px;
  }
    #price .uael-pl-price-outer {
    display: none;
  }
  #kak-naiti .elementor-icon-box-icon {
    width: 8%;
    float: left;
  }
    #kak-naiti .elementor-icon-box-content {
    width: 91%;
    float: left;
  }
  #kak-naiti #soc-seti .elementor-column {
    width: 16%;
    float: left;
  }
  
    #rossrochca  .elementor-image-box-img {
    float: left;
      width: 7px;
      margin-right: 5px!important;
  }
   #rossrochca .elementor-image-box-content {
    float: left;
    width: calc(100% - 12px);
  }
  #bloc-diznat {
        margin: 30px 10px 30px 10px;
  }
  #vigoda .elementor-image-box-img {
    float: left;
    width: 35px;
    margin-right: 10px!important;
    margin-bottom: 0px;
	}
  #vigoda .elementor-image-box-content {
    float: left;
    width: calc(100% - 45px);
}
  #fahivci .bloc-1 {
   width: 145px;
}
    #fahivci .bloc-2 {
   width: calc(100% - 145px);
      padding-left: 10px;
      margin: auto;
}
  #bloc-2 .elementor-image-box-img{
    width: 20px;
    float: left;
  }
    #bloc-2 .elementor-image-box-content {
    width: calc(100% - 20px);
      float: left;
  }
  #carta .elementor-image-box-img {
    width: 12px;
    float: left;
    margin-right: 10px!important;
  }
      #carta .elementor-image-box-content {
    width: calc(100% - 22px);
      float: left;
  }
}
@media (max-width: 1150px) {
  #header-nev2 .bloc-menu li {
    margin-right: 15px;
}
    #header-nev2 .bloc-menu li a {
    font-size: 15px;
}
  #header-nev2  .bloc-button .elementor-button{
    font-size: 15px;
  }
}

#header .top-header .top-header-col.phone-1,
#header .top-header .top-header-col.phone-2 {
    flex-direction: column; 
    align-items: center;
}
#header .top-header .top-header-col.phone-1 > span,
#header .top-header .top-header-col.phone-2 > span {
    display: flex;
}
#header .top-header .top-header-col.phone-1 {
    margin-left: auto; 
    margin-right: 20px;
}
.mobile-menu-wrapper .phone-wrapper .custom-button {
    margin-bottom: 5px;
}
.mobile-menu-wrapper .phone-wrapper .phone-1,
.mobile-menu-wrapper .phone-wrapper .phone-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-menu-wrapper .phone-wrapper span {
    padding-bottom: 5px;
}

.mobile-phones {
  position: relative;
  margin-left: auto;
}
.mobile-phones .phone-toggle {
    display: none;
}
@media (max-width: 1150px) {
    .mobile-phones .phone-toggle  {
        display: block;
    }
}
.mobile-phones .phone-list {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  list-style: none;
  margin: 0;
  padding: 5px 0;
  z-index: 1000;
  min-width: 200px;
}
.mobile-phones .phone-list li {
  margin: 0;
}
.mobile-phones .phone-list li a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
}
.mobile-phones .phone-list li a:hover {
  background: #f2f2f2;
}
.mobile-phones.open .phone-list {
  display: block;
}
.mobile-phones .phone-list .phone-1,
.mobile-phones .phone-list .phone-2 {
    align-items: center;
    display: flex;
    flex-direction: column;
}