:root{
    --theme-bg : #8b24e8;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    word-wrap: break-word;
}

body {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #212121;
    line-height: normal;
    letter-spacing: normal;
}

/*loader thx:https://codepen.io/aurer*/
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #101014;
    background: linear-gradient(to left, #19191f, #101014);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader svg path,
.loader svg rect {
    fill: #ed1b28;
}

/*gallery*/
.gallery-wrapper {
    position: relative;
    z-index: 1;
}
.gallery-wrapper .content {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 70vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #101014;
    background: linear-gradient(to left, #19191f, #101014);
}
.gallery-wrapper .content .gallery.full {
    position: relative;
    display: flex;
    align-items: center;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
    display: flex;
    height: 70vh;
    align-items: center;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100%;
    width: 100% !important;
    opacity: 1;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active:hover .zoom {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 100%;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: 50px 50px 30px 50px;
    background: black;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show {
    opacity: 1;
    visibility: visible;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show .text-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all .4s linear;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
    font-size: 2.2em;
    font-weight: 700;
    color: #fff;
}
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
    font-size: 1.16em;
    color: #fff;
    line-height: 1.7;
    font-weight: 200;
}
.gallery-wrapper .content .gallery.full .swiper-next-button,
.gallery-wrapper .content .gallery.full .swiper-prev-button {
    position: absolute;
    z-index: 99;
    outline: none;
    transition: all .2s linear;
    width: 20%;
    height: 50vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    color: #fff;
}
.gallery-wrapper .content .gallery.full .swiper-next-button.swiper-button-disabled,
.gallery-wrapper .content .gallery.full .swiper-prev-button.swiper-button-disabled {
    opacity: .2;
}
.gallery-wrapper .content .gallery.full .swiper-next-button i,
.gallery-wrapper .content .gallery.full .swiper-prev-button i {
    font-size: 68px;
}
.gallery-wrapper .content .gallery.full .swiper-next-button {
    right: 0;
    padding-left: 5vw;
    justify-content: flex-start;
}
.gallery-wrapper .content .gallery.full .swiper-prev-button {
    left: 0;
    padding-right: 5vw;
}
.gallery-wrapper .content .gallery.thumb {
    position: relative;
    width: auto;
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-left: 12px;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
    position: relative;
    width: 10vw;
    height: 10vh;
    box-sizing: border-box;
    cursor: pointer;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image {
    box-shadow: inset 0px 0px 0px 2px #ed1b28;
    padding: 2px;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image .overlay {
    opacity: 1;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image .overlay {
    position: absolute;
    left: 2px;
    top: 2px;
    background-color: rgba(43, 44, 54, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    opacity: 0;
    transition: all 0.2s linear;
}
.gallery-wrapper .content .gallery.thumb .swiper-next-button {
    right: -15px;
}
.gallery-wrapper .content .gallery.thumb .swiper-prev-button {
    left: -5px;
}
.gallery-wrapper .content .gallery.thumb .swiper-next-button,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button {
    position: absolute;
    z-index: 99;
    outline: none;
    transition: all .2s linear;
    width: 32px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ed1b28;
    cursor: pointer;
}
.gallery-wrapper .content .gallery.thumb .swiper-next-button:hover,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button:hover {
    background-color: #c5101b;
}
.gallery-wrapper .content .gallery.thumb .swiper-next-button.swiper-button-disabled,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button.swiper-button-disabled {
    opacity: .2;
}

/*signature*/
.signature {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    padding: 20px;
}
.signature h3 {
    font-weight: 600;
    font-size: .926em;
    color: #ed1b28;
    display: flex;
    margin-bottom: 5px;
}
.signature a,
.signature em {
    text-decoration: none;
    color: #777;
    margin-right: 5px;
    font-size: .88em;
    transition: all .2s linear;
}
.signature a:hover,
.signature em:hover {
    color: #aaa;
}

/*Mobile*/
@media only screen and (max-width: 1024px) {
    .gallery-wrapper .content {
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
        height: 50vh;
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
        /* height: 50vh; */
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
        height: 100%;
        width: 100% !important;
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
        padding: 20px;
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
        transform: translateY(0);
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
        font-size: 20px;
    }
    .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
        font-size: 13px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        -webkit-box-orient: vertical;
    }
    .gallery-wrapper .content .gallery.full .swiper-next-button,
    .gallery-wrapper .content .gallery.full .swiper-prev-button {
        width: 10%;
        height: 50vh;
        align-items: center;
        justify-content: center;
    }
    .gallery-wrapper .content .gallery.full .swiper-next-button i,
    .gallery-wrapper .content .gallery.full .swiper-prev-button i {
        font-size: 45px;
    }
    .gallery-wrapper .content .gallery.full .swiper-next-button {
        padding-left: 0;
    }
    .gallery-wrapper .content .gallery.full .swiper-prev-button {
        padding-right: 0;
    }
    .gallery-wrapper .content .gallery.thumb {
        padding: 0 30px;
        max-width: 100%;
    }
    .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
        width: auto;
        height: 80px;
    }
    .gallery-wrapper .content .gallery.thumb .swiper-next-button {
        right: 10px;
    }
    .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
        left: 10px;
    }

    .signature {
        display: none;
    }
}


.theme-bg {
    background: var(--theme-bg);
}


.appointment-form {
    position: absolute;
    top: calc(50% - 222.5px);
    right: 400px;
    z-index: 9;
    background: #fff;
    width: 400px;
}

.header-slogan {
    color: #fff;
    font-weight: 200;
}

#about .section-title,#info .section-title {
    background: #4A4A4A;
}

.about-column {
    background: #E6E6E6;
}

.column-left .about-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--theme-bg);
    color: #fff;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 300;
}

.services-swiper-info .title {
    background: #e6e6e6;
    /* color: #fff; */
    padding: 5px 10px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    /* min-height: 65px; */
    vertical-align: middle;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

.services-swiper-info .link {
    vertical-align: bottom;
    background: var(--theme-bg);
    display: inline-block;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    font-weight: 200;
    font-size: 13px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: end;
    align-items: end;
    position: absolute;
    bottom: 0;
}

.services-swiper .swiper-pagination {
    bottom: 0px!important;
}

.services-swiper .swiper-container {
    padding-bottom: 20px;
}
.services-swiper .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 4px;
    border-radius: 0;
}


.services-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-bg);
}

