/*
Theme Name: AuraDental
Theme URI: AuraDental.com
Author: AuraDental
Author URI: AuraDental
Description: AuraDental
Version: 1.0 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: AuraDental
Text Domain: AuraDental

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* CSS */
@import url(css/grid.css?ver=233);

*:focus {
    outline: none;
}

/* Header */
.header .top {
    text-align: center;
    background-color: #fff;
    padding: 12px 0;
    margin: 0 auto;
}

.header .menu {
    text-align: center;
    background-color: #65cbc0;
    padding: 18px 0;
    margin: 0 auto;
}

.scroll .header .sticky {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sticky-display {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    /*  -webkit-transition: border-color 300ms ease-in-out, -webkit-transform 0.5s cubic-bezier(0.35, -0.25, 0.35, 0);
    -moz-transition: border-color 300ms ease-in-out, -moz-transform 0.5s cubic-bezier(0.35, -0.25, 0.35, 0);
    transition: border-color 300ms ease-in-out, transform 0.5s cubic-bezier(0.35, -0.25, 0.35, 0);*/
}

.scroll .header .sticky-display {
    opacity: 1;
    visibility: initial;
}

/*
.scroll .header .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
    -webkit-transition: border-color 200ms ease-in-out, -webkit-transform 0.3s cubic-bezier(0.35, -0.25, 0.35, 0);
    -moz-transition: border-color 200ms ease-in-out, -moz-transform 0.3s cubic-bezier(0.35, -0.25, 0.35, 0);
    transition: border-color 200ms ease-in-out, transform 0.3s cubic-bezier(0.35, -0.25, 0.35, 0);
}*/
.menu-open .header .sticky {
    position: relative;
    z-index: 999;
}

/*.menu-open.scroll .header .sticky*/
.menu-open.scroll .header .sticky-display {
    position: fixed !important;
    top: 0 !important;
    left: 260px !important;
    z-index: 999;
}

.header .menu nav ul li {
    display: inline-block;
    margin: 0 48px;
}

.header .menu nav>ul>li>a:after {
    content: "•";
    width: 8px;
    font-size: 16px;
    height: 8px;
    display: inline-block;
    position: absolute;
    right: -50px;
    top: 2px;
    line-height: 14px;
}

.header .menu nav ul li.current_page_item>a {
    /*color: #003061;*/
  	color: #fff;
}

.header .menu nav ul .sub-menu li.current_page_item>a {
	color: #003061;
}

.header .menu nav ul li:first-child {
    margin-left: 0;
}

.header .menu nav ul li:last-child>a:after {
    content: none;
}

.header .menu nav ul li:last-child {
    margin-right: 0;
}

.header .menu nav ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.header .menu nav ul li a:hover,
.header .menu nav ul li a.active {
    color: #003061;
}

.header .menu nav ul li a:hover:after,
.header .menu nav ul li.current_page_item>a:after {
    color: #fff;
}

.header .menu .burger {
    display: none;
}

/* Mobile Menu */
.the-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .50);
    z-index: 999;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: -260px;
    height: 100%;
    width: 260px;
    overflow-x: hidden;
    z-index: 1;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition-timing-function: ease;
}

.menu-open .the-overlay {
    display: block;
}

.menu-open .menu-overlay {
    left: 0;
    width: 260px;
    z-index: 999999;
}

.menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 25px;
}

.menu-logo {
    margin: 0 0 40px;
}

.menu-logo img {
    width: 50%;
}

nav.mobile-menu {
    margin-top: 25px;
}

nav.mobile-menu ul li {
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 15px;
}

nav.mobile-menu ul li a {
    color: #303032;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

nav.mobile-menu ul li a:hover,
nav.mobile-menu ul li a.active {
    color: #65cbc0;
}

/* menu-button */
.burger {
    padding: 0 15px;
}

.menu-toggle {
    position: relative;
    width: 27px;
    height: 16px;
    z-index: 9999;
    margin-top: 6px;
}


.button-menu-line {
    position: absolute;
    left: 0;
    display: block;
    height: 2px;
    width: 27px;
    background-color: #fff;
    transition: all, 0.3s;
}

.button-menu-line--1 {
    top: 0;
    transform-origin: center center 0px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.button-menu-line--2 {
    top: 7px;
    transform-origin: center center 0px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.button-menu-line--3 {
    top: 14px;
    transform-origin: center center 0px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.menu-open .button-menu-line--1 {
    -webkit-transform-origin: center center 0px;
    -ms-transform-origin: center center 0px;
    transform-origin: center center 0px;
    -webkit-transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 1, 10);
    -ms-transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 1, 10);
    transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 1, 10);
    top: -6px;
}

.menu-open .button-menu-line--2 {
    -webkit-transform-origin: center center 0px;
    -ms-transform-origin: center center 0px;
    transform-origin: center center 0px;
    -webkit-transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 1, 3);
    -ms-transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 1, 3);
    transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 1, 3);
    top: 1px;
}

.menu-open .button-menu-line--3 {
    opacity: 0;
}

.menu-open .sticky-display .button-menu-line--1 {
    top: -2px;
}

.menu-open .sticky-display .button-menu-line--2 {
    top: 5px;
}

/* /menu-button */
/* colors */
.menu-overlay {
    background-color: #fff;
    /*  background: rgb(218, 219, 220);
    background: -moz-linear-gradient(left, rgba(218, 219, 220, 1) 0%, rgba(243, 244, 245, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(218, 219, 220, 1) 0%, rgba(243, 244, 245, 1) 100%);
    background: linear-gradient(to right, rgba(218, 219, 220, 1) 0%, rgba(243, 244, 245, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dadbdc', endColorstr='#f3f4f5', GradientType=1);*/
}

/* /colors */
/* /Mobile Menu */
.header .infos {
    text-align: center;
    background-color: #003061;
    padding: 13px 0;
    margin: 0 auto;
}

.header .infos ul li {
    /*position: relative;*/
    display: inline-block;
}

.header .infos ul li:before {
    /*position: absolute;
    top: 0;
    right: 0;*/
    content: "•";
    margin: 0 26px;
    top: -1px;
    position: relative;
}

.header .infos ul li:first-child:before {
    display: none;
    margin: 0;
}

.header .infos ul li:last-child {}

.header .infos ul li,
.header .infos ul li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;

    font-weight: 600;
    letter-spacing: 0.25px;
}

.header .infos ul li a:hover {
    opacity: .75;
}

.single_doc a {
    width: 100%;
    padding: 15px;
    display: inline-block;
    border-bottom: 1px solid #e4e4e4;
    /* background: #333; */
    transition: all linear 0.15s;
    /* color: #fff; */
    color: #64b5f6;
    font-family: 'gilroy', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding-right: 50px;
    position: relative;
}

.single_doc a:after {
    content: "\f019";
    font-size: 20px;
    display: block;
    position: absolute;
    right: 13px;
    top: 19px;
    color: #65cbc0;
    font-family: "FontAwesome";
}

@media (max-width: 1024px) {

    .header .menu {
        text-align: left;
        padding: 8px 0;
        margin: 0;
    }

    .header .menu nav {
        display: none;
    }

    .header .menu .burger {
        display: inline-block;
        width: 100%;
    }

    .header .infos {
        text-align: left;
        padding: 15px;
        margin: 0;
    }

    .header .infos ul li {
        display: block;
        margin-bottom: 10px;
    }

    .header .infos ul li:before {
        display: none;
    }

    .menu-toggle {
        margin-top: 11px;
    }
}



@media (max-width: 375px) {

    .header .infos ul li,
    .header .infos ul li a {
        font-size: 12px;
    }
}

.header .socials a {
    width: 26px;
    height: 26px;
    margin-left: 6px;
    margin-right: 6px;
    line-height: 25px;
    font-size: 16px !important;
    vertical-align: top;
    display: inline-block;
    background: #fff;
    color: #003061 !important;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    margin-top: -3px;
}

.header .socials a span,
.social_items a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
}

.social_items a span {
    height: 37px;
}

.header .socials a:first-child {
    margin-left: 0;
}

.header .socials a:last-child {
    margin-right: 0;
}

