@font-face {
    font-family: 'Avenir Rom';
    src: url(../fonts/avenir-roman.ttf);
}

@font-face {
    font-family: 'antipasto reg';
    src: url(../fonts/Antipasto_regular.otf);
}

@font-face {
    font-family: 'avenir med';
    src: url(../fonts/AvenirNext-Medium.ttf);
}

@font-face {
    font-family: 'avenir reg';
    src: url(../fonts/avenir-next-regular.ttf);
}

.btn-primary {
    font-family: "avenir med";
    font-size: 14px;
    color: #ffffff;
    background: #32d9c3;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-primary:hover {
    color: #32d9c3;
    border: 1px solid #32d9c3;
    background: transparent;
    text-decoration: none;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-default {
    font-family: "avenir med";
    font-size: 14px;
    color: #ffffff;
    background: #6e7c7c;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-default:hover {
    color: #6e7c7c;
    border: 1px solid #6e7c7c;
    background: transparent;
    text-decoration: none;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-info {
    font-family: "avenir med";
    font-size: 14px;
    color: #ffffff;
    background: #D3D3D3;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-info:hover {
    color: #D3D3D3;
    border: 1px solid #D3D3D3;
    background: transparent;
    text-decoration: none;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

* {
    margin: 0;
    padding: 0;
}

.header {
    height: 60px;
    width: 100%;
    background: #ffffff;

}

.header_content {
    height: 59px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 0px 15.52px 2px rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    z-index: 9999;
}

.header_middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 960px;
    height: 100%;
    margin: 0 auto;
}

body {
    overflow-x: hidden;
    background: #FFFFFF;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    margin: 0;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    font-family: 'Avenir Rom';
    font-size: 12px;
    color: #6e7c7c;
    font-weight: 400;
    position: relative;
    padding: 22px 0;
    margin-right: 23px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: #32d9c3;
    height: 5px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

nav ul li a:hover:after {
    width: 100%;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.active:after {
    width: 100%;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

nav ul li a:hover {
    color: #5d6868;
    text-decoration: none;
}

.sign_in {
    font-size: 12px;
    padding: 6px 16px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.mobile_menu {
    position: fixed;
    z-index: 999;
    right: -300px;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 250px;
    background: linear-gradient(to left top, #32d9c3, #85e0d4, #dffffb, #ffffff);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    overflow-y: auto;
}

.mobile_menu ul {
    list-style: none;
    margin: 40px 0 0 0px;
    float: left;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.mobile_menu ul li a {
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    font-family: 'Avenir Rom';
    font-size: 15px;
    color: #6e7c7c;
    font-weight: 400;
    padding: 2px 0px !important;
    position: relative;
}

.mobile_menu ul li a:hover {
    color: #32d9c3;
    text-decoration: none;
    /* padding: 1px 0 0 0; */
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    background: none;
    text-decoration: underline;
}

.mobile_menu ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    background: #32d9c3;
    width: 0;
    height: 1px;
}

.mobile_menu ul li a:hover:before {
    /* width: 10px; */
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}

.mobile_menu ul li {
    margin-bottom: 0;
}

.open {
    right: 0;
}

#ani-6.menu.open .top-bar {
    top: 7px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
}

#ani-6.menu.open .middle-bar {
    opacity: 0;
    transition: .3s ease all;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -ms-transition: .3s ease all;
    -o-transition: .3s ease all;

}

#ani-6.menu.open .bottom-bar {
    top: 7px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
}

.menu {
    height: 25px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    position: relative;
    display: none;
}

.mobile_icon {
    height: 25px;
    margin-top: 4px;
}

.top-bar {
    top: 0px;
}

.middle-bar {
    top: 7px;
    opacity: 1;
}

.bottom-bar {
    top: 14px;
}

.icon-bar {
    position: absolute;
    height: 3px;
    background-color: #32d9c3;
    width: 30px;
    display: block;
    border-radius: 2px;
    margin-top: 4px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
}

.banner {
    width: 100%;
    height: 600px;
    background: url("../images/main-image.png") center top no-repeat;
    background-size: cover;
    display: inline-block;
}

.banner_text {
    margin-top: 117px;
    margin-left: 174px;
}

.banner_text h1 {
    font-family: "antipasto reg";
    font-size: 48px;
    color: #6e7c7c;
    position: relative;
    margin-bottom: 26px;
    letter-spacing: 4px;
}

.banner_text h1 span {
    font-size: 15px;
    position: absolute;
    top: 11px;
}

.banner_text p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 49px;
}

.banner_text a {
    padding: 8px 35px;
}

.about_left {
    width: 50%;
}

.about_img {
    width: 100%;
    height: 445px;
    overflow: hidden;
}

.about_img img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 140%;
}

.about_right {
    width: 50%;
}

.about_text {
    width: 54%;
    margin: 14px 0 0 120px;
}

.title {
    font-family: "antipasto reg";
    font-size: 48px;
    color: #6e7c7c;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.about_text p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 43px;
    line-height: 27px;
}

.about_text a {
    padding: 10px 24px;
}

#about_description {
    width: 100%;
    margin-bottom: 180px;
}

#about_us {
    width: 100%;
    display: flex;
    padding: 100px 0;
}