.services-swiper-info {
    min-height: 100px;
    display: inline-block;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #e6e6e6;
    padding-bottom: 30px;
}

.single-services {
    background: #e6e6e6;
    padding-bottom: 60px;
    position: relative;
}

.single-services-link {
    position: absolute;
    bottom: -60px;
    width: 100%;
    left: 0;
    text-align: center;
    background: var(--theme-bg);
    color: #fff!important;
    font-weight: 300;
    padding: 10px;
}

.news-swiper .swiper-pagination {
    bottom: 0px!important;
}

.news-swiper .swiper-container {
    padding-bottom: 20px;
}
.news-swiper .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 4px;
    border-radius: 0;
}


.news-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-bg);
}

.references-swiper .swiper-pagination {
    bottom: 0px!important;
}

.references-swiper .swiper-container {
    padding-bottom: 20px;
}
.references-swiper .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 4px;
    border-radius: 0;
}


.references-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-bg);
}


.news-swiper-info {
    padding: 5px 10px;
    background: #e6e6e6;
    color: #212121;
}
.news-swiper-info time{
    font-size:12px;
    font-weight: 300;
}

.news-swiper-info .title{
    margin:0
}


.theree-button .column-icon {
    background: var(--theme-bg);
    width: 20%;
    color: #fff;
    text-align: center;
    padding: 3px 0;
    font-size: 35px;
}