.header .socials a:hover {
    background: #9d4785;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Footer */
.footer {
    background-color: #65cbc0;
    padding: 108px 0 105px;
}

.footer .title h4 {
    color: #fff;
    font-size: 30px;
    /*font-weight: 400;*/
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 55px;
}

.footer .infos {
    margin-bottom: 60px;
    display: inline-block;
    width: 100%;
}

.footer .infos .contacts .contacts-list {
    margin-bottom: 53px;
}

.footer .infos .contacts .contacts-list span {
    text-transform: uppercase;
    margin-right: 5px;
}

.footer .infos .contacts .contacts-list span.fax {
    margin-right: 16px;
}

.footer .infos .contacts ul li span,
.footer .infos .contacts ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer .infos .contacts .contacts-list a:hover {
    opacity: .75;
}

.footer .infos .contacts .contacts-list li {
    margin-bottom: 3px;
}

.footer .infos .contacts .contacts-list li:last-child {
    margin-bottom: 0;
}

.footer .infos .contacts a.address {
    width: 275px;
    color: #212123;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    /*border-bottom: 1px solid #212123;*/
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.footer .infos .contacts .time_schedule {
    margin-top: 0;
    margin-bottom: 60px;
}

.footer .infos .contacts a.address:hover {
    opacity: .75;
}

.footer .infos .socials ul li {
    display: inline-block;
    margin: 0 7px;
}

.footer .infos .socials ul li:first-child {
    margin-left: 0;
}

.footer .infos .socials ul li:last-child {
    margin-right: 0;
}

.footer .infos .socials ul li {
    display: inline-block;
    margin: 0 7px;
}

.footer .infos .socials ul li a {
    /*width: 32px;
    height: 32px;*/
    width: 45px;
    height: 45px;
    color: #212123 !important;
    /*font-size: 16px !important;*/
    font-size: 20px !important;
    text-align: center;
    /*line-height: 29px;*/
    line-height: 41px;
    border: 2px solid #212123;
    border-radius: 500px;
}

.footer .infos .socials ul li a:hover {
    color: #fff !important;
    background-color: #212123;
}

.footer .infos iframe {
    width: 411px !important;
    float: right;
    height: 475px;
}

.divider-footer {
    height: 8px;
    background: #fff;
}

.footer .contact {
    padding-top: 60px;
    display: inline-block;
    width: 100%;
}

.footer .wrap-left {
    /*padding-right: 104px;*/
    padding-right: 175px;
}

.footer .wrap-right {
    /*padding-left: 104px;*/
    padding-left: 0;
}

.footer .contact .text p,
.footer .contact .text a {
    color: #212123;
    font-size: 17px;
    /*font-weight: 600;*/
    font-weight: 500;
    line-height: 28px;
}

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

.footer .infos .title h4 {
    margin-top: -7px;
}

.footer .contact .text a {
    font-weight: 600;
    text-decoration: underline;
}

.footer .contact .text a:hover {
    opacity: .75;
}

.footer .contact .right-content {
    margin-top: 56px;
}

.footer .contact .right-content span {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.footer .contact .right-content select#pick-category {
    color: #fff;
    font-size: 16px;
    border: 2px solid #fff;
    background: transparent;
    padding: 10px 40px 10px 17px;
    min-width: 290px;
}

.footer .contact .right-content select#pick-category option {
    color: #65cbc0;
    font-size: 16px;
    padding: 14px 0;
}

/* forms */
/* fix */

/*
.full .wpcf7-form-control-wrap,
.half .wpcf7-form-control-wrap {
    overflow: hidden;
}*/
.footer .contact .right-content span.wpcf7-form-control-wrap {
    margin-bottom: 0;
}

/* /fix */
.forms {
    margin-top: 32px;
}

.form {
    display: none;
}

.footer .form {
    background-color: #fff;
    padding: 39px 36px;
}

.footer .form input,
.footer .form select,
.footer .form textarea {
    color: #212123 !important;
    font-size: 16px !important;
    border: 2px solid #DBDEE0;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 7px 18px !important;
}

.footer .form select {
    width: 100% !important;
}

.footer .form textarea {
    height: 84px !important;
}

.footer .form .wpcf7 input:hover,
.footer .form .wpcf7 input:focus,
.footer .form .wpcf7 textarea:hover,
.footer .form .wpcf7 textarea:focus,
.footer .form .wpcf7 select:hover,
.footer .form .wpcf7 select:focus {
    border-color: #65cbc0 !important;
    outline: 0 !important;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.footer .form .half {
    width: 50%;
}

.footer .form .half input,
.footer .form .half select {
    width: 98% !important;
}

.footer .form .half.left input,
.footer .form .half.left select {
    float: left;
}

.footer .form .half.right input,
.footer .form .half.right select {
    float: right;
}

.footer .form input,
.footer .form select,
.footer .form textarea {
    margin-bottom: 8px;
}

.footer .form .submit-canvas {
    overflow: hidden;
}

.footer .form input[type="submit"] {
    color: #fff !important;
    font-weight: 500;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #65cbc0 !important;
    padding: 15px 22px !important;
    float: right;
}

/* date */
#datepicker2 {
    position: relative !important;
}

/* /date */
/* end */
.footer .questions {
    /*margin-top: 82px;*/
    margin-top: 39px;
}

.footer .questions ul li {
    margin-bottom: 10px;
}

.footer .questions ul li:last-child {
    margin-bottom: 0;
}

.footer .questions ul li a {
    color: #212123;
    font-size: 17px;
    font-weight: 500;
    text-decoration: underline;
}

.footer .questions ul li a:hover {
    opacity: .75;
}

.the-answer {
    /*width: 800px;
    height: 600px;
    max-width : 80%;
    max-height: 80%;
    background-color: #fff;
    margin: 0;
    padding: 80px 25px;*/
    /*****width: 667px;
    max-height: 600px;****/
    /*max-width: 65%;
    max-height: 80%;*/

    /* width: 667px;
    max-height: 600px;*/

    width: 667px;
    max-height: 600px;
    position: relative;
    background-color: #fff;

}

.the-answer2 {
    max-width: 650px;
    height: 650px;
}

.wrapp-content-the-aswer {
    padding: 30px;
    /* margin: 0; 
    padding: 80px 50px;  
    padding: 60px 50px 50px;  
    display: inline-block;*/
}

.fancybox-close-small {
    display: block !important;
}

.the-answer button,
.the-answer2 button {
    background-color: transparent !important;
}

.bottom {
    text-align: center;
    padding: 41px 0;
    margin: 0 auto;
}

.the-answer .title,
.the-answer2 .title {
    text-align: center;
}

.the-answer h4,
.the-answer2 h4 {
    color: #65cbc0;
    font-size: 30px;
    margin-bottom: 46px;
    font-weight: 600;
}

@media (max-width: 1024px) {

    .the-answer h4,
    .the-answer2 h4 {
        color: #65cbc0;
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/*
.the-answer p,
.the-answer2 p {
    text-align: justify;
} */

@media (max-width: 1024px) {
    .footer {
        padding: 50px 0;
    }

    .footer .title h4 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .divider-footer {
        height: 2px;
        margin-bottom: 25px;
    }

    .contact_inf .time_schedule {
        margin-top: 17px;
    }

    .footer .infos .contacts .contacts-list {
        margin-bottom: 25px;
    }

    .footer .infos .contacts a.address,
    .footer .infos .contacts .time_schedule {
        margin-bottom: 25px;
    }

    .footer .infos {
        margin-bottom: 25px;
    }

    .footer .contact {
        padding-top: 0px;
    }

    .footer .wrap-left {
        padding-right: 25px;
    }

    /*.footer .wrap-right { padding-left: 25px; }*/
    .footer .contact .text p,
    .footer .contact .text a {
        font-size: 16px;
        line-height: 28px;
    }

    .footer .contact .right-content {
        margin-top: 0px;
    }

    .footer .contact .right-content span {
        font-size: 16px;
    }

    .footer .contact .right-content select {
        padding: 10px 50px 10px 10px;
    }

    .forms {
        margin-top: 25px;
    }

    .footer .form {
        padding: 25px;
    }

    .footer .questions {
        margin-top: 25px;
    }

    .footer .questions ul li a {
        font-size: 16px;
    }

    .bottom {
        padding: 25px 0;
    }

    .bottom .logo img {
        width: 75%;
    }

    .footer .contact .right-content select#pick-category {
        margin-top: 14px;
    }
}

@media (max-width: 768px) {

    .footer .infos .x6,
    .footer .contact .x6 {
        width: 100%;
        margin-bottom: 25px;
    }

    .footer .wrap-left {
        padding-right: 0;
    }

    /*.footer .wrap-right { padding-left: 0; }*/
    .footer .contact .right-content {
        margin-top: 20px;
    }

    .footer .form {
        padding: 15px;
    }
}

@media (max-width: 475px) {
    .footer .form .half {
        width: 100%;
    }

    .footer .form .half.left,
    .footer .form .half.right {
        float: none;
    }

    .footer .form .half input,
    .footer .form .half select {
        float: none !important;
        width: 100% !important;
    }
}

/* HOME */
/* Hero [#top] */
.home-page .hero {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 594px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-page .hero.onmobile {
    display: none;
}

.home-page .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, .25);*/
    background-color: rgba(0, 0, 0, .60);
    z-index: 2;
}

.home-page .hero .large_head {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* All */
.home-page .services,
.home-page .contact,
.home-page .about {
    padding: 108px 0;
}

/* End */

/* Services [#section1] */
.home-page .services .logo {
    text-align: center;
    margin: 0 auto 57px;
}

.home-page .services .title,
.home-page .services .text {
    text-align: center;
}

.home-page .services .title {
    padding: 0 121px;
}

.home-page .services .text {
    padding: 0 171px;
}

.home-page .services .title h1,
.home-page .services .title .title_mobile_h1 {
    color: #65cbc0;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.home-page .services .title .title_mobile_h1 {
    line-height: normal;
}

.home-page .services .text p {
    font-size: 17px;
    line-height: 28px;
}

/* services */
.services-wrap {
    margin-top: 44px;
    display: inline-block;
    width: 100%;
}

.services-wrap-column .single-services-wrap {
    display: inline-block;
    width: 100%;
}

.service-single {
    padding-right: 5px;
    padding-left: 5px;
}

.services-wrap .cell:nth-of-type(3n) .service-single {
    padding-right: 0;
}

.services-wrap .cell:nth-of-type(3n+1) .service-single {
    padding-left: 0;
}

.service-title .icon {
    position: absolute;
    top: -2px;
    right: 0;
    border: 2px solid #C6C7C8;
    border-radius: 2px;
    padding: 0 4px;
}

.service-title .icon .arrow {
    background-image: url(images/icon-down.png);
    width: 15px;
    height: 11px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 300ms ease-in 0s;
    -moz-transition: all 300ms ease-in 0s;
    -o-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
}

.service-title.active .icon {
    border: 2px solid #65cbc0;
}

.service-title.active .icon .arrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.service-title .icon i {
    font-weight: 700;
    -webkit-transition: all 300ms ease-in 0s;
    -moz-transition: all 300ms ease-in 0s;
    -o-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
}

.service-title.active .icon i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

a.service-title {
    position: relative;
    display: block;
    color: #212123;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #65cbc0;
    padding-bottom: 23px;
    margin-bottom: 52px;
    text-transform: uppercase;
}

a.service-title:hover,
a.service-title.active {
    color: #00A2DF;
}

.service-content {
    display: none;
    border-bottom: 2px solid #65cbc0;
    padding-bottom: 24px;
    margin-bottom: 52px;
}

.service-content p {
    font-size: 16px;
}

.home-page .services {
    padding-bottom: 48px;
}

/* /services */

/* Contact [#section2] */
.home-page .contact {
    background-color: #65cbc0;
}

.home-page .contact .title h3 {
    color: #fff;
    font-size: 30px;
    /*font-weight: 400;*/
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: -8px;
}

.home-page .contact .items ul {
    margin-bottom: 8px;
    display: inline-block;
    width: 100%;
}

.home-page .contact .items ul li {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 18px;
    text-align: left;
    position: relative;
}

.home-page .contact .items ul li:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content: "\f111";
    color: #212123;
    /*font-size: 7px;*/
    font-size: 10px;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 0;
}

.home-page .contact a.address {
    width: 275px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    /*border-bottom: 1px solid #185472;*/
    text-decoration: underline;
    text-transform: uppercase;
}

.home-page .contact a.address:hover {
    opacity: .75;
}

.home-page .contact iframe {
    width: 441px !important;
    height: 441px;
    float: right;
}

.home-page .contact .divider {
    border: 4px solid #fff;
    margin: 65px 0;
}

.home-page .contact .box {
    background-color: #fff;
    min-height: 456px;
}

.home-page .contact .box-testimonials {
    padding-right: 35px;
}

.home-page .contact .box-testimonials .box {
    padding: 33px 30px;
}

.home-page .contact .box-appointment {
    padding-left: 35px;
}

.home-page .contact .box-appointment .box {
    padding: 33px 36px;
}

.home-page .contact .box h5 {
    color: #65cbc0;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 30px;
}

.home-page .contact .testimonials {
    /*display: none;*/
}

.home-page .contact .testimonials .testimonial {
    text-align: center;
}

.home-page .contact .testimonials .testimonial p {
    color: #212123;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 30px;
}

.home-page .contact .testimonials .testimonial .testimonial-content {
    padding-left: 7px;
    padding-right: 7px;
}

.home-page .contact .testimonials .testimonial p a {
    color: #212123;
}

.home-page .contact .testimonials .testimonial .testimonial_wrapp {
    display: inline-block;
    margin-bottom: 30px;
}

.home-page .contact .testimonials .testimonial .testimonial_icon {
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    font-size: 25px;
    border: 2px solid #65cbc0;
    color: #65cbc0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    line-height: 46px;
    margin-bottom: 25px;
}

.home-page .contact .testimonials .testimonial .name {
    margin-bottom: 9px;
}

.home-page .contact .testimonials .testimonial .name a {
    color: #65cbc0;
}

.home-page .contact .testimonials .testimonial .name a:hover {
    color: #212123;
}

.home-page .contact .testimonials .testimonial span {
    color: #212123;
    font-size: 18px;
    /*font-weight: 500;*/
    font-weight: 600;
    /*font-style: italic;*/
}

.slick-slider .slick-dots {
    /*bottom: 47px !important;*/
    bottom: 13px !important;
}

.testimonials.slick-slider .slick-dots li button {
    background: #212123 !important;
}

.testimonials.slick-slider .slick-dots li.slick-active button {
    background: #65cbc0 !important;
}

.testimonials .slick-dots li {
    width: 35px;
    height: 35px;
}

.testimonials.slick-slider .slick-dots {
    bottom: -53px !important;
}

.testimonials .slick-dots li a {
    width: 35px;
    height: 35px;
    color: #65cbc0;
    display: inline-block;
    font-size: 18px;
    line-height: 32px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border: 2px solid #65cbc0;
}

.testimonials .slick-dots li.slick-active a,
.testimonials .slick-dots li:hover a {
    color: #fff;
    background: #65cbc0;
}

/* appointment form */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    color: #212123 !important;
    font-size: 16px !important;
    border: 2px solid #DBDEE0;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 7px 18px !important;
}