.about_blocks {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.about_block {
    width: 330px;
    position: relative;
    padding: 0 50px;
}

.about_block:last-child:after {
    display: none;
}

.about_block:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 3px;
    height: 140px;
    background: #f1f1f1;
    right: 0;
}

.about_block img {
    margin: 0 auto 30px;
    display: block;
}

.about_block h6 {
    font-family: "antipasto reg";
    font-size: 30px;
    color: #6e7c7c;
    text-align: center;
    margin-bottom: 20px;
    word-spacing: 3px;
    letter-spacing: 1px;
}

.about_block p {
    font-family: "avenir reg";
    font-size: 14px;
    color: #6e7c7c;
    text-align: center;
}

.sign_up_block {
    width: 51%;
    position: absolute;
    box-shadow: 0px 0px 15.52px 0.48px rgba(0, 0, 0, 0.36);
}

#doc_pat_sign {
    position: relative;
    width: 100%;
    height: 425px;
}

#doctor_sign {
    padding: 56px 122px 83px 178px;
    z-index: 5;
    left: 0;
    top: 35px;
    background: #6e7c7c;
}

#patient_sign {
    padding: 38px 181px 60px 133px;
    z-index: 55;
    right: 0;
    top: 0;
    background: #32d9c3;
}

#patient_sign .btn_green {
    background: #6e7c7c;
}

#patient_sign .btn_green:hover {
    background: transparent;
    border: 1px solid #6e7c7c;
    color: #6e7c7c;
}

.sign_up_block h3 {
    font-family: "antipasto reg";
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.sign_up_block p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 34px;
}

.sign_up_block a {
    padding: 9px 41px;
    font-family: "avenir med";
}

#blog {
    width: 100%;
    height: 643px;
    background: url("../images/blog_bg.png") center center no-repeat;
    background-size: cover;
    position: relative;
}

.blog_text {
    width: 50%;
    position: relative;
    left: 50%;
    display:  inline-block;
}

.blog_middle {
    width: 360px;
    margin-top: 71px;
    margin-left: 120px;
}

.blog_text a {
    padding: 10px 25px;
    border-radius: 8px;
}

.blog_text p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 44px;
    padding-top: 12px;
    line-height: 27px;
}

footer {
    background: #6e7c7c;
}

.footer_middle {
    width: 970px;
    margin: 0 auto;
}

.get_in_touch p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #fefefe;
    margin: 0;
}

.get_in_touch i {
    color: #32d9c3;
    font-size: 22px;
    margin-right: 15px;
}

.tel, .contact_mail {
    display: flex;
    align-items: center;
}

.get_in_touch h5 {
    font-family: "antipasto reg";
    font-size: 30px;
    color: #ffffff;
    margin: 0 45px 0 0;
    letter-spacing: 2px;
}

.get_in_touch {
    display: flex;
    align-items: center;
}

.contact_mail {
    margin-left: 25px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    padding: 48px 0;
    border-bottom: 1px solid #a8b0b0;
}