.theree-button .column-content {
    width: 80%;
    margin-left: -4px;
    text-align: center;
    background: #EDEAEA;
    color: #212121;
    padding: 12px 10px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.theree-button .column a {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;/* align-items: center; *//* justify-content: center; */width: 100%;min-width: 100%;text-align: center;text-decoration: none;}


#free-appointment {
    background: var(--theme-bg);
}

footer {
    background: #f8f9fa;
    position: relative;
}

.footer-menu {
    padding: 0;
    list-style: none;
}

.footer-menu li a {
    color: #212121;
    transition: all .5s;
    text-decoration: none;
    font-weight: 200;
    font-size: 14px;
}

.footer-menu li:hover a {
    color: var(--theme-bg);
}

.copyright-text {
    font-size: 13px;
    font-weight: 300;
    color: #7d7d7d;
}

.footer-contact .item i {
    color: var(--theme-bg);
    width: 25px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    top: 4px;
    position: relative;
    font-size: 17px;
}

.footer-contact .item span {
    width: calc(100% - 30px);
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
}

.footer-contact .item {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
}

.footer-contact .item:last-child {
    margin-bottom: 0;
}

.btn-theme {
    background: var(--theme-bg);
    color: #fff;
    border-color: var(--theme-bg);
}

.btn-theme:hover {
    color: var(--theme-bg)!important;
    background: #fff;
    border-color: var(--theme-bg);
}

.footer-social {
    padding: 0;
    list-style: none;
    margin: 20px auto 0;
    text-align: center;
}

.footer-social li {
    display: inline-block;
}

.footer-social li a {
    color: #fff;
    background: var(--theme-bg);
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    padding: 5px 0;
    border-radius: 40px;
    border: 1px solid var(--theme-bg);
    transition: all .5s;
}

.footer-social li a:hover {
    background: #fff;
    color: var(--theme-bg);
}

.footer-logo {
}

.navbar-light .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
}

.header-social {
    float: right;
    padding: 0;
    list-style: none;
    margin: 0;
}

.header-social li {
    display: inline-block;
}

.header-social li a {
    width: 31px;
    height: 31px;
    display: inline-block;
    background: #fff;
    margin-left: -5px;
    text-align: center;
    color: var(--theme-bg);
    border: 1px solid #f1f1f1;
    border-top: 0;
    padding: 3px 0;
    transition: all .5s;
}

.header-phone {
    color: #fff;
    font-weight: 200;
    font-size: 14px;
    display: inline-block;
}

.header-social li a:hover {
    background: transparent;
    color: #fff;
    border-color: transparent;
}