.appointment-form select {
    width: 100% !important;
}

.appointment-form textarea {
    height: 84px !important;
}

.appointment-form .wpcf7 input:hover,
.appointment-form .wpcf7 input:focus,
.appointment-form .wpcf7 textarea:hover,
.appointment-form .wpcf7 textarea:focus,
.appointment-form .wpcf7 select:hover,
.appointment-form .wpcf7 select:focus {
    border-color: #65cbc0 !important;
    outline: 0 !important;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.appointment-form .half {
    width: 50%;
}

.appointment-form .half input,
.appointment-form .half select {
    width: 98% !important;
}

.appointment-form .half.left input,
.appointment-form .half.left select {
    float: left;
}

.appointment-form .half.right input,
.appointment-form .half.right select {
    float: right;
}

.appointment-form .half.right select {
    color: #212123 !important;
    font-size: 14px !important;
    font-weight: 500;
    padding: 8px 18px !important;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    margin-bottom: 8px;
}

.appointment-form .submit-canvas {
    overflow: hidden;
}

.appointment-form input[type="submit"] {
    color: #fff !important;
    font-weight: 500;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #65cbc0 !important;
    padding: 15px 22px !important;
    float: right;
}

/* date */
#datepicker {
    position: relative !important;
}

table.ui-datepicker-calendar {
    border: 0 !important;
}

.ui-widget-content {
    color: #212123;
}

.ui-widget {
    font-family: 'gilroy', sans-serif;
    font-size: 1em;
}

.ui-widget.ui-widget-content {
    border: 1px solid #DBDEE0 !important;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 0 !important;
}

.ui-widget-header {
    border: 1px solid #65cbc0 !important;
    background: #65cbc0 !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #e4e4e4 !important;
    background: #e4e4e4 !important;
    color: #212123 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #65cbc0 !important;
    background: #65cbc0 !important;
    font-weight: 500;
    color: #fff !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    background: transparent;
    text-align: center;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background: transparent;
    border: none;
}

/* /date */
/* end */

/* About [#section3] */
.home-page .about .photo {
    height: 480px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.home-page .about .the-content {
    /*padding: 0 54px;*/
    padding: 0 0 0 25px;
    margin-bottom: -7px;
}

.home-page .about .title h3 {
    color: #65cbc0;
    /*font-size: 30px;*/
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    /*margin-bottom: 52px;*/
    margin-bottom: 30px;
    margin-top: -8px;
}

.home-page .about .subtitle h5 {
    color: #212123;
    font-size: 24px;
    font-weight: 600;
    /*margin-bottom: 53px;*/
    margin-bottom: 30px;
}

.home-page .about .content p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 30px;
}

.home-page .about .content p:last-child {
    margin-bottom: 0;
}

/* Collaborators [#section4] */
.home-page .collaborators {
    padding: 109px 0 107px;
    background-color: #65cbc0;
}

.home-page .collaborators .title {
    text-align: center;
}

.home-page .collaborators .title h3 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: -6px;
}

.home-page .collaborators .small-content {
    overflow: hidden;
    text-align: center;
    padding: 0 245px;
    margin: 0 auto 61px;
}

.home-page .collaborators .small-content p {
    /*margin: 0 0 46px;*/
    margin: 0 0 25px;
}

.home-page .collaborators .small-content p:last-child {
    margin-bottom: 0;
}

.home-page .collaborators .img {
    text-align: center;
    margin: 0 auto;
}

.home-page .collaborators .img .img-bg {
    width: 304px;
    height: 304px;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    background-position: center center;
    margin-bottom: 24px;
}

.home-page .collaborators .img img {
    width: auto;
    height: 360px !important;
    margin-bottom: 47px;
}

.home-page .collaborators .ttl,
.home-page .collaborators .desc {
    text-align: center;
    margin: 0 auto 5px;
}

.home-page .collaborators .ttl span,
.home-page .collaborators .desc span {
    font-size: 17px;
    font-weight: 600;
}

.home-page .collaborators .ttl span {
    color: #fff;
}

.home-page .collaborators .desc span {
    color: #212123;
}

.home-page .collaborators .socials {
    text-align: center;
    margin: 45px auto 0;
}

.home-page .collaborators .socials ul li {
    display: inline-block;
    margin: 0 19px;
}

.home-page .collaborators .socials ul li:first-child {
    margin-left: 0;
}

.home-page .collaborators .socials ul li:last-child {
    margin-right: 0;
}

.home-page .collaborators .socials ul li {
    display: inline-block;
    margin: 0 7px;
}

.home-page .collaborators .socials ul li a {
    width: 57px;
    height: 57px;
    color: #fff !important;
    /* font-size: 16px !important; */
    font-size: 27px !important;
    text-align: center;
    /* line-height: 29px; */
    line-height: 53px;
    border: 2px solid #fff;
    border-radius: 500px;
}

.home-page .collaborators .socials ul li a:hover {
    color: #65cbc0 !important;
    background-color: #fff;
}

.home-page .row_collaborators {
    display: block;
    clear: both;
    zoom: 1;
}