.footer_social {
    display: flex;
    align-items: center;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.footer_social i {
    color: #ffffff;
    font-size: 20px;
}

.footer_social a:first-child {
    margin: 0;
}

.footer_social i:hover {
    color: #32d9c3;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.footer_social a {
    margin-left: 30px;
}

.footer_bottom {
    padding: 15px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    display: flex;
}

.copyright ul {
    display: flex;
    align-items: center;
    margin: 0;
    height: 20px;
}

.copyright ul li {
    list-style: none;
}

.copyright ul li a {
    font-size: 12px;
    font-family: "avenir reg";
    color: #fefefe;
    text-decoration: underline;
    margin-left: 15px;
}

.copyright ul li a:hover {
    text-decoration: none;
}

.copyright p {
    font-size: 12px;
    font-family: "avenir reg";
    color: #fefefe;
    margin: 0;
    padding-right: 15px;
    border-right: 1px solid #fefefe;
    height: 20px;
}

.contacts {
    display: flex;
}

/* About_page*/
.about_banner_text {
    margin-left: 180px;
    margin-top: 45px;
}

.about_banner {
    background: url("../images/about_banner_bg.png") top right no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
    margin-bottom: 60px;
    display:  inline-block;
}

.about_banner .about_banner_text a {
    font-family: "avenir reg";
    font-size: 14px;
    color: #2ed9c3;
    position: relative;
    padding-left: 30px;
    text-decoration: none;
}

.about_banner_text h2 {
    font-family: "antipasto reg";
    font-size: 48px;
    color: #6e7c7c;
    margin-top: 10px;
}

.about_banner .about_banner_text a:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: #2ed9c3;
    left: 0;
    top: 50%;
}

.line_height {
    width: 100%;
    height: 30px;
}

section.doctor_section {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 0;
    margin-bottom: 150px;
}

.patient_section {
    width: 100%;
    display: flex;
    margin: 0 0 80px;
}

.questions {
    padding: 85px 0;
    width: 100%;
    background: #32d9c3;
}

.question_block {
    width: 75%;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 37px;
}

.question_block p {
    font-family: "antipasto reg";
    font-size: 27px;
    color: #6e7c7c;
    margin: 0;
}

.question_block a {
    padding: 10px 15px;
}

/* Join page*/
.Join {
    background: url("../images/join_bg.png") right top no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}

section.twm {
    width: 100%;
    display: flex;
    margin-bottom: 100px;
}

.twm_left {
    width: 50%;
    position: relative;
}

.vector_img {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 20s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

.twm_right {
    width: 50%;
    text-align: left;
}

.twm_connection {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
}

.vector_img {
    background: url("../images/vector_img.png") center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 50px;
}

.tvm_logo {
    width: 260px;
    margin-bottom: 45px;
}

.tvm_logo img {
    width: 100%;
    height: auto;
}

.twm_right p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 50px;
}

.twm_right {
    padding-right: 130px;
}