.yobiform-wrapper input,.yobiform-wrapper textarea {
    font-size: 15px;
    font-weight: 200;
}
.map iframe{
    width: 100%;
}
.contact-information .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contact-information .media > .icon-styled:first-child {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.icon-styled {
    display: inline-block;
    text-align: center;
}
.response, .color-main, h1.color-main {
    border-color: var(--theme-bg);
    color:  var(--theme-bg);
}
* + .media-body, .media-body + * {
    margin-left: 12px;
}
.icon-styled + .media-body h6 {
    margin-bottom: 0.65em;
    margin-top: 0.4em;
}
.icon-styled + .media-body p {font-weight: 200;}
.page_title h1, .page_title h2 {
    font-size: 40px;
}
.page_title h1, .page_title h2 {
    line-height: 1;
    margin-bottom: 0px;
    padding-bottom: 10px;
    position: relative;
    color: #fff;
    font-weight: 800;
    padding: 10px 0px 20px;
}
.page_title .breadcrumb {
    line-height: 1.6;
}
.breadcrumb {
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    /* font-size: 15px; */
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}
.breadcrumb > li {
    display: inline-block;
    float: none;
    padding: 0;
}
.breadcrumb > li a {
    color:#fff;
    font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: inherit;
    padding: 0 3px;
}
.breadcrumb-item + .breadcrumb-item:before {
    color: #fff;
    content: ">";
}


.page_title {
    background: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* min-height: 300px; */
    position: relative;
    padding: 20px 0 0;
}

.page_title:before {content: '';position: absolute;left: 0;top: 0;width: 100%;height: 100%;background: rgb(0 0 0 / .4);}
.page_title h1:before, .page_title h2:before {
    background-color: #fff;
    height: 1px;
    opacity: 0.4;
    width: 66%;
}
.page_title h1:after, .page_title h1:before, .page_title h2:after, .page_title h2:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: auto;
}
.page_title h1:after, .page_title h2:after {
    background-color: var(--theme-bg);
    bottom: -2px;
    height: 5px;
    width: 70px;
}
.page_title h1:after, .page_title h1:before, .page_title h2:after, .page_title h2:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: auto;
}
.breadcrumb > .active {
    color: #fff;
    font-size: 14px;
}
.box-shadow {
    -webkit-box-shadow: 0 0.75rem 1.25rem 0.0625rem rgba(64,64,64,0.09) !important;
    box-shadow: 0 0.75rem 1.25rem 0.0625rem rgba(64,64,64,0.09) !important;
}
.widget.widget_categories {
    padding: 30px;
    background-color: white;
    border: 2px solid #eef2fb;
    margin-bottom: 40px;
    transition: .4s;
}
.widget.widget_categories .widget-title {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}
.widget.widget_categories .widget-title:before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0px;
    width: 40px;
    height: 2px;
    background: var(--theme-bg);
}
.widget.widget_categories ul {
    border: 0;
    list-style: none;
    margin: 0;
    padding: 0px;
}
.widget.widget_categories ul li:first-child {
    border-top: 0;
    padding-top: 0;
}
.widget.widget_categories ul li {
    border-top: 1px solid #eaedff;
    padding: 15px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212121;
}
.widget.widget_categories ul li a {
    overflow: hidden;
    /* text-align: right; */
    color: #212121;
    text-decoration: none;
}

.widget.widget_categories ul li:hover a ,.widget.widget_categories ul li.active a {
    color: var(--theme-bg);
}
.widget.widget_categories ul li a i {
    margin-right: 10px;
}


a.mobil-call {
    background: #f3f3f3;
    color: #212121;
    text-align: center;
    margin-left: auto;
    /* margin-right: 5px; */
    line-height: normal;
    padding: 7px 0px;
}

button.navbar-toggler {
    border-radius: 0;
    background: #e6e6e6;
    border: 0;
    color: #212121!important;
    padding: 0;
    opacity: 1;
    padding: 10px 0;
}

a.mobil-call span {
    font-size: 14px;
    display: inline-block;
    width: 100%;
}

a.mobil-call i {
    margin: 0;
    line-height: normal;
    font-size: 18px;
}

button.navbar-toggler span {
    display: inline-block;
    width: 100%;
    font-size: 14px;
}

button.navbar-toggler i {
    font-size: 18px;
    color: #212121;
}


.screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: #fff;
}
@media (max-height: 568px) {
    .screen {
        top: 24px;
        bottom: auto;
    }
}
@media (max-width: 400px) {
    .screen {
        top: 0;
        width: 100vw;
        height: 100vh;
    }
}