.home-page .row_collaborators .article-coll {
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.home-page .row_collaborators .article-coll-single:nth-of-type(3n) .article-coll {
    margin-right: 0;
}

.home-page .row_collaborators .article-coll-single:nth-of-type(3n+1) .article-coll {
    margin-left: 0;
}


/* Slider [#section5] */
.home-page .slider-wrap {
    padding: 100px 0 108px 0;
}

.home-page .slider-wrap .title {
    text-align: center;
    margin: 0 auto;
}

.home-page .slider-wrap .title h3 {
    color: #65cbc0;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 57px;
}

.home-page .slider {
    position: relative;
    display: none;
}

.home-page .slider .slide {
    position: relative;
    height: 671px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-page .slider .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-page .slider .the-arrows {
    position: absolute;
    top: 45%;
    content: "";
    width: 69px;
    height: 29px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.home-page .slider .left-arrow {
    left: 45px;
    background-image: url(images/left-arrow.png);
}

.home-page .slider .left-arrow:hover {
    left: 40px;
}

.home-page .slider .right-arrow {
    right: 45px;
    background-image: url(images/right-arrow.png);
}

.home-page .slider .right-arrow:hover {
    right: 40px;
}

.slider.slick-slider .slick-dots {
    bottom: 45px !important;
}

.slider.slick-slider .slick-dots li button {
    background: #fff !important;
}

.slider.slick-slider .slick-dots li.slick-active button {
    border: 2px solid #fff;
    padding: 6px;
    background: transparent !important;
}

.home-page .slider-wrap .subtitle {
    text-align: center;
    margin: 65px auto 0;
    display: inline-block;
    width: 100%;
}

.home-page .slider-wrap .subtitle h5 {
    color: #212123;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.onload_slider_opacity {
    position: relative;
}

.onload_loading_opacity {
    text-align: center;
}

.onload_loading_opacity img {
    width: 150px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.onload_loading_opacity {
    /*position: absolute;
    left: 0;
    top: 0;*/
    width: 100%;
    height: 300px;
    background: #fff;
}

.onload_slider_opacity .onload_hide_opacity {
    opacity: 0;
    visibility: hidden;
    display: none;
}

div.wpcf7-response-output {
    margin: 10px 0;
    padding: 10px;
}

.general_content p {
    font-size: 17px;
    line-height: 28px;
}

.general_content h2 {
    font-size: 3.2rem;
}

.general_content h3 {
    font-size: 2.5rem;
}

.time_schedule {
    display: inline-block;
    width: 100%;
    margin-top: 27px;
}

.time_schedule_single {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    line-height: normal;
    font-size: 17px;
}

.time_schedule_single_day {
    width: 110px;
    float: left;
}

.time_schedule_single_hour {
    width: 250px;
    float: left;
}

.footer .contact .cont-info-1 h4 {
    margin-bottom: 50px;
}

.footer .contact .custom-selector-select .selectric-wrapper {
    width: 290px;
    font-size: 16px;
    text-transform: initial;
    position: relative;
}

.footer .contact .custom-selector-select .selectric-wrapper span.label {
    font-size: 16px;
    text-transform: initial;
    margin-bottom: 0px !important;
    padding: 11px 17px;
    font-weight: 500;
}

.footer .contact .custom-selector-select .selectric-wrapper span.select-button {
    margin-bottom: 0;
    width: auto;
    position: absolute;
    right: 17px;
    top: 7px;
}

.footer .contact .custom-selector-select .selectric-wrapper span.select-button i {
    font-size: 13px;
}

.footer .contact .custom-selector-select .selectric-wrapper .selectric {
    border: 2px solid #fff;
}

.footer .contact .custom-selector-select .selectric-wrapper .selectric-items li {
    color: #212123;
    font-size: 16px;
    padding: 11px 17px;
    background: #fff;
}

.footer .contact .custom-selector-select .selectric-wrapper .selectric-items li.highlighted,
.footer .contact .custom-selector-select .selectric-wrapper .selectric-items li:hover {
    background: #dfdfdf !important;
}

form .selectric-wrapper {
    width: 100%;
    font-size: 16px;
    text-transform: initial;
    position: relative;
    margin-bottom: 13px;
}

form .right .selectric-wrapper {
    float: right;
}

form .left .selectric-wrapper {
    float: left;
}

form .selectric-wrapper span.label {
    font-size: 16px;
    text-transform: initial;
    margin-bottom: 0px;
    padding: 9px 17px 8px 17px;
    font-weight: 500;
}

form .selectric-wrapper span.select-button {
    margin-bottom: 0;
    width: auto;
    position: absolute;
    right: 17px;
    top: 7px;
}

form .selectric-wrapper span.select-button i {
    font-size: 13px;
}

form .selectric-wrapper .selectric {
    border: 1px solid #b5b8bc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

form .selectric-wrapper .selectric-items li {
    color: #212123;
    font-size: 16px;
    padding: 8px 17px;
    background: #fff;
}

form .selectric-wrapper .selectric-items li.highlighted,
form .selectric-wrapper .selectric-items li:hover {
    background: #dfdfdf !important;
}

.footer .contact form .selectric-wrapper span.select-button {
    margin-bottom: 0;
    width: auto;
    position: absolute;
    right: 17px;
    top: 7px;
    color: #212123;
}

.footer .contact form .selectric-wrapper span.label {
    font-size: 16px;
    text-transform: initial;
    margin-bottom: 0px;
    padding: 9px 17px 8px 17px;
    font-weight: 500;
    color: #212123;
}

/* 4o4 */
.error-page {
    text-align: center;
    padding: 100px 0;
    background: #f5f5f5;
}

.center_content {
    text-align: center;
}

.error-page img {
    width: 280px;
}

.error-page h1 {
    font-weight: 900;
}

.error-page h3 {
    font-weight: 700;
}

.error-page p {
    font-size: 20px;
}

.onmobile {
    display: none;
}

.items_mobile {
    display: none;
}


.home-page .contact .captcha,
.footer .form .captcha {
    height: 60px;
}

.home-page .contact .captcha iframe,
.footer .form .captcha iframe {
    width: auto !important;
    height: 79px !important;
    float: left;
    border-right: 1px solid #dde0e2;
}

.home-page .contact .captcha>div,
.footer .form .captcha>div {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    -ms-transform: scale(0.77);
    -o-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
}


/* start */

.main-logo-box img {
    width: 155px;
}



.footer-1 .color_logo {
    text-align: center;
    margin-bottom: 30px;
    float: none;
}

.footer-1 .menu_box ul {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.footer-1 .menu_box li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.footer-1 .menu_box_items {
    margin-bottom: 30px;
}

.footer-1 .menu_box_items li {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-1 .menu_box_items li a:before {
    content: "•";
    width: 8px;
    font-size: 16px;
    height: 8px;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 2px;
    line-height: 14px;
}

.footer-1 .menu_box_items li a:after {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    background: #65cbc0;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.footer-1 .menu_box_items li.current-menu-item a:after,
.footer-1 .menu_box_items li a:hover:after {
    width: 100%;
}

.footer-1 .menu_box_items li:first-child a:before {
    content: none;
}

.footer-1 .menu_box_items li a {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
}

.footer-1 .menu_box_items li a:hover {
    color: #65cbc0;
}

.footer-1 {
    background: #00406f;
    padding: 50px 0;
}

.footer-1 img {
    height: 110px;
}

.footer-2 {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #65cbc0;
}

.footer-2 img {
    max-width: 330px;
}

.footer-2 p {
    color: #fff;
    margin-bottom: 0;
}

.copyright p,
.copyright_info p {
    text-align: left;
    padding-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}

.copyright_info p {
    text-align: right;
}


.social_items {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.social_items li {
    vertical-align: top;
    display: inline-block;
    margin-right: 10px;
}

.social_items li a {
    width: 42px;
    height: 42px;
    display: inline-block;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: transparent;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 43px;
    border: 2px solid #65cbc0;
}

.social_items li a:hover {
    background: #1c6d91;
}



.wrapp-top-footer {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.wrapper-top-footer-left {
    width: 100%;
    float: none;
    padding: 30px;
    background: #f3f6f8;
    height: 100%;
}

.wrapper-top-footer-left .large_title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
    line-height: 1.2em;
    margin-bottom: 0;
}

.wrapper-top-footer-left h6 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    margin-top: -2px;
    color: #0f0e10;
}

.wrapp-top-footer-right {
    width: 100%;
    float: none;
    background: #ffffff;
    padding-left: 0;
}

.wrapp-top-footer-right iframe {
    width: 100%;
    height: 400px;
    box-shadow: 0px 2px 28px 0px rgba(136, 136, 136, 0.19);
}


.wrapper-top-footer-left .small_title {
    font-weight: 600;
    text-align: center;
    font-size: 19px;
    margin-bottom: 30px;
}

.wrapp-new-footer .medium_title {
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
    font-size: 30px;
    text-align: center;
}

.wrapp_hours .block-day {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
}

.wrapp_hours .block-day:last-child {
    margin-bottom: 0;
}

.wrapp_hours .block-day-right {
    font-weight: 700;
    text-transform: uppercase;
}

.wrapp_hours .block-day-left,
.wrapp_hours .block-day-right {
    float: left;
    width: 50%;
    font-size: 14px;
    color: #4e5053;
}

.wrapp_hours .block-day-right {
    text-align: right;
}

.block-call {
    padding-left: 45px;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.block-call:before {
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-image: url(images/phone.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    border: 3px solid #37afae;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.block-map.block-call:before {
    background-image: url(images/location.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
}

.block-call span {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.block-call p {
    padding-top: 6px;
    padding-left: 15px;
}

.block-call a {
    font-size: 17px;
    color: #100f11 !important;
    line-height: 1em;
    opacity: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.block-call a:hover {
    color: #65cbc0;
}

.wrapp-new-footer {
    /* margin-top: -180px; */
    z-index: 98;
    position: relative;
}

.about-note {
    padding: 12px 10px 11px 10px;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}


.wrapp-white-box {
    background: #ffffff;
    padding: 20px;
    display: inline-block;
    width: 100%;
}

.gray {
    background: #effffd;
}

.padd_sec {
    padding: 70px 0;
}

.nopt {
    padding-top: 0;
}

.nopb {
    padding-bottom: 0;
}

.blue {
    background: #65cbc0;
}

.content_map {
    margin-top: 70px;
}

.section_services {
    border: 2px solid #fff;
    padding: 0 15px;
}

.full-services .single_service {
    width: 25%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
    border: 2px solid #fff;
}

.full-services .single_service:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.4);
}

.full-services .single_service:hover:before {
    background: rgba(0, 0, 0, 0.5);
}

.full-services .single_service span {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}


.main_section {
    position: relative;
    padding-top: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 600px;
}

.main_section:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
}

.intro_hero h2 {
    margin-bottom: 50px;
    line-height: 1.1em;
}

.intro_hero .single-row {
    display: inline-block;
    width: 100%;
    font-size: 74px;
    color: #fff;
    font-weight: 700;
}

.wrapp_boxes {
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 50px;
    margin-top: 80px;
}

.box_info {
    padding-left: 15px;
    padding-right: 15px;
}

.wrapp_boxes .wrapp_box_info {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 30px 23px 30px;
    text-align: center;
    height: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wrapp_boxes .wrapp_box_info p {
    font-size: 21px;
    color: #fff;
    margin-bottom: 10px;
}

.button {
    font-size: 15px;
    font-weight: 800;
    padding: 13px 27px;
}

.button.green {
    background: #65cbc0;
    color: #fff;
}

.button.green:hover {
    background: #6ea232;
}

.button.simple {
    border: 2px solid #fff;
    padding: 6px 21px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.button.simple:hover {
    background: #65cbc0;
    border-color: #65cbc0;
    color: #fff !important;
    opacity: 1 !important;
}

.box_info_img {
    width: 70px;
    height: 35px;
    position: absolute;
    top: -35px;
    left: calc(50% - 35px);
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-top-left-radius: 100px;
    -webkit-border-top-right-radius: 100px;
    -moz-border-radius-topleft: 100px;
    -moz-border-radius-topright: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.box_info_img img {
    position: relative;
    top: 18px;
    width: 35px;
}

.tabs_blocks li {
    margin-bottom: 13px;
}

.tabs_blocks li a {
    padding: 21px 32px;
    background: #100f11;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    position: relative;
    display: inline-block;
}

.tabs_blocks li a.active,
.tabs_blocks li a:hover {
    background: #65cbc0;
}

.tabs_blocks li a:after {
    content: "";
    display: inline-block;
    background-image: url(images/arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    position: absolute;
    right: 15px;
    top: 22px;
    /* width: 0;
    height: 18px;*/

    width: 0;
    height: 18px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.tabs_blocks li a.active:after,
.tabs_blocks li a:hover:after {
    width: 37px;
}

.tabs_content .tab_content {
    display: none;
    padding: 40px 50px;
}

.tabs_content .tab_content.active {
    display: block;
    background: #fff;
    border-top: 2px solid #000;
}

.padd40 {
    padding: 40px;
}

.section_intro {
    margin-bottom: 40px;
}

.download .section_intro {
    text-align: center;
}

.download .buttons_download {
    text-align: center;
}

.download .button_download {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    margin-right: 10px;
    width: 380px;
}

.download .buttons_download .button {
    padding: 28px 50px 28px 130px;
    position: relative;
    font-size: 27px;
    color: #090909;
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    min-height: 132px;
}

.download .buttons_download .button:before {
    content: "";
    width: 65px;
    height: 65px;
    display: inline-block;
    background: #65cbc0;
    background-image: url(images/download_button.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border: 1px solid #65cbc0;
    position: absolute;
    position: absolute;
    left: 40px;
    top: 31px;
}

.download .buttons_download .button:hover {
    color: #65cbc0;
}

/*.download .buttons_download .button:hover {
    background: #74b22f;
    color: #fff;
    border: 2px solid #74b22f;
}

.download .buttons_download .button:hover:before {
     border:1px solid #fff;
}
*/
.wrapp_intro_hero {
    height: 600px;
}

.wrapp_intro_hero h2 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.wrapp_app_form {
    background: #ffffff;
    padding: 34px;
}

.wrapp_app_form .title_contact {
    font-size: 26px;
    text-align: left;
    margin-bottom: 10px;
    margin-top: -10px;
}

.slider_gall .single_slide {
    height: 750px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.wrapp_slider_gall {
    height: 750px;
    overflow: hidden;
}

/*.slider_gall .single_slide:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9;
}*/

.wrapp_block_slider {
    position: relative;
}

.wrapp_block_slider .info_above_slider {
    position: relative;
    /*left: 0;
top: 0;*/
    z-index: 99;
    /* height: 100%;*/
    width: 100%;
    padding: 70px 0;
    background: #f3f3f3;
    display: inline-block;
}

.wrapp_block_slider .info_above_slider .container {
    height: 100%;
}

.wrapp_block_slider .info_above_slider .slider_text * {
    color: #100f11;
    text-align: center;
}

.wrapp_block_slider .info_above_slider .slider_text h3 {
    margin-bottom: 20px;
    font-size: 4.7rem;
    color: #100f11;
}

.wrapp_block_slider .info_above_slider .slider_text p {
    font-size: 21px;
    line-height: 1.4em;
    color: #100f11;
}

.wrapp_slider_gall .slick-slider .slick-arrow:before {
    content: "\f053";
    color: #ffffff;
    font-size: 1.4rem;
    font-family: "FontAwesome";
    display: inline-block;
    text-align: center;
    opacity: 1;
}

.wrapp_slider_gall .slick-slider .slick-next:before {
    content: "\f054";
}

.wrapp_slider_gall .slick-slider .slick-prev,
.wrapp_slider_gall .slick-slider .slick-next {
    left: auto;
    bottom: 68px;
    right: 200px;
    border: 2px solid #fff;
    top: auto;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    z-index: 99;
}

.simple_slider .slick-slider .slick-arrow:before {
    color: #ffffff;
    font-size: 1.4rem;
    font-family: "FontAwesome";
    display: inline-block;
    text-align: center;
    opacity: 1;
}

.simple_slider .slick-slider .slick-prev:before {
    content: "\f053";
}

.simple_slider .slick-slider .slick-next:before {
    content: "\f054";
}


.simple_slider .slick-slider .slick-prev {
    left: 20px;
}

.simple_slider .slick-slider .slick-next {
    right: 20px;
}


.wrapp_slider_gall .slick-slider .slick-next {
    left: auto;
    top: auto;
    right: 130px;
}

.wrapp_slider_gall .slick-slider .slick-arrow:hover {
    border: 2px solid #65cbc0;
    background: #65cbc0;
}

.wrapp_team_slider .single_member_img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 500px;
    position: relative;
    background-color: #000;
    font-size: 0;
    line-height: 0;
}

.wrapp_team_slider .single_member_img .about_info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 99;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.wrapp_team_slider .box_social {
    text-align: center;
    display: inline-block;
    width: 100%;
    background: #0860a0;
    padding: 12px;
    /* margin-top: -16px; */
    z-index: 99;
    position: relative;
    top: -2px;
}

.wrapp_team_slider .about_info:hover {
    background: rgba(0, 0, 0, 0.8);
}


.wrapp_team_slider .box_social a,
.single_member_text .box_social a {
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-left: 25px;
    margin-right: 25px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 35px;
    vertical-align: top;
    /*  margin-top: 10px;*/
}

.single_member_text .box_social a {
    color: #000;
    border-color: #000;
    margin-left: 0;
    margin-right: 10px;
}

.wrapp_team_slider .single_member_img .about_info h3 {
    color: #fff;
    margin-bottom: 7px;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 0;
}

.wrapp_team_slider .single_member_img .about_info p {
    margin-bottom: 0;
    color: #65cbc0;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.wrapp_team_slider .single_member_block {
    position: relative;
    height: 100%;
}

.single_member_text {
    padding: 50px 60px;
    background: #fff;
    width: 600px;
}

.single_member_text .box_social {
    margin-bottom: 24px;
    margin-top: 0;
}

.single_member_text img {
    width: 150px;
}

.wpcf7-form h4,
.wpcf7-form .large_text {
    font-weight: 800;
    margin-bottom: 10px;
}

.wpcf7 input[type="submit"] {
    background: #65cbc0;
    color: #fff;
    width: 200px;
    margin: 0 auto;
    padding: 14px;
    display: block;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #003061;
}


.box_contact .wrapp_contact {
    padding: 30px;
    height: 100%;

}

.white {
    background: #fff;
}

.gray_box {
    background: #f3f6f8;
}

.shadow {
    box-shadow: 0px 12px 54px 0px rgba(0, 0, 0, 0.1);
}

.green {
    background: #0860a0;
}

.title_contact {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.box_contact .box_form .input_block input,
.box_contact .box_form .input_block textarea {
    border-color: #e7eaec;
    border-radius: 0;
    color: #000;
}

.box_contact .box_form .input_block textarea {
    height: 176px;
}

.box_contact .green .box_form input,
.box_contact .green .box_form textarea {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.box_contact .box_form .button.green {
    color: #fff;
    background: #65cbc0;
    text-transform: uppercase;
}

.box_contact .box_form .button.green:hover {
    background: #0073a5;
}

.box_contact .green .box_form input[type="submit"] {
    color: #ffffff;
    text-transform: uppercase;
    background: #65cbc0;
    border: 1px solid #65cbc0;
}

.box_contact .green .box_form input[type="submit"]:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #1ca4e0;
}

.box_contact .green .box_form textarea {
    height: 90px;
}

.box_contact .green .title_contact,
.box_contact .green .large_text {
    color: #fff;
}

.box_contact .green .large_text {
    text-align: center;
}

.box_contact .green form .selectric-wrapper span.label,
.box_contact .green form .selectric-wrapper span.select-button i {
    color: #000;
    border-color: #0860a0;
    background: #ffffff;
}

.box_contact .green form .selectric-wrapper .selectric {
    border-color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;

}

.box_contact .green .box_form input::-webkit-input-placeholder,
.box_contact .green .box_form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000;
}

.box_contact .green .box_form .input_block input::-moz-placeholder,
.box_contact .green .box_form .input_block textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
}

.box_contact .green .box_form .input_block input:-ms-input-placeholder,
.box_contact .green .box_form .input_block textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
}

.box_contact .green .box_form .input_block input:-moz-placeholder,
.box_contact .green .box_form .input_block textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #000;
}

.wrapp-new-footer .main_title {
    text-align: center;
    margin-bottom: 50px;
}

.box_contact .white .title_contact {
    margin-bottom: 16px;
}

.general_content h1 {
    font-size: 3.7rem;
    margin-bottom: 0;
    font-weight: 800;
}

.general_content blockquote {
    padding: 15px 0 15px 40px;
    position: relative;
    margin: 20px 0;
}

.general_content blockquote:before {
    background: #100f11;
    width: 3px;
}

.general_content blockquote p {
    font-size: 21px;
    font-weight: 800;
    font-style: initial;
    line-height: 1.2em;
}

.general_content li {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 18px;
}

.general_content ol li {
    list-style: decimal;
    display: list-item;
    list-style-position: inside;
}

.general_content ul li {
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
}

/*.less-text {
    padding-right: 50px;
}*/

.team .intro_team h2 {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.team .intro_team .general_content {
    margin-bottom: 30px;
}

.team .slick-slider .slick-prev,
.team .slick-slider .slick-next {
    background-size: auto;
    background-image: url(images/arrows-slider.png);
    transition: none;
    height: 59px;
    width: 89px;
    z-index: 9;
}

.team .slick-slider .slick-prev {
    left: -10%;
    background-position: -3px 3px;
}

.team .slick-slider .slick-prev:hover {
    background-position: -3px -61px;
}


.team .slick-slider .slick-next {
    right: -10%;
    background-position: -78px 3px;
}

.team .slick-slider .slick-next:hover {
    background-position: -78px -61px;
}

.team .single_member_block {
    margin-left: auto;
    margin-right: auto;
}

.info_above_slider .current_status {
    color: #c0c3c9;
    font-size: 22px;
    position: absolute;
    bottom: 0;
}

.info_above_slider .current_status .current {
    color: #fff;
    font-weight: 800;
    margin-right: 5px;
}

.info_above_slider .current_status .total {
    margin-left: 5px;
}

.container-full {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.slick-slider .slick-dots li.slick-active button {
    background: #9d4785;
}




.team .team_slider .single_member {
    /*width: 33.33%;*/
    margin-bottom: 30px;
}


.fix-button,
.fix-button-red {
    position: fixed;
    bottom: 27px;
    right: 27px;
    z-index: 9999;
    background: #64cbc0;
    color: #fff;
    padding: 12px 30px 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgb(68, 144, 136);
}

.fix-button-red {
    background: #e80303;
    box-shadow: 0 4px 15px rgba(218, 3, 3, 0.61);
    text-align: center;
    padding: 16px 30px 15px;
}

.fix-button:hover {
    background-color: #3ca79b;
}

.fix-button-red:hover {
    background: #ab0404;
    color: #fff;
}

.fix-button-red:hover * {
    color: #fff;
}

.fix-button-red .note-1 {
    font-size: 22px;
    font-weight: 800;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.fix-button-red .note-2 {
    font-size: 14px;
    display: block;
    width: 100%;
}

.fix-button a {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    vertical-align: top;
    font-weight: 700;
    position: relative;
    padding-left: 21px;
}

.fix-button a:before {
    content: "";
    width: 33px;
    height: 19px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 28px;
    background-image: url(images/phone-white.png);
    position: absolute;
    left: -2px;
    top: 5px;
}

.fix-button .note {
    margin-bottom: 0;
    line-height: 1em;
    margin-top: 4px;
    color: #fff;
    text-align: center;

    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}


.popup_services {
    width: 600px;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    position: relative;
}


.popup_services h3 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.popup_services img {
    width: 250px;
    display: block;
    margin: 0 auto 30px auto;
}

.blue_box {
    background: #100f11;
}

.blue_box .title_contact {
    color: #ffffff;
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.main-logo-box {
    text-align: left;
}

.social_info_block {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    text-align: right;
    margin-top: 40px;
}

.contact_item {
    display: inline-block;
    position: relative;
    margin-left: 27px;
    vertical-align: middle;
}

.contact_item:first-child {
    margin-left: 0;
}

.contact_item.contact_item_link a {
    font-size: 16px;
    color: #0860a0;
    font-weight: 700;
}

.contact_item.contact_item_link a:hover {
    color: #65cbc0;
}

.contact_item.app .btnn {
    font-weight: 700;
    text-transform: uppercase;
    color: #0760a0;
    /* letter-spacing: 1px; */
    border: 1px solid #0760a0;
    padding: 2px 2px 1px 2px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.contact_item.app .btnn span {
    border: 1px solid #0760a0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    padding: 3px 6px 1px 6px;
    display: block;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.contact_item.app .btnn:hover span {
    color: #fff;
    background: #0760a0;
}

/*.contact_item.contact_item_link a:before {
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 27px;
    position: relative;
    top: 11px;
    right: 3px;
}

.address a:before {
    background-size: 22px;
    background-image: url(images/location.png);
}

.phone a:before {
    background-image: url(images/phone.png);
}
*/

.contact_item {
    position: relative;
}

.contact_item:after {
    content: "•";
    width: 8px;
    font-size: 19px;
    height: 8px;
    display: inline-block;
    position: absolute;
    right: -16px;
    top: 4px;
    line-height: 14px;
    color: #0760a0;
    z-index: 999;
}

.contact_item.social:after,
.contact_item.app:after {
    content: none;
}

.contact_item.social a {
    /* width: 40px; */
    /* height: 40px; */
    display: inline-block;
    /* -webkit-border-radius: 100px; */
    /*-moz-border-radius: 100px;
    /* border-radius: 100px; */
    vertical-align: top;
    /* background: #65cbc0; */
    color: #0860a0;
    font-size: 19px;
    margin-left: 10px;
    margin-right: 10px;
    top: -3px;
    position: relative;
}

.contact_item.social a:first-child {
    margin-left: 0;
}

.contact_item.social a:hover {
    color: #003061;
}

.contact_item.social a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.no_max_width {
    max-width: none !important;
}

.onload_slider {
    position: relative;
}

.onload_slider .onload_loading {
    min-height: 700px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.onload_slider .onload_loading img {
    margin-top: 150px;
    margin-bottom: 180px;
    width: 100px;
}

.onload_slider .onload_hide {
    opacity: 0;
}

.smile_slider .single-item {
    height: 450px;
}

.thumb .left_img {
    float: left;
    width: 49%;
}

.thumb .right_img {
    float: right;
    width: 49%;
}

.smile_slider_thumb {
    border: 3px solid #fff;
}

.smile_slider {
    background: #fff;
}

.wrapp_first_slider {
    width: 80%;
    margin: 0 auto;
}

.thumb {
    margin-top: 11px;
}

.ba-control-handle {
    background-color: #65cbc0;
}

.box_slider_gallery {
    margin-top: 50px;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    background-image: none !important;
}

.inner_page h1 {
    margin-bottom: 20px;
}

.large_member h3 {
    margin-bottom: 0;
}

.large_member_inner img {
    width: 250px;
}

.team_list .single_member {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.team_list .single_member:last-child {
    border: none;
    padding-bottom: 0;
}

.team_list .single_member .occupation {
    color: #65cbc0;
}

.team_list .large_member_inner p:last-child {
    margin-bottom: 0;
}

.sidebar .title_contact {
    font-size: 27px;
}

.accordion {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

.accordion,
.accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 15px;
    display: inline-block;
    border-bottom: 1px solid #e4e4e4;
    /* background: #333; */
    transition: all linear 0.15s;
    /* color: #fff; */

    color: #003061;
    font-family: 'gilroy', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding-right: 50px;
    position: relative;
}

.accordion-section-title:after {
    content: "+";
    font-size: 20px;
    display: block;
    position: absolute;
    right: 13px;
    top: 16px;
    color: #333333;
    font-family: 'gilroy', sans-serif;
    font-weight: 700;
}


.accordion-section-title.active:after {
    content: "-";
}

.accordion-section-title.active,
.accordion-section-title:hover {
    text-decoration: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

/*----- Section Content -----*/
.accordion-section-content {
    padding: 15px;
    display: none;
}


.box_contact_info {
    padding: 30px;
    background: #f3f6f8;
}

.box_contact_info .medium_title {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
    font-size: 26px;
    text-align: center;
    color: #100f11;
    font-family: 'gilroy', sans-serif;
}

.box_custom_form {
    background: #003061;
    padding: 40px;
}

.box_custom_form .type_row {
    font-size: 0;
    line-height: normal;
    clear: both;
    zoom: 1;
    margin-right: -15px;
    margin-left: -15px;
}

.box_custom_form .type_row:before,
.box_custom_form .type_row:after {
    display: table;
    content: "";
    visibility: hidden;
    height: 0;
}

.box_custom_form .type_col_50,
.box_custom_form .type_col_100 {
    display: inline-block;
    float: left;
    font-size: 1.4rem;
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
}

.box_custom_form .type_col_50.to-right {
    float: right;
}

.box_custom_form .wpcf7 input[type="submit"] {
    float: right;
}

.box_custom_form .wpcf7 input[type="submit"]:hover {
    background: #ffffff;
    color: #003061;
}

.box_custom_form .type_col_100 {
    width: 100%;
}

.box_contact_iframe iframe {
    width: 100%;
    height: 400px;
}

.smile_gallery {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.wrapp_first_slider .slick-slider .slick-prev {
    left: -50px;
}

.wrapp_first_slider .slick-slider .slick-next {
    right: -50px;
}

.wrapp_first_slider .slick-slider .slick-arrow:before {
    content: "\f053";
    color: #c7cad2;
    font-size: 25px;
    font-family: "FontAwesome";
    display: inline-block;
    text-align: center;
    opacity: 1;
}

.wrapp_first_slider .slick-slider .slick-next:before {
    content: "\f054";
}

.wrapp_first_slider .slick-slider .slick-arrow:hover:before {
    color: #65cbc0;
}

.smile_bxslider:not(.slick-slider) {
    height: 300px;
    overflow: hidden;
}

.thumb:not(.slick-slider) {
    height: 100px;
    overflow: hidden;
}

.box_slider_gallery .box_text {
    position: absolute;
    bottom: 5px;
    z-index: 6;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 700;
    width: 100%;
    font-size: 13px;
}

.box_slider_gallery .box_text .text {
    padding: 0 10px;
}

.box_slider_gallery .box_text .text-right {
    float: right;
}

.big_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.team .team_slider {
    text-align: center;
}

.team .team_slider .single_member {
    float: none;
    display: inline-block;
    vertical-align: top;
}

.cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.cover-right {
    background-position: center right;
}

.all-popups {
    max-width: 60%;
    background: #fff;
}

.all-popups .wrapp-hidden-content {
    padding: 10px;
}

.about .box_text .less-text>p {
    color: #6a6b6d;
}

.about_info_text {
    /*padding-left: 30px;*/
}

.about_info_text .doctor-name {
    color: #000000;
}

.about_info_text .doctor-name span {
	display: block;
    color: #35a8a7;
    /*margin-left: 50px;*/
    font-weight: 300;
    font-size: 2.5rem;
}

.single_member_members {
    margin-top: 30px;
}

.about_info_text hr {
    margin-bottom: 13px;
    margin-top: 10px;
}

.about_info_text .general_content p {
    margin-top: 9px;
    margin-bottom: 9px;
}

.team_slider_slider.slick-slider .slick-prev,
.team_slider_slider.slick-slider .slick-next {
    background-image: url(images/arrows.png) !important;
    width: 60px;
}

.team_slider_slider {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.team_slider_slider .single_member_members.small_member {
    width: 33.33%;
}

.team_slider_slider .single_member_members.small_member .single_member_info {
    text-align: center;
    margin-top: 20px;
}

.team_slider_slider .single_member_members.small_member .single_member_info,
.team_slider_slider .single_member_members.small_member .member_left {
    width: 100%;
}

.team .slick-slider .slick-next {
    background-position: -78px 3px;
}

.team .slick-slider .slick-next:hover {
    background-position: -78px -70px;
}

.team .slick-slider .slick-prev {
    background-position: -3px 1px;
}

.team .slick-slider .slick-prev:hover {
    background-position: -6px -70px;
}

.wrapp_team_slider .box_social a:hover,
.single_member_text .box_social a:hover {
    background: #64cbc0;
    border-color: #64cbc0;
}

.input_block.captcha {
    margin-bottom: 10px;
}

.fancybox-button:hover {
    background-color: #0860a0;
}

.fix-button-red i {
    position: relative;
    top: -1px;
    font-size: 17px;
}

#notice h4 {
    margin-bottom: 20px;
}

#notice .general_content li,
#notice .general_content p {
    font-size: 15px;
    line-height: 1.4em;
    margin-bottom: 12px;
}

#notice .general_content ul {

    margin: 20px 0;
}

.fancybox-button:hover {
    background-color: transparent;
}


.single_slide {
    height: 100%;
    width: 100%;
    position: relative;
}

.single_slide a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}

/*
.single_slide a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: rgba(0, 0, 0, 0.45);

} */

.single_slide .cover.before-img {
    width: 100%;
    display: block;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(15px);
    position: absolute;
    left: 0;
}

.single_slide .cover.portrait {
    width: 500px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}


.single_slide .cover {
    height: 750px;
}

.fancybox-content {
    background: #fff !important;
}


.header .menu nav ul li {
    position: relative;
}

.menu .menu-main-menu-container ul.sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 200px;
    background: #fff;
    padding: 30px;
    z-index: 99;
    text-align: left;
    display: none;
}

.menu .menu-main-menu-container li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}

.menu .menu-main-menu-container li.menu-item-has-children>a:before {
    content: "\f078";
    font-family: "Font Awesome 5 Free" !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 7px;
    position: absolute;
    right: -16px;
    top: 5px;
}

.menu .menu-main-menu-container .sub-menu li {
    width: 100%;
    text-align: left;
    margin: 0 !important;
    padding-bottom: 15px;
}

.menu .menu-main-menu-container .sub-menu li:last-child {
    padding-bottom: 0;
}

nav.mobile-menu ul li.menu-item-has-children {
    padding-bottom: 0;
}

nav.mobile-menu ul.sub-menu {
    padding-top: 16px;
    padding-left: 17px;
}

nav.mobile-menu ul.sub-menu li {
    padding-bottom: 12px;
}

nav.mobile-menu ul.sub-menu li:last-child {
    margin-bottom: 0;
    border: none;
}

.fancybox-close-small:hover {
    background: transparent !important;
}

@media (max-width: 1400px) {
    .main_section {
        height: 550px;
    }
}

@media (max-width: 1250px) {
    .main_section {
        height: 500px;
    }
}


@media (max-width: 1100px) {
    .about.cover-right {
        position: relative;
    }

    .about .box_text {
        width: 100%;
    }


    .about.cover-right:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(100, 203, 192, 0.63);
        display: block;
    }

    .about .box_text .less-text>p {
        color: #100f11;
    }

    .wrapp_team_slider .small_member .single_member_img {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .error-page {
        padding: 25px 0;
    }

    .error-page h1 {
        font-size: 30px;
    }

    .error-page h3 {
        font-size: 22px;
    }

    .error-page p {
        font-size: 18px;
    }

    /*.scroll .sticky .infos,*/
    .scroll .sticky-display .infos {
        display: none !important;
    }

    .header .infos ul li:last-child {
        margin-bottom: 0;
    }

    .footer .contact .cont-info-1 h4 {
        margin-bottom: 25px;
    }

    body.scroll .items_mobile {
        display: block;
        float: left;
        min-width: 200px;
        margin-left: 15px;
    }

    .items_mobile img {
        width: 35px;
        float: left;
        margin-right: 10px;
    }

    .items_mobile ul {
        display: inline-block;
        padding-top: 8px;
    }

    .items_mobile ul li {
        float: left;
        text-transform: uppercase;
        font-weight: 600;
        color: #fff;
    }

    .items_mobile ul li a {
        color: #fff;
    }

    .items_mobile ul li::before {
        content: "•";
        top: -1px;
        position: relative;
        margin: 0px 3px;
    }

    .items_mobile ul li:first-child:before {
        content: none;
    }

    .menu-toggle {
        float: left;
    }

    .intro_hero .single-row {
        font-size: 56px;
    }

    .contact_item.social a {
        width: 15px;
        height: 30px;
    }

    .contact_item.social a span {
        height: 30px;
    }

    .contact_item {
        margin-left: 10px;
    }

    .contact_item.contact_item_link a {
        font-size: 14px;
        padding-left: 40px;
        margin-top: 8px;
    }

    .contact_item.contact_item_link a:before {
        width: 29px;
        height: 29px;
        top: 2px;
        left: 3px;
        position: absolute;
        background-size: 22px;
    }

    .contact_item_link {
        margin-top: 2px;
    }

    /*.contact_item.social { 
        margin-top: 10px;
    }
*/
    .contact_item.social a {
        font-size: 15px;
        top: 3px;
    }

    .inner_page {
        width: 60%;
    }

    .sidebar {
        width: 40%;
    }



    .member_left {
        width: 45%;
    }

    .single_member_info {
        width: 55%;
    }

    .about_info_text {
        padding-left: 0;
    }

    .about_info_text .general_content p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .team .slick-slider .slick-prev {
        left: -45px;
    }

    .team .slick-slider .slick-next {
        right: -45px;
    }

    .contact_item.app {
        margin-top: 8px;
    }

    .contact_item.social {
        margin-left: 23px;
    }

    .wrapp_team_slider .small_member .single_member_img {
        height: 300px;
    }

    .about_info_text .doctor-name {
        font-size: 2.3rem;
    }
}


/* == RESPONSIVE == */

@media (max-width: 1450px) {
    .team .slick-slider .slick-next {
        right: -50px;
    }

    .team .slick-slider .slick-prev {
        left: -50px;
    }
}

@media (max-width: 1280px) {
    .home-page .services .title {
        padding: 0;
    }

    .home-page .services .text {
        padding: 0 172px;
    }

    .home-page .about .title h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .home-page .about .subtitle h5 {
        margin-bottom: 30px;
    }

    .home-page .about .content p {
        margin-bottom: 25px;
    }

    .home-page .row_collaborators .article-coll {
        width: 100%;
    }

    .home-page .collaborators .small-content {
        padding: 0 200px;
    }

    .home-page .contact .items ul li,
    .home-page .contact a.address {
        font-size: 17px;
    }

    .home-page .collaborators .ttl span,
    .home-page .collaborators .desc span {
        font-size: 16px;
    }

    .header .menu nav ul li {
        margin: 0px 30px;
    }

    .general_content blockquote p {
        font-size: 20px;
    }

    .general_content blockquote {
        padding: 10px 0 10px 40px;
    }

    /* .less-text {
        padding-right: 0;
    }*/

    .team .container {
        width: 85%;
    }

    .team .slick-slider .slick-next {
        right: -70px;
    }

    .team .slick-slider .slick-prev {
        left: -70px;
    }

    .team .intro_team h2 {
        font-size: 4rem;
        margin-bottom: 30px;
    }

    .wrapp_team_slider .single_member_text {
        padding: 20px 35px;
    }


    .wrapp_team_slider .single_member_img .about_info h3 {
        font-size: 2.7rem;
    }

    .wrapp_team_slider .single_member_img .about_info p {
        font-size: 18px;
    }




    .wrapp_contact .title_contact {
        font-size: 24px;
    }

    .wrapp_boxes .wrapp_box_info p {
        font-size: 19px;
    }

    .wrapp_block_slider .info_above_slider .slider_text h3 {
        font-size: 4rem;
    }

}


@media (max-width: 1220px) {
    .home-page .services .text {
        padding: 0 133px;
    }

    .main_section .app.form_box {
        width: 40%;
    }

    .main_section .intro_hero {
        width: 60%;
    }

    .about-note {
        font-size: 14px;
    }

    .full-services .single_service {
        height: 250px;
    }

    .full-services .single_service span {
        font-size: 25px;
    }

    .contact_item:after {
        right: -18px;
    }

    .contact_item.app {
        margin-left: 8px;
    }
}


@media (max-width: 1190px) {
    .general_content h1 {
        font-size: 3.2rem;
    }

    .general_content blockquote p {
        font-size: 17px;
    }

    .general_content blockquote {
        padding: 10px 0 10px 20px;
    }

    .general_content p {
        font-size: 15px;
        line-height: 21px;
    }
}

@media (max-width: 1086px) {
    .social_info_block {
        margin-top: 24px;
    }
}

@media (max-width: 1024px) {


    .services-wrap {
        margin-top: 45px;
    }

    .home-page .services-wrap .x4 {
        width: 50%;
    }

    .home-page .services-wrap div.clear {
        display: none;
    }

    a.service-title {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .service-content {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .service-content p {
        margin-bottom: 15px;
    }

    .home-page .contact .title h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .home-page .contact .items ul {
        margin-bottom: 25px;
    }

    .home-page .contact .items ul li {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .home-page .contact .divider {
        border: 2px solid #fff;
        margin: 50px 0;
    }

    .home-page .contact .box {
        padding: 25px;
    }

    .home-page .contact .box h5 {
        font-size: 22px;
        margin: 0 auto 20px;
    }


    .home-page .slider-wrap {
        padding: 50px 0;
    }

    .home-page .slider-wrap .title h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .home-page .slider .slide {
        height: 571px;
        margin: 0;
    }

    .home-page .slider .left-arrow,
    .home-page .slider .right-arrow {
        width: 45px;
        height: 25px;
    }

    .home-page .slider .left-arrow {
        left: 35px;
    }

    .home-page .slider .left-arrow:hover {
        left: 30px;
    }

    .home-page .slider .right-arrow {
        right: 35px;
    }

    .home-page .slider .right-arrow:hover {
        right: 30px;
    }

    .slick-slider .slick-dots {
        bottom: 25px !important;
    }

    .home-page .slider-wrap .subtitle {
        margin: 25px auto 0;
    }

    .services-wrap .clear {
        display: none;
    }

    .home-page .about .the-content p:last-child {
        margin-bottom: 0;
    }

    .home-page .about .title h3 {
        margin-top: 0;
    }

    .home-page .collaborators .socials ul li a {
        width: 45px;
        height: 45px;
        line-height: 44px;
        font-size: 19px !important;
    }

    .home-page .collaborators .img .img-bg {
        height: 254px;
        margin-bottom: 27px;
    }

    .services-wrap .cell .service-single {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page .contact .items ul li:before {
        top: 4px;
    }

    .header .infos ul li {
        text-align: center;
    }

    .wrapp_intro_hero {
        height: auto;
    }

    .wrapp_intro_hero h2 {
        top: 0;
        transform: none;
        text-align: center;
    }

    .main_section .intro_hero,
    .main_section .app.form_box {
        width: 100%;
    }

    .about .box_text,
    .about .box_img {
        width: 100%;
    }

    .about .box_text {
        top: 0;
        transform: none;
        margin-bottom: 30px;
    }

    .about .box_img img {
        width: 100%;
    }

    .padd_sec {
        padding: 40px 0 50px 0;
    }


    .wrapp-new-footer .main_title {
        margin-bottom: 30px;
    }

    .map-box .box_contact {
        width: 50%;
    }

    .map-box .flex .box_contact:last-child {
        width: 100%;
        margin-top: 30px;
    }

    .tabs_blocks li a {
        font-size: 15px;
        padding: 18px 42px 18px 26px;
    }

    .tabs_blocks li a:after {
        right: 15px;
        top: 19px;
    }

    .download .buttons_download .button {
        font-size: 19px;
        min-height: 94px;
        padding: 20px 30px 20px 70px;
    }

    .download .buttons_download .button:before {
        background-size: 9px;
        width: 35px;
        height: 35px;
        left: 23px;
        top: 25px;
    }

    .section_intro {
        margin-bottom: 20px;
    }

    .wrapp_boxes .wrapp_box_info {
        min-height: 170px;
    }

    .contact_item.contact_item_link a {
        padding-left: 15px;
    }

    .contact_item:after {
        top: 10px;
    }

}


@media (max-width: 990px) {
    .single_member_block .general_content p:last-child {
        margin-bottom: 50px;
    }

    .team .container {
        width: 90%;
    }

    .container-full {
        width: 100%;
    }

    .slider {
        padding: 0;
    }

    .slider .slider_text {
        width: 100%;
    }

    .slider_gall .single_slide,
    .wrapp_slider_gall,
    .single_slide .cover {
        height: 450px;
    }

    .wrapp_block_slider .info_above_slider {
        padding: 100px 15px;

    }

    .wrapp_team_slider .single_member_img .about_info h3 {
        font-size: 2.2rem;
    }

    .main_section {
        height: 450px;
    }

    .social_info_block {
        margin-top: 14px;
    }
}

@media (max-width: 900px) {
    .testimonials.slick-slider .slick-dots {
        bottom: -10px !important;
    }

    .footer-2 .col_50 {
        text-align: center !important;
        width: 100%;
    }

    .footer-2 .col_50 p {
        text-align: center !important;
        font-size: 13px;
    }

    .footer-1 {
        padding: 30px 0;
    }

    .tabs_section .tabs_blocks,
    .tabs_section .tabs_content {
        width: 100%;
    }

    .tab_content.padd40 {
        padding: 30px;
    }

    .full-services .single_service {
        width: 50%;
    }

    .team .team_slider .single_member {
        width: 50%;
    }

    .inner_page {
        margin-bottom: 30px;
        width: 100%;
    }

    .sidebar {
        width: 100%;
    }

    .all-popups .wrapp-hidden-content {
        padding: 0;
    }

    .wrapp_team_slider .small_member .single_member_img {
        height: 250px;
    }

    .team_slider_slider .single_member_members.small_member .single_member_info {
        margin-top: 0;
    }

    .about_info_text .small_member .doctor-name {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {
    .general_content p {
        font-size: 15px;
        line-height: 1.6em;
    }

    .home-page .hero {
        height: 394px;
    }

    .home-page .hero .large_head {
        font-size: 32px;
    }

    .footer .infos .socials ul li a {
        width: 40px;
        height: 40px;
        line-height: 36px;
    }


    .wrapp-content-the-aswer {
        padding: 5px;
    }

    .burger {
        padding: 0;
    }

    .ondesktop {
        display: none !important;
    }

    .onmobile {
        display: block;
    }

    .home-page .hero.onmobile {
        display: flex;
    }


    .header .menu .burger {
        padding-right: 0;
    }

    .intro_hero .single-row {
        font-size: 35px;
    }

    .intro_hero h2 {
        margin-bottom: 30px;
    }

    .main_section {
        padding-top: 30px;
    }

    .wrapp_boxes .wrapp_box_info p {
        font-size: 18px;
        line-height: 1.2em;
    }

    .wrapp_boxes .box_info {
        width: 100%;
        margin-bottom: 50px;
    }

    .wrapp_boxes .box_info:last-child {
        margin-bottom: 0;
    }

    .general_content h1 {
        font-size: 3rem;
    }

    .general_content blockquote {
        margin: 20px 0;
    }

    .general_content blockquote p {
        font-size: 20px;
    }

    .wrapp_app_form .title_contact {
        font-size: 20px;
    }

    .wrapp_app_form {
        padding: 26px;
    }

    .team .intro_team h2 {
        font-size: 3.4rem;
        margin-bottom: 15px;
    }

    .footer-1 .color_logo {
        margin-bottom: 10px;
    }

    /*.footer-1 img {
        width: 150px;
    }*/

    .footer-1 .menu_box_items {
        margin-bottom: 10px;
    }

    .wrapper-top-footer-left,
    .wrapp-top-footer-right {
        width: 100%;

    }

    .wrapp-top-footer-right {
        padding-left: 0;
    }

    .wrapper-top-footer-left {
        margin-bottom: 30px;
    }

    .wrapp-top-footer-right iframe {
        height: 250px;
    }

    .wrapper-top-footer-left .large_title {
        font-size: 25px;
    }

    .wrapper-top-footer-left h6 {
        font-size: 17px;
    }

    .wrapper-top-footer-left {
        padding: 24px;
    }

    .map-box .flex .box_contact {
        width: 100%;
        margin-top: 30px;
    }

    .map-box .flex .box_contact:first-child {
        margin-top: 0;
    }

    .wrapp-new-footer .main_title {
        margin-bottom: 15px;
    }

    .wrapp-top-footer {
        margin-bottom: 0;
    }

    .content_map {
        margin-top: 30px;
    }

    .tabs_blocks li a {
        border-bottom: 1px solid #65cbc0;
        padding: 14px 42px 12px 26px;
    }

    .tabs_blocks li:last-child a {
        border-bottom: none;
    }

    .tabs_blocks li {
        margin-bottom: 0;
    }

    .tabs_blocks li a:after {
        top: 16px;
    }

    .tabs_section .section_intro {
        margin-bottom: 10px;
    }

    .wrapp_block_slider .info_above_slider {
        padding: 30px 0;
    }

    .wrapp_block_slider .info_above_slider .slider_text p {
        font-size: 16px;
    }

    .slider_gall .single_slide,
    .wrapp_slider_gall,
    .single_slide .cover {
        height: 350px;
    }

    .info_above_slider .current_status {
        font-size: 16px;
    }

    .wrapp_slider_gall .slick-slider .slick-prev,
    .wrapp_slider_gall .slick-slider .slick-next {
        width: 40px;
        height: 40px;
        bottom: 37px;
    }

    .info_above_slider .current_status {
        bottom: 37px;
    }

    .wrapp_slider_gall .slick-slider .slick-arrow:before {
        font-size: 1.2rem;
    }

    .wrapp_slider_gall .slick-slider .slick-prev {
        right: 100px;
    }

    .info_above_slider .current_status {
        bottom: 47px;
    }

    .header .socials a {
        line-height: 27px;
    }

    .wrapp_boxes .wrapp_box_info {
        min-height: 120px;
    }

    .general_content iframe {
        width: 100%;
    }

    .fix-button,
    .fix-button-red {
        width: 270px;
        right: calc((100% - 270px)/2);
    }

    .fix-button .note {
        font-size: 11px;
    }


    .popup_services {
        width: 90%;
    }

    .wrapp_slider_gall .slick-slider .slick-next {
        right: 40px;
    }

    .wrapp_block_slider .info_above_slider .slider_text h3 {
        font-size: 3.4rem;
    }

    /*.contact_item.social {
        position: absolute;
        top: 47px;
        right: 0;
        z-index: 9999;
    }*/

    /*.contact_item.social a {
        background: #2d2622;
    }*/
    .main_section {
        height: 350px;
    }

    .contact_item_link {
        width: 100%;
    }

    /*.contact_item.contact_item_link a {
        position: relative;
    }

    .contact_item.contact_item_link a:before {
        top: -10px;
    }*/

    .contact_item:after {
        content: none;
    }

    /*.contact_item.social {
        top: 53px;
    }*/

    .main-logo-box a {
        margin-top: 7px;
    }

    .box_contact_iframe iframe {
        height: 250px;
    }

    .box_custom_form {
        padding: 27px;
    }

    .box_custom_form .type_col_50,
    .box_custom_form .type_col_100 {
        width: 100%;
    }

    .single_doc a,
    .accordion-section-title {
        font-size: 16px;
    }

    .box_slider_gallery {
        margin-top: 10px;
    }

    .single_member_members .member_left {
        width: 60%;
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }

    .single_member_info {
        width: 100%;
        text-align: center;
    }

    .wrapp_team_slider .single_member_img {
        height: 350px;
    }

    .about_info_text .doctor-name span {
        margin-left: 10px;
        font-size: 2rem;
    }

    .wrapp_team_slider .box_social a,
    .single_member_text .box_social a {
        margin-left: 5px;
        margin-right: 5px;
    }

    .team_slider_slider.slick-slider .slick-dots {
        bottom: 5px !important;
    }

    .team_slider_slider.slick-slider .slick-dots li.slick-active button {
        background: #64cbc0;
    }

    .social_info_block {
        margin-top: 0;
    }

    header .logo.main-logo-box {
        width: 30%;
    }

    header .social_info {
        width: 70%;
    }
}

@media (max-width: 640px) {
    .team .team_slider .single_member {
        width: 100%;
    }

    .team .team_slider .single_member:last-child {
        margin-bottom: 0;
    }

    .main_section {
        height: 250px;
    }

    .box_custom_form .wpcf7 input[type="submit"] {
        width: 100%;
    }

    .wrapp_slider_gall .slick-slider .slick-prev,
    .wrapp_slider_gall .slick-slider .slick-next {
        bottom: 10px;
    }

    .info_above_slider .current_status {
        bottom: 10px;
    }

    .wrapp_block_slider .info_above_slider .slider_text h3 {
        font-size: 2.7rem;
        margin-bottom: 10px;
    }

    .fix-button {
        bottom: 13px;
    }

    .team_slider_slider .single_member_members.small_member {
        width: 50%;
    }

    .wrapp_team_slider .small_member .single_member_img {
        height: 250px;
        width: 200px;
        margin: 0 auto;
    }

    .about_info_text .doctor-name {
        font-size: 2rem;
    }
}


@media (max-width: 560px) {
    .general_content img {
        width: 100%;
        height: auto;
    }

    .items_mobile img {
        width: 28px;
        margin-right: 8px;
        margin-top: 3px;
    }

    .items_mobile ul li {
        font-size: 13px;
    }

    .items_mobile ul {
        padding-top: 3px;
    }

    .button-menu-line {
        width: 23px;
    }

    .slider .slider_text {
        width: 100%;
    }

    .full-services .single_service span {
        font-size: 20px;
    }

    .full-services .single_service {
        height: 200px;
    }

    .wrapp_contact .title_contact {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .box_contact .wrapp_contact {
        padding: 25px;
    }

    .wrapp-new-footer .medium_title {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .contact_item.contact_item_link a {
        font-size: 12px;
    }

    .main-logo-box {
        width: 40%;
    }

    .social_info {
        width: 60%;
    }

    .main-logo-box a {
        margin-top: 7px;
    }

    .wrapp_first_slider .slick-slider .slick-next {
        right: -30px;
    }

    .wrapp_first_slider .slick-slider .slick-prev {
        left: -30px;
    }

    .wrapp_first_slider .slick-slider .slick-arrow:before {
        font-size: 15px;
    }

    .footer-1 .menu_box_items li {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .footer-1 .menu_box_items li a:before {
        top: 1px;
    }

    .thumb {
        margin-top: 0;
    }

    .single_member_members .member_left {
        width: 100%;
    }

    .single_member_members {
        margin-top: 0;
    }

    .fix-button-red .note-2 {
        font-size: 11px;
    }

    .fix-button-red .note-1 {
        font-size: 19px;
    }

    .fix-button-red i {
        font-size: 13px;
    }

    body .fancybox-content {
        padding: 30px !important;
    }

    #notice .general_content li,
    #notice .general_content p {
        font-size: 14px;
    }

    .general_content h2 {
        font-size: 2.7rem;
    }

    .general_content h3 {
        font-size: 2.2rem;
    }

    .general_content li {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

@media (max-width: 520px) {
    .contact_item.social {
        display: none;
    }
}

@media (max-width: 480px) {

    .home-page .services .title h1,
    .home-page .services .title .title_mobile_h1 {
        font-size: 20px;
    }

    .time_schedule_single {
        font-size: 16px;
    }

    .home-page .hero {
        height: 294px;
    }

    .time_schedule_single_hour {
        width: 200px;
    }

    header .logo.main-logo-box,
    header .social_info {
        width: 100%;
    }

    .main-logo-box img {
        width: 100px;
    }

    .header .top {
        padding: 7px 0;
    }

    .contact_item {
        margin-left: 0;
    }

    .contact_item.contact_item_link a {
        padding-left: 0;
    }

    .contact_item.app .btnn {
        font-size: 12px;
    }

    .team_slider_slider .single_member_members.small_member {
        width: 100%;
    }
}

@media (max-width: 475px) {
    .home-page .appointment-form .half {
        width: 100%;
    }

    .home-page .appointment-form .half.left,
    .home-page .appointment-form .half.right {
        float: none;
    }

    .home-page .appointment-form .half input,
    .home-page .appointment-form .half select {
        float: none !important;
        width: 100% !important;
    }

    .home-page .about .photo {
        height: 533px;
    }

    .home-page .slider .slide {
        height: 300px;
    }

    .slider.slick-slider .slick-dots {
        bottom: 22px !important;
    }

    .footer .contact .selectric-wrapper,
    .footer .contact .custom-selector-select .selectric-wrapper {
        width: 100%;
    }

    .home-page .contact .captcha,
    .footer .form .captcha {
        overflow: hidden;
    }

}

@media (max-width: 425px) {
    .home-page .hero {
        height: 265px;
    }

    .home-page .hero .large_head {
        font-size: 28px;
    }

    .home-page .about .photo {
        height: 433px;
    }

    .items_mobile ul li {
        font-size: 12px;
    }


}

@media (max-width: 400px) {
    .items_mobile img {
        margin-right: 4px;
    }

    body.scroll .items_mobile {
        margin-left: 5px;
    }

    .button-menu-line,
    .menu-toggle {
        width: 20px;
    }

    .items_mobile img {
        width: 23px;
        margin-top: 6px;
    }

    .items_mobile ul li {
        letter-spacing: -0.2px;
    }

    .time_schedule_single {
        font-size: 14px;
    }

    .time_schedule_single_hour {
        width: 171px;
    }
}



/* 12/04/2018 */

@media (max-width: 560px) {
    .download .button_download {
        margin-bottom: 10px;
        width: 100%;
    }

    .download .button_download:last-child {
        margin-bottom: 0;
    }

    .download .buttons_download .button {
        width: 100%;
        font-size: 16px;
        min-height: 67px;
        padding: 10px 30px 10px 70px;
    }

    .download .buttons_download .button:before {
        left: 18px;
        top: 13px;
    }
}

@media (max-width: 475px) {
    a.service-title {
        font-size: 16px;
    }

    .the-answer {
        max-width: 95%;
        padding: 25px;
    }

    .the-answer .title {
        text-align: left;
    }

    .the-answer h4 {
        font-size: 18px;
    }

    .the-answer p {
        text-align: left;
        font-size: 16px;
        line-height: 28px;
    }

    .contact .appointment-form input[type="submit"],
    .footer .form input[type="submit"] {
        width: 100%;
        float: none;
    }

    .footer .contact .right-content select#pick-category {
        min-width: 100%;
    }

    .home-page .contact .box-appointment .box {
        padding: 28px 23px;
    }

    form .selectric-wrapper {
        width: 100%;
        margin-bottom: 8px;
    }

    .footer .questions ul li a {
        line-height: 28px;
        font-size: 15px;
    }



}

@media (max-width: 425px) {
    .slick-slider .slick-dots li {
        margin: 0 3px;
    }

    .home-page .collaborators .img {
        width: 80%;
    }

    .social_info,
    .main-logo-box {
        width: 100%;
        text-align: center;
    }

    .social_info_block {
        text-align: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 400px) {
    .time_schedule_single_day {
        width: 90px;
    }
}

@media (max-width: 375px) {

    .title h3,
    .box h5 {
        font-size: 20px;
    }

    .home-page .about .subtitle h5 {
        font-size: 20px;
    }

}

@media (max-width: 380px) {
    .items_mobile ul li {
        letter-spacing: -0.3px;
        font-size: 11px;
    }
}

@media (max-width: 350px) {
    .items_mobile img {
        display: none;
    }
}

body .picker__select--month,
body .picker__select--year {
    padding: 0;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    color: #fff;
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    /* Green */
    background: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    /* Red */
    background: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
    /* Orange */
    background: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900;
    /* Yellow */
    background: #ffb900;
}

.menu .menu-main-menu-container ul.sub-menu {
	column-count: 2;
  width: 500px;  
}

/*
.menu .menu-main-menu-container .sub-menu li {
	padding: 15px 15px 0px 15px;
}
*/

.menu .menu-main-menu-container ul.sub-menu li a {
	color: #003061;
}


/* mobile menu dropdown */
@media(max-width: 1024px) {
.sub-menu {
  display: none;
  list-style-type: none;
  padding-left: 20px; /* Add some indent to sub-menu items */
}

/* Style for the open state */
.sub-menu.open {
  display: block;
}

/* Optionally, add some styling to indicate the parent items */
.menu-item-has-children > a {
  cursor: pointer;
  position: relative;
}

/* Add an indicator for menu items with children (optional) */
.menu-item-has-children > a::after {
  content: '▼';
    position: absolute;
    right: -12px;
    font-size: 10px;
    top: 3px;
}

.menu-item-has-children > a.open::after {
  content: '▲'; /* Up arrow */
}
}
/* end mobile menu dropdown */

.container-ohs .wrapp-top-footer-right,
.container-ohs .wrapp-top-footer-right iframe {
	height: 100%;
}

@media(max-width: 900px) {
  .container-ohs .wrapp-top-footer-right iframe {
  	min-height: 400px;
  }
}

.menu .container {
	max-width: 100%;
	width: 100%;
}

.reviews {
margin: auto;
}

.wpcf7-turnstile iframe {
	width: 100% !important;
}

.input_block.captcha iframe {
	width: 100% !important;
}

.turnstile-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-wrapper iframe,
.turnstile-wrapper > div {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}

iframe[src*="challenges.cloudflare.com"] {
  width: 100% !important;
  min-width: 0 !important;
}


/* Blog */
.section-blog {
   padding-bottom: 60px;
}

.section .container-fluid {
   max-width: 90%;
	width: 100%;
	margin: auto;
}

h2.windy-blue {
   color: #0860a0;
	font-size: 4.7rem;
    font-weight: 700;
    margin-bottom: 10px;
	font-size: 4.7rem;
}

.h2-main-blog {
   font-size: 3rem !important;
}

.section-blog .accordion-button {
   color: #0860a0;
}

.section-blog .accordion-button:hover {
   background: #00406f;
}

.section-blog .accordion-button:hover h3 {
   	color: #fff;
}

.section-faq .accordion-button:not(.collapsed) {
   background: #00406f;
}

.section-faq .accordion-button:not(.collapsed) h3 {
   color: #fff;
}

.container.container-faq {
   max-width: 900px;
	margin: auto;
}

.section-blog .windy-blue {
   color: #0860a0;
}

.toc {
   border: 1px solid #0860a0;
	padding: 10px;
}

.chapters {
       align-items: center;
    gap: 10px;
	
}

.chapter-lead,
.chapter-lead span {
   color: #0860a0;
}

.btn-chapters {
   font-size: 15px !important;
	background: transparent;
}

.btn-chapters:hover {
   background: transparent;
	text-decoration: underline;
}

.breadcrumbs,
.post-date {
   font-size: 14px;
}

.breadcrumbs {
   padding-bottom: 60px;
}

.breadcrumbs a {
   color: #0860a0;
	font-weight: bold;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
   color: #100f11;
	font-size: 15px;
}

.section-blog article p a {
   color: #100f11 !important;
    font-size: calc(1.275rem + .3vw);
	margin-top: 10px;
}

.lwptoc {
   font-size: 15px;
}

.container-faq .accordion {
   margin-top: 0;
}

.header-title {
   color: #0860a0;
	font-size: 5rem;
	font-weight: bold;
	padding: 0px 15px;
}

@media(max-width: 768px) {
	.section-blog .accordion-button {
	   padding: 32px 10px;
	}
	
	h2.windy-blue {
	   font-size: 3rem;
	}
	
	.header-title {
	   font-size: 3.8rem;
	}
}


.more-btn {
	display: flex;
	width: fit-content;
	color: #fff;
	background: #65cbc0;
	font-size: 16px;
    font-weight: 600;
	padding: 10px 14px;
	border-radius: 3px;
	margin: auto;
    margin-top: 40px;
	transition: 0.2s;
}

.more-btn:hover {
	color: #fff;
	text-decoration: none;
	box-shadow: 0px 0px 10px 0px lightgray;
}


.accordion .card-header {
	background-color: #0860a0;
}

.accordion .card-header button {
	width: 100%;
	background-color: #0860a0;
}

.accordion .card-header button:hover,
.accordion .card-header button:focus{
	background-color: transparent;
	text-decoration: none;
}

.accordion .card-header button h3 {
	color: #fff;
	text-align: left;
}

    