.twm_right ul li {
    font-family: "antipasto reg";
    font-size: 16px;
    color: #6e7c7c;
    list-style: none;
    background: url("../images/check_img.png") left center no-repeat;
    padding-left: 50px;
    width: 49%;
    display: inline-block;
    word-spacing: 2px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Locations page*/
.sign_block a {
    padding: 10px 30px;
}

.locations {
    background: url("../images/locations_bg.png") center center no-repeat;
    background-size: cover;
}

.articles p {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 30px;
}

.articles {
    margin-bottom: 60px;
}

.articles_middle {
    width: 74%;
    margin: 0 auto;
}

.services {
    width: 100%;
    margin-bottom: 160px;
}

.services h3 {
    font-family: "antipasto reg";
    font-size: 36px;
    color: #2ed9c3;
    margin-bottom: 20px;;
}

.services_middle {
    width: 74%;
    margin: 0 auto;
    display: flex;
}

.services_left, .services_right {
    width: 50%;
}

.services_left ul li {
    list-style: none;
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 35px;
    min-width: 32%;
    display: inline-block;
}

.doctor_type ul {
    margin-bottom: 15px;
}

.services_right img {
    height: 100%;
    width: auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.services_right {
    overflow: hidden;
}

/*FAQS page*/

.faqs {
    background: url("../images/faqs_bg.png") center center no-repeat;
    background-size: cover;
}

.collapse_heading h3 {
    font-family: "antipasto reg";
    color: #6e7c7c;
    font-size: 26px;
    margin:0;
    max-width:  max-content;
    cursor: pointer;
}
.collapse_single{
    box-shadow: 0 0 5px 3px #dddddda8;
    margin-bottom:  45px;
}
.collapse_heading {
    width: 100%;
    position: relative;
    padding: 20px;
    cursor: pointer;
}

.collapse_section {
    width: 100%;
}

.collapse_middle {
    width: 74%;
    margin:0 auto;
}
.close_button{
    display: none;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.arrow_down{
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.collapsing_div p{
    padding-bottom: 30px;
    font-family: "avenir reg";
    color: #6e7c7c;
    font-size: 16px;
    /* margin-top: 30px; */
}
.collapsing_div p span{
    color: #32d9c3;
}
.collapsing_div {
    display:  none;
    padding: 0 30px;
}


/*Contact Us page*/


.contact_us{
    margin-bottom: 150px;
}
.contact_us_banner{
    background: url("../images/contact_us_bg.png") left center no-repeat;
    background-size: cover;
}
.contact_us h2{
    font-family: "antipasto reg";
    font-size: 48px;
    color: #6e7c7c;
    margin-bottom: 20px;
}
.contact_us p{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 40px;
}
.contact_us_middle{
    display: flex;
    width: 74%;
    margin:0 auto;
}
.contact_us_left{
    width: 50%;
    padding: 25px 60px 25px 0;
    border-right: 3px solid #f1f1f1;
}
.contact_us_right{
    padding: 25px 0 25px 60px;
    width: 50%;
}
.tel_nmb{
    margin-bottom: 40px;
}
.tel_nmb i{
    font-size: 24px;
    color: #32d9c3;
    margin-right: 20px;
}
.tel_nmb p{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    display: inline-block;
    margin-bottom: 0;
}
.press_contact p,.webmaster p{
    font-family: "antipasto reg";
    font-size: 22px;
    color: #32d9c3;
    margin:0;
    line-height: .6;
}
.press_contact span,.webmaster span{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
}
.webmaster{
    margin-top: 25px;
}
.contact_us_right label {
    width: 100%;
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
}
.name{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.first_name,.last_name{
    width: 100%;
    border:3px solid #f1f1f1;
    background: #f8f8f8;
}
.f_name,.l_name{
    width: 47%;
}
.contact_us_right input{
    border:3px solid #f1f1f1;
    background: #f8f8f8;
    height: 42px;
    padding-left: 20px;
    font-family: "avenir reg";
    font-style: italic;
    font-size: 16px;
    color: #888888;
}
.email{
    width: 100%;
    margin-bottom: 25px;
}
#question{
    width: 100%;
    height: 150px;
    font-family: "avenir reg";
    font-style: italic;
    font-size: 16px;
    color: #888888;
    border:3px solid #f1f1f1;
    background: #f8f8f8;
    padding-left: 20px;
    padding-top: 10px;
    resize: none;
}
.submit_button{
    padding: 10px 30px;
    margin-top: 25px;
}



/*Find Us page*/
.find_us{
    background: url("../images/location_main_bg.png") center top no-repeat;
    background-size: cover;
}
.articles_middle h2{
    font-family: "antipasto reg";
    font-size: 36px;
    color: #32d9c3;
    margin-bottom: 30px;
}
section.location_map {
    width: 100%;
    margin-bottom: 130px;
}
.map_middle{
    width: 74%;
    margin:0 auto;
}
.map_bg{
    width: 100%;
    height: 600px;
    background: url("../images/map.png") center center no-repeat;
    background-size: contain;
    margin-bottom: 80px;
    position: relative;
}
.map_bg a{  }
.map_color p{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin:0 0 0 10px;
}
.map_color{
    display: flex;align-items: center;
}
.color_div{
    width: 30px;
    height: 30px;
}
.available{
    background: #32d9c3;
}
.coming_soon{
    background: #6e7c7c;
}
.not_available{
    background: #ebeced;
}
.map_description{
    width:80%;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-around;
}


.terms_header a {
    font-family: "avenir reg";
    font-size: 14px;
    color: #2ed9c3;
    position: relative;
    padding-left: 30px;
    text-decoration: none;
}

.terms_header h2 {
    font-family: "antipasto reg";
    font-size: 48px;
    color: #6e7c7c;
    margin-top: 10px;
}

.terms_header a:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: #2ed9c3;
    left: 0;
    top: 50%;
}
.terms{
    margin: 45px 0 160px;
}
.terms_header{
    margin-bottom: 70px;
}
.terms_description p{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    margin-bottom: 40px;
}
.terms_middle{
    width: 74%;
    margin:0 auto;
}
.rpmButt {background-color: #2ED9C3;
    color: #fff   ;
    border: 1px    ;
    width: 130px  ;
    height: 50px   ;
    font-size: 18pt   ;
}



/*Login page*/

.login_section {
    width: 56%;
    max-width: 750px;
    border: none;
    box-shadow: 0 0 11px 3px #9ea2a233;
    margin: 100px auto 130px;
}
.login_header h4 {
    font-size: 15px;
    font-family: "avenir reg";
    color: #ffffff;
    margin: 0;
}
.login_header{
    padding: 15px  12px ;
    background: #2dd9c3;
}
.social_buttons i{
    font-size: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width:  35px;
    height: 35px;
    border-right: 1px solid #00000040;
    margin-right: 15px;
}
.facebook_button ,.google_button{
    background: #3c5998;
    border-radius:  5px;
    width: 49%;
    display: flex;
    align-items: center;
    border: 2px solid #3a5182;
    font-family: "avenir reg";
    font-size: 18px;
    color: #fff;
    text-decoration:  none;
}
.google_button{
    background: #dd4b3a;
    border: 2px solid #b74739;
}
.login_form{
    width: 100%;
    padding:20px 15px 70px;
}
.social_sign p {
    font-family: "avenir reg";
    font-style:  italic;
    color: #6e7c7c;
    text-align:  center;
    margin-bottom: 25px;
    font-size: 14px;
}
.social_buttons {
    display:  flex;
    justify-content:  space-between;
    margin-bottom: 35px;
    font-family: "avenir reg";
    color: #FFFFFF;
    font-size: 18px;
}
.form_inputs label {
    width: 32%;
    text-align:  right;
    margin:0 25px 0 0;
    font-size: 15px;
    font-family: "avenir reg";
    color: #6E7C7C;
}
.form_inputs input {
    width: 48%;
    height:  35px;
    border: 1px solid #d0d4d6;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #d0d4d6;
    font-size: 15px;
    font-family: "avenir reg";
    font-style: italic;
    padding-left: 10px;
}
.sign_up_confirm{
    padding: 8px 30px;
    margin-top: 20px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.facebook_button:hover, .google_button:hover {
    text-decoration:  none;
    color: #ded6d6;
}




/* Rewriting codes*/
.modal-open .modal {
    z-index: 9999 !important;
}
.panel-default {
    margin-top: 50px;
}
.avatar_block{
    list-style: none;
    border-radius: 50%;
    /* border: 2px solid #a1a9a870; */
    box-shadow: 0px 0px 0px 2px #a1a9a870;
    width: 35px;
    height: 35px;
    position: relative;
}
.avatar_block:hover{
    transition: all ease .2s;
    padding: 2px;
}
.avatar_block img{
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.avatar_block   a{
    position: relative;
    z-index: 99;
}
.navbar-nav>li>a{
    padding-top: 20px;
    padding-bottom: 18px;
    text-transform: uppercase;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.navbar-nav>li>a:hover{
    background-color: transparent;
}
ul.dropdown-menu a {
    margin: 0;
}
#intro-paragraph{
    padding-left: 15px;
    padding-right: 15px;
}
.val_error { color: red !important; font-weight: 600 !important; display: inherit !important;}
.val_success { color: darkgreen !important; font-weight: 600 !important;}
.email_block { margin-bottom: 18px;}
.contact_input { margin-bottom: 5px !important;}
p.form-message { padding-top: 8px}







.spin::before, .spin::after {
    position: absolute;
    content: '';
    top: -2px;
    left: -2px;
    border: 3px solid transparent;
    width: 112%;
    height: 112%;
}
.spin:hover::before {
    border-top-color: #32d9c3;
    border-right-color: #32d9c3;
    border-bottom-color: #32d9c3;
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.spin::after {
    border: 0 solid transparent;
}
.spin:hover::after {
    border-top: 3px solid #32d9c3;
    border-left-width: 3px;
    border-right-width: 3px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

.circle {
    border-radius: 100%;
    /* box-shadow: none; */
}
.circle::before, .circle::after {
    border-radius: 100%;
}

li.avatar_block:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transition: .2s all ease .4s;
    visibility: visible;
}
.avatar_block .dropdown-menu {
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    background-clip: padding-box;
}

.sign_up_book {
    padding: 12px 40px;
    font-size: 20px;
}
.doc_reg{
    width: 100%;
    display: block;
    text-align: center;
}
.placeholder {
    height: 60px;
}
.thank_text{
    font-family: "avenir reg";
    color: #6e7c7c;
    font-size: 16px;
}
.doctor_md{
    width: 82%;
}
.overlay_animation{
    background: #fff;
    border: 2px solid #32d9c3;
    color: #32d9c3;
    font-size: 16px;
    font-family: "avenir reg";
    padding: 10px 20px;
    border-radius: 40px;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}
@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}
.hvr-ripple-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-ripple-out:before {
    content: '';
    position: absolute;
    border: #32d9c3 solid 4px;
    border-radius: 40px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
    animation-iteration-count: infinite;
}
.notify_animation{
    position: fixed;
    top: -100px;
    right: 30px;
}
.notify_animation p{
    margin: 0;
}
.notify_animation img{
    position: absolute;
    left: 115px;
    width: auto;
    height: 29px;
}
.arrow_top{
    text-align: center;
    margin-bottom: 10px;
    position:  relative;
    height: 30px;
}
.start_animate{
    top: 65px;
    transition: all ease 1s;
}
.blurb{
    text-align: center;
    border: 1px solid #32d9c3;
    padding: 20px 0;
    background: #32d9c314;
}
.blurb i{
    font-size: 45px;
    color: #32d9c3b3;
    margin-bottom: 15px;
}
.blurb p{
    font-family: "avenir reg";
    font-size: 20px;
    color: #6e7c7c;
    margin: 0;
}
.blurb_block{
    margin-top:50px;
}
.mobile_menu .dropdown-menu .divider
{
    margin: 2px 0;
}




.available_states h3 {
    font-family: "antipasto reg";
    font-size: 36px;
    color: #32d9c3;
    margin: 50px 0 20px;
}

.available_states ul {
    list-style: none;
    padding: 0 0 0 10px;
}

.available_states ul li a {
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}

.available_states ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height:  1px;
    width: 0;
    background: #6e7c7c;
    margin: 0 5px 0 0;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}

.available_states ul li {
    position: relative;
}
.available_states ul li a:hover{
    padding: 0 0 0 15px;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
    text-decoration: none;
}
.available_states ul li a:hover:before{
    width: 10px;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}



.table-striped>tbody>tr:nth-of-type(odd){
    background-color: #2ed9c31a;
}
table.dataTable thead th, table.dataTable thead td{
    border-bottom: 2px solid #32d9c3 !important;
}
table.dataTable tfoot th, table.dataTable tfoot td {
    border-top: 2px solid #32d9c3 !important;
}
table.dataTable tbody th, table.dataTable tbody td{
    font-family: "avenir reg";
    font-size: 16px;
    color: #6e7c7c;
}
#headMessage{
    font-family: "avenir reg";
    font-size: 14px;
    color: #111;
}
.dt-right{
    text-align: right;
}
.input-group{
    cursor: pointer;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
    border: none;
}
.btn-success {
    color: #fff;
    background-color: #02ab02;
    border-color: #259d6d;
}
.btn-success:hover {
    color: #02ab02;
    background-color: transparent;
    border-color: #02ab02;
}
.btn-danger {
    color: #fff;
    background-color: #ef2a0a;
    border-color: #aa4a24;
}
.btn-danger:hover{
    color: #ef2a0a;
    background-color: transparent;
    border-color: #ef2a0a;
}
#secMembership center{
    font-family: "avenir reg";
    font-size: 14px;
    color: #080808 !important;
}
.dataTables_empty tr{
    background-color: transparent !important;
}
.panel-danger{
    margin-top: 50px;
    border-color: #ff2c0a;
}
.panel-danger>.panel-heading {
    color: #fff;
    background-color: #ef2a0a;
    border-color: #ff2c0a;
}
.btn-warning{
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:hover{
    color: #f0ad4e;
    background-color: transparent;
    border-color: #f0ad4e;
}
input[type="search"]{
    border: 1px solid #ddd;
}
.DTED_Lightbox_Wrapper{
    z-index: 99999 !important;
}

.all_section_block {
    min-height: calc(100vh - 293px);
}