nav.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #242424;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.menu-container {
    position: relative;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.view-submenu .menu-container {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.mobile-menu ul.menu {
    /* position: absolute; */
    /* top: 60px; */
    padding: 6px;
    width: 100%;
    /* height: 508px; */
    color: #ededed;
    background-color: #fff;
}
.mobile-menu ul li a {
    opacity: 0;
    display: block;
    padding: 10px 12px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: #212121;
    border-radius: 3px;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
    -webkit-transition: opacity 0.15s 0.1s ease-out, -webkit-transform 0.15s 0.1s ease-out;
    transition: opacity 0.15s 0.1s ease-out, -webkit-transform 0.15s 0.1s ease-out;
    transition: opacity 0.15s 0.1s ease-out, transform 0.15s 0.1s ease-out;
    transition: opacity 0.15s 0.1s ease-out, transform 0.15s 0.1s ease-out, -webkit-transform 0.15s 0.1s ease-out;
}
.mobile-menu ul li.has-children span {
    /* position: absolute; */
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* margin: auto; */
    /* padding: 12px 16px; */
    /* text-indent: -9999px; */
    color: #212121;
    font-size: 20px;
    position: relative;
    top: 3px;
    left: 5px;
}
.mobile-menu ul li.has-children span:after {
    /* content: ""; */
    /* position: relative; */
    /* top: 0; */
    /* right: 12px; */
    bottom: 0;
    margin: auto;
    padding: 4px;
    width: 0px;
    height: 0px;
    cursor: pointer;
    font-size: 0;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
}
.mobile-menu ul li.has-children span:hover:after {
    border-color: #bababa;
}

.menu {
    opacity: 0;
    -webkit-transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
    transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
}
.menu.is-visible {
    opacity: 1;
}
.menu.is-visible li a {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.view-submenu .menu {
    background-color: #3e3e3e;
}
.view-submenu .menu > li > a {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
}

.submenu {
    position: absolute;
    top: 0!important;
    left: 100%;
    /* background-color: #313131; */
    width: 100%;
    height: calc(100vh - 60px);
    list-style: none;
    padding: 0;
}
.submenu li {
    margin-left: 60px;
}

.hide-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    cursor: pointer;
    background-color: #313131;
    -webkit-transition: background-color 0.25s ease-out;
    transition: background-color 0.25s ease-out;
}
.hide-submenu:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    padding: 4px;
    width: 6px;
    height: 6px;
    cursor: pointer;
    font-size: 0;
    border-bottom: 2px solid #ededed;
    border-right: 2px solid #ededed;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 0;
    right: -6px;
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
}
.view-submenu .hide-submenu {
    background-color: #3e3e3e;
}
.view-submenu .hide-submenu:before {
    opacity: 1;
    -webkit-transition: opacity 0.15s 0.3s ease-out;
    transition: opacity 0.15s 0.3s ease-out;
}

.toggle {
    /* position: absolute; */
    top: 0;
    /* left: 18px; */
    bottom: 0;
    margin: auto;
    cursor: pointer;
    right: 0;
    margin: 0;
    background: #e6e6e6;
    padding: 7px 0;
    text-align: center;
}
.toggle span {
    position: relative;
    /* align-self: center; */
    font-size: 15px;
    width: 100%;
    height: 2px;
    /* border-radius: 100px; */
    /* -webkit-transition: background-color 0.2s ease-out; */
    /* transition: background-color 0.2s ease-out; */
    display: inline-block;
}
.is-visible .toggle span {
    background-color: transparent;
}
.is-visible .toggle span:before {
    bottom: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.is-visible .toggle span:after {
    top: auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


.toggle div {
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}


.screen.is-visible {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
.submenu li::marker{
    color:#212121;
}


.mobile-header .header-home,.mobile-header .header-dissmis {
    height: 60px;
    display: inline-block;
    width: 100%;
    line-height: 60px;
    text-align: center;
    color: #fff;
    padding: 0 10px;
    font-weight: 200;
}

.mobile-header .header-dissmis {
    background: #464646;
}

.mobile-header .header-home {
    text-align: left;
}

.mobile-header .header-home i {font-size: 20px;position: relative;top: 2px;}

.mobile-social {
    list-style: none;
    color: #212121;
    border-top: 1px solid #bbbbbb;
    display: inline-block;
    border-bottom: 1px solid #bbbbbb;
    padding: 10px 10px;
    margin-left: 10px;
    opacity: 0;
    -webkit-transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
    transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
}

.mobile-social li {
    display: inline-block;
    /* background: #f1f1f1; */
}

.mobile-menu .mobile-social li a {
    color: #212121;
    transform: inherit!important;
    font-size: 17px;
    opacity: 1;
}

.mobile-contact {
    padding: 10px 20px;
    opacity: 0;
    -webkit-transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
    transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
}

.mobile-contact .contact-item i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.mobile-contact .contact-item span {
    width: calc(100% - 35px);
    display: inline-block;
    font-weight: 300;
}

.mobile-contact .contact-item {
    margin-bottom: 10px;
}

.mobile-menu.is-visible .mobile-contact {
    opacity: 1;
}

.mobile-menu.is-visible .mobile-social {
    opacity: 1;
}

.about-text {
    padding-bottom: 45px;
}

.services-swiper-info.picture-service .title {
    font-size: 15px;
    display: block;
}

.footer-toggle {
    position: absolute;
    top: -15px;
    background: #fff;
    width: 120px;
    height: 30px;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    left: calc(50% - 60px);
    border: 1px solid #ddd;
    line-height: 30px;
    z-index: 7;
    transition: all .5s;
}


.footer-toggle.active i {
    transform: rotate(180deg);
}

.footer-toggle i {
    transition: all .5s;
}

.mobile-button .item {
    padding: 10px 10px;
    margin-left: -4px;
    font-weight: 300;
    flex-grow: 1;
    text-align: center;
}

.mobile-button {
    z-index: 8;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
}

.mobile-button .item.whatsapp {
    background: #23d366;
    color: #fff;
}

.mobile-button .item.phone {
    background: #4A90E2;
    color: #fff;
}

.mobile-button .item.maps {
    background: #4A4A4A;
    color: #fff;
}

.mobile-button .item span {
    font-size: 13px;
}

.mobile-button .item i {
    position: relative;
}


.mobile-button .item a {
    color: #fff;
}

.mobile-contact .contact-item a {
    color: #212121;
}

.footer-toggle span {
    font-size: 14px;
    position: relative;
    top: -4px;
}

.toggle i {font-size: 18px;}


li.dropdown:hover .dropdown-menu {
    display: block;
}

.mobilMenu {
    padding: 0 0px 20px;
}




.share-dialog  svg,.share-dialog  i,.share-button svg,.close-button svg {
    width: 20px;
    height: 20px;
    font-size: 21px;
    margin-right: 7px;
}

.share-dialog  button,.share-dialog  .button,.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #777;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    /* border-radius: 4px; */
    border: 1px solid #ddd;
    cursor: pointer;
}

.share-dialog  button:hover,.share-dialog  .button:hover,.share-button {
    border-color: #cdd;
}


.share-button, .copy-link {
    padding-left: 30px;
    padding-right: 30px;
}

.share-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.share-dialog {
    display: none;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
    z-index: -1;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    background-color: #fff;
}

.share-dialog.is-open {
    display: block;
    z-index: 2;
}

.share-dialog header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.targets {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.share-dialog .close-button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.close-button svg {
    margin-right: 0;
}

.share-dialog .link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    background-color: #eee;
}

.pen-url {
    margin-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.facebook{
    color: #3b5999;
}

.twitter{
    color: #55acee;
}
.whatsapp{
    color: #25D366;
}


.navbar-brand img {
    max-height: 50px;
    max-width: 200px;
}


.contact-information .media a {
    color: #212121;
}
.share-button {
    background: #03A9F4;
    color: #fff;
    border-color: #03A9F4;
}


.swiper-lazy {
    min-height: 125px;
    display: block;
}

.swiper-lazy.swiper-lazy-loaded {
    min-height: auto;
}

.services-swiper-info.picture-service {
    display: inline-block;
    width: 100%;
}
.services-swiper-info.picture-service .swiper-lazy-preloader{
    top:35%;
}

.header-phone a {
    color: #fff;
    text-decoration: none;
}

.footer-contact .item a {
    color: #212121;
    text-decoration: none;
}