html,
body {
    height: 100%;
    color: #071031;
    font-family: 'Avenir Roman';
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

.grey_bg {
    background: #fafafa;
}

.theme_color {
    color: #ff9934;
}

.blue_theme {
    color: #066dae;
}

a {
    color: #071031;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

a,
button {
    box-shadow: none !important;
}

a,
button,
input {
    outline: none !important;
    text-decoration: none !important;
}

p {
    color: #071031;
    margin: 0;
    font-size: 16px;
}

.main_heading {
    line-height: 64px;
    font-size: 44px;
    text-align: left;
    margin: 0;
    width: 100%;
    float: left;
}

.page_outer_section {
    width: 100%;
    float: left;
    padding: 67px 0 0;
}

.coman_outer {
    width: 100%;
    float: left;
    text-align: center;
}

/*Header css start here*/
.header_outer.sticky {
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}

.header_outer {
    width: 100%;
    float: left;
    text-align: center;
    padding: 15px 0;
    background: #fff;
    -webkit-transition-delay: 380ms;
    -moz-transition-delay: 380ms;
    -o-transition-delay: 380ms;
    transition-delay: 380ms;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    /*border-bottom: 1px solid #f4f4f4;*/
}

.header_inner {
    display: inline-block;
    width: 100%;
    /*max-width: 1670px;*/
    padding: 0 7vh;
}

.logo {
    width: 50%;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
}

.logo img {
    max-width: 80px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
}

.menu_links {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-left: -5px;
}

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

.logo h1 {
    margin: 0;
}

.logo h1 a {
    display: inline-block;
    font-size: 29px;
    color: #071031;
    font-family: 'Avenir Heavy';
    line-height: 29px;
}

.logo h1 a span {
    display: inline-block;
    vertical-align: middle;
}

/*menu css start here*/
#menu-lines-container {
    position: relative;
    display: block;
    width: 50px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99)
}

.nav-visible #menu-lines-container {
    transform: rotate(90deg)
}

#menu-line-top,
#menu-line-bottom {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 20px;
    -webkit-transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menu-line-top:before,
#menu-line-bottom:before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #7c838d;
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99), transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menu-line-top::before {
    top: 2px;
}

#menu-line-bottom::before {
    top: 14px;
    width: 39px;
    right: 0;
    left: auto;
}

#toggle-menu-button {
    float: right;
}

body:not(.menu_visible) a:hover #menu-line-bottom::before {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    background: #071031;
}

body:not(.menu_visible) a:hover #menu-line-top::before {
    -ms-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    background: #071031;
}

#toggle_menu {
    float: right;
    position: relative;
    z-index: 99;
}

.menu_list {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    padding: 0 40px;
    box-sizing: border-box;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.menu_visible .menu_list {
    visibility: visible;
    background-color: #fff;
}

.menu_list {
    visibility: hidden;
}

.menu_list ul {
    text-align: center;
    max-width: 390px;
    margin: 0 auto;
    list-style-type: none;
    padding: 40px 0;
    position: relative;
    top: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu_list ul li {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99)
}

.menu_visible .menu_list li {
    opacity: 1;
    transform: scale(1)
}

.menu_visible .menu_list ul li:nth-child(1) {
    -webkit-transition-delay: 30ms;
    -moz-transition-delay: 30ms;
    -o-transition-delay: 30ms;
    transition-delay: 30ms;
}

.menu_visible .menu_list ul li:nth-child(2) {
    -webkit-transition-delay: 60ms;
    -moz-transition-delay: 60ms;
    -o-transition-delay: 60ms;
    transition-delay: 60ms;
}

.menu_visible .menu_list ul li:nth-child(3) {
    -webkit-transition-delay: 90ms;
    -moz-transition-delay: 90ms;
    -o-transition-delay: 90ms;
    transition-delay: 90ms;
}

.menu_visible .menu_list ul li:nth-child(4) {
    -webkit-transition-delay: 120ms;
    -moz-transition-delay: 120ms;
    -o-transition-delay: 120ms;
    transition-delay: 120ms;
}

.menu_visible .menu_list ul li:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}

.menu_visible .menu_list ul li:nth-child(6) {
    -webkit-transition-delay: 180ms;
    -moz-transition-delay: 180ms;
    -o-transition-delay: 180ms;
    transition-delay: 180ms;
}

.menu_visible .menu_list ul li:nth-child(7) {
    -webkit-transition-delay: 210ms;
    -moz-transition-delay: 210ms;
    -o-transition-delay: 210ms;
    transition-delay: 210ms;
}

.menu_list ul li a {
    color: #011936;
    font-size: 30px;
    line-height: 36px;
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    font-family: 'Avenir Medium';
}

.menu_visible .menu_links li #menu-lines-container:hover #menu-line-bottom::before {
    background: #071031;
}

.menu_visible .menu_links li #menu-lines-container:hover #menu-line-top::before {
    background: #071031;
}

.open_menu #menu-line-bottom::before {
    height: 3px;
    top: 14px;
    width: 50px;
    background: #7c838d !important;
    border-radius: 2px;
}

.open_menu #menu-line-top::before {
    height: 3px;
    background: #7c838d !important;
    border-radius: 2px;
}

.menu_list ul li.menu_term_link {
    text-align: center;
    font-size: 14px;
    color: #858585;
    margin-bottom: 25px;
    font-family: 'Avenir Book';
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    padding-top: 80px;
}

.menu_list ul li a:hover {
    color: #071031;
}

.menu_visible .menu_list ul li.menu_term_link span {
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.menu_list ul li.menu_term_link {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99)
}

.menu_visible .menu_list ul li.menu_term_link {
    opacity: 1;
    transform: scale(1)
}

.menu_list ul li.menu_term_link a {
    color: #858585;
    font-size: 14px;
    border: none;
    display: inline-block;
    padding: 0;
    -webkit-transition: all 0 ease-in;
    -moz-transition: all 0 ease-in;
    -o-transition: all 0 ease-in;
    transition: all 0 ease-in;
}

.menu_visible #menu-line-top {
    -ms-transform: rotate(135deg) scaleX(0.7);
    -webkit-transform: rotate(135deg) scaleX(0.7);
    -moz-transform: rotate(135deg) scaleX(0.7);
    -o-transform: rotate(135deg) scaleX(0.7);
    transform: rotate(135deg) scaleX(0.7);
}

.menu_visible #menu-line-bottom {
    -ms-transform: rotate(45deg) scaleX(0.7);
    -webkit-transform: rotate(45deg) scaleX(0.7);
    -moz-transform: rotate(45deg) scaleX(0.7);
    -o-transform: rotate(45deg) scaleX(0.7);
    transform: rotate(45deg) scaleX(0.7);
}

.menu_visible #menu-line-top::before {
    -ms-transform: translate(-1px, 6px);
    -webkit-transform: translate(-1px, 6px);
    -moz-transform: translate(-1px, 6px);
    -o-transform: translate(-1px, 6px);
    transform: translate(-1px, 6px);
}

.menu_visible #menu-line-bottom::before {
    -ms-transform: translate(6px, -3px);
    -webkit-transform: translate(6px, -3px);
    -moz-transform: translate(6px, -3px);
    -o-transform: translate(6px, -3px);
    transform: translate(6px, -3px);
}

.animate_menu {
    -webkit-transition-delay: 60ms;
    -moz-transition-delay: 60ms;
    -o-transition-delay: 60ms;
    transition-delay: 60ms;
}

.sign_up #menu-line-top::before,
#menu-line-bottom::before {
    background: #7c838d;
}

.header_outer.index_header #menu-line-top::before,
.header_outer.index_header #menu-line-bottom::before {
    background: #071031;
}

.menu_links li a:hover #menu-line-top::before:hover,
.sign_up .menu_links li a:hover #menu-line-bottom::before:hover {
    background: #071031;
}

.menu_links li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    padding-left: 25px;
}

.menu_links ul {
    float: right;
    width: 100%;
    text-align: right;
}

.menu_links li .btns {
    display: inline-block;
    border: 1px solid #dfe1e5;
    border-radius: 4px;
    padding: 8px 22px 6px;
    color: #7c838d;
    font-size: 16px;
    line-height: 22px;
}

.menu_links li .btns:hover {
    border-color: #071031;
    color: #071031;
}

.menu_links li.employers_link a {
    color: #071031;
}

/*menu css end here*/
/*Header css end here*/





/*Loader css start here*/
.spinner {
    left: 0;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: center;
}

.loader_outer {
    background: hsla(0, 0%, 100%, .8);
    bottom: 0;
    top: 0;
    z-index: 99999;
    display: none;
}

.loader_outer,
.banner_img .spinner {
    left: 0;
    position: fixed;
    right: 0;
    background: #ffffff;
    display: none !important;
}

.loader_scroll {
    overflow: hidden;
}

.video_upload {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    left: 0;
    right: 0;
    display: block;
    bottom: 0;
    top: 0;
    z-index: 99;
}

.video_upload.loader_outer .spinner {
    position: absolute;
}

.spinner .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s;
}

.spinner div {
    width: 22px;
    height: 22px;
    background-color: #c7c7c7;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation-delay: 0s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.video_upload .spinner {
    position: absolute;
}

#loader h2 {
    font-family: 'Avenir Heavy';
    text-align: center;
    font-size: 46px;
    color: #c7c7c7;
    margin: 0;
    position: relative;
    top: 0;
}

.spinner .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s;
}

.spinner div {
    width: 22px;
    height: 22px;
    background-color: #c7c7c7;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation-delay: 0s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/*Loader css end here*/


/*Splash page css start here*/
.hero_dec .btn.submit_btn:hover,
.hero_dec .btn.submit_btn:focus {
    background: #071031;
    color: #fff;
}

.hero_dec .btn.submit_btn {
    font-size: 21px;
    max-width: inherit;
    width: auto;
    padding: 10px 35px;
}

.phone_img.for_mobile {
    display: none;
}

.for_mobile {
    display: none;
}

.hero_section .hero_dec {
    width: 100%;
    display: inline-block;
    text-align: left;
}

.hero_section {
    padding: 30px 0 0;
}

.hero_dec h2 {
    margin: 0 0 15px;
    font-size: 36px;
    font-family: 'Avenir Heavy';
    text-align: left;
    line-height: 46px;
}

.hero_dec h3 {
    margin: 0 0 37px;
    font-size: 30px;
    line-height: 42px;
    font-family: 'Avenir Book';
    text-align: left;
}

.app_store_link {
    width: 100%;
    float: left;
}

.app_store_link img {
    max-width: 165px;
}

.header_outer.sign_up {
    border-bottom: 1px solid #efefef;
}

.scroll_down {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.scroll_down a {
    display: inline-block;
}

.scroll_down img {
    max-width: 55px;
}

.phone_img {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    max-width: 490px;
    text-align: left;
    position: relative;
}

/*.phone_img img {max-width: 390px;position: absolute;left: 0;top: 0;}*/
.hero_section .hero_dec {
    width: 100%;
    display: inline-block;
    text-align: left;
    max-width: 370px;
    vertical-align: middle;
}

.we_believe {
    padding: 100px 15px;
}

.we_believe h2 {
    margin: 0 0 90px;
    font-size: 36px;
    line-height: 44px;
    font-family: 'Avenir Heavy';
    color: #071031;
}

.we_believe_dec p {
    font-size: 26px;
    line-height: 38px;
    text-align: left;
    font-family: 'Avenir Book';
    margin-bottom: 15px;
    position: relative;
}

.we_believe_dec p span.bottom_quote img {
    top: -10px;
}

.we_believe_dec p span.top_quote img {
    top: -10px;
}

.we_believe_dec p span img {
    position: relative;
    max-width: 25px;
}

.we_believe_dec h6 {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    font-family: 'Avenir Medium';
    margin: 0;
    color: #8f959d;
}

.we_believe_img {
    width: 100%;
    max-width: 465px;
    display: inline-block;
    vertical-align: middle;
}

.we_believe_dec {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    max-width: 430px;
    padding-left: 100px;
}

.hero_video {
    width: 100%;
    max-width: 370px;
    float: left;
    position: relative;
}

.hero_video video {
    width: 423px;
    position: relative;
    left: -25px;
    float: left;
    height: 100%;
}

.hero_video_outer {
    width: auto;
    float: left;
    position: absolute;
    z-index: -9;
    overflow: hidden;
    border-radius: 7%;
    top: 5px;
}

.hero_video.candidate_video .progres_outer .progress {
    height: 5px;
}

.mobile_mask {
    width: 100%;
    max-width: 375px;
    position: relative;
}

.hero_section .video_control {
    width: auto;
}

/*Faq css start here*/
.faq_outer.coman_outer {
    padding: 120px 0;
}

#integration-list {
    width: 100%;
    float: left;
}

#integration-list h2 {
    font-size: 20px;
    margin: 0;
    font-family: 'Avenir Roman';
    line-height: 36px;
    color: #121212;
    text-align: left;
}

#integration-list ul {
    padding: 0;
    margin: 0;
}

#integration-list ul li {
    list-style: none;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 15px 0px;
    overflow: hidden;
}

#integration-list .fa {
    font-weight: bold;
    color: #071031;
}

.expand {
    display: block;
    text-decoration: none;
    color: #121212;
    cursor: pointer;
}

.detail a {
    text-decoration: none;
    color: #C0392B;
    border: 1px solid #dddddd;
    padding: 6px 10px 5px;
    font-size: 14px;
}

.detail {
    margin: 10px 0 0;
    display: none;
    line-height: 22px;
}

.detail p {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #121212;
    text-align: left;
    font-family: 'Avenir Roman';
}

.detail p a {
    border: none;
    padding: 0;
    font-size: 16px;
    color: #066DAE;
}

.right-arrow {
    width: 25px;
    height: 100%;
    float: right;
    font-size: 16px;
    margin-top: 5px;
}

.faq_outer_inner {
    width: 100%;
    max-width: 735px;
    display: inline-block;
}

/*Faq css end here*/

/*footer css start here*/
.footer {
    width: 100%;
    float: left;
    text-align: center;
    background: #fff;
    padding: 0 12vh;
}

.footer p {
    font-size: 16px;
    margin: 0 0 10px;
    color: #7c838d;
}

.footer p a {
    color: #071031;
}

.footer_inner {
    display: inline-block;
    text-align: left;
    width: 100%;
    padding: 20px 15px 0;
    border-top: 1px solid #dfe1e5;
}

.footer .copy_right {
    width: 100%;
    float: left;
    margin-top: 65px;
}

.footer .copy_right p {
    color: #b9b9b9;
    font-size: 13px;
}

.footer .copy_right p a {
    color: #b9b9b9;
}

.footer .follow_us.form-control::-webkit-input-placeholder {
    color: #b9b9b9;
}

.footer .follow_us .form-control:-moz-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.footer .follow_us .form-control::-moz-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.footer .follow_us .form-control:-ms-input-placeholder {
    color: #b9b9b9;
}

.footer .follow_us .form-control::-ms-input-placeholder {
    color: #b9b9b9;
}

.footer h6 {
    margin: 0 0 20px;
}

.footer h6 a {
    display: inline-block;
}

.footer h6 a img {
    max-width: 50px;
}

.footer .follow_us .form-control {
    border-radius: 0;
    height: auto;
    border: none;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    max-width: 255px;
    padding: 0 15px 0 0;
    font-family: 'Avenir Book';
}

.follow_us .btn {
    background: none;
    vertical-align: middle;
    border: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
}

.follow_us .btn img {
    max-width: 25px;
}

.follow_us #follow_email-error {
    position: absolute;
    left: 0;
    top: 37px;
    font-weight: normal;
    color: #ff0000;
}

.folow_fild {
    border-bottom: 1px solid #dfe1e5;
    display: inline-block;
    max-width: 285px;
    padding-bottom: 10px;
    width: 100%;
    position: relative;
}

.ken_image {
    width: 100%;
    display: inline-block;
    margin-top: 75px;
    text-align: center;
}

.ken_image img {
    max-width: 350px;
    width: 100%;
}

.follow_us h5 {
    margin: 0 0 15px;
    font-size: 16px;
    font-family: 'Avenir Heavy';
}

.follow_us {
    width: 100%;
    float: left;
    margin-top: 40px;
}

.footer h6 a {
    color: #071031;
    font-size: 30px;
    font-family: 'Avenir Heavy';
}

.get_started {
    width: 100%;
    float: left;
    text-align: center;
    padding: 0 15px;
    margin: 0 0 75px;
}

.get_started p {
    margin: 0;
    font-size: 19px;
    color: #7c838d;
}

.get_started h2 {
    margin: 15px 0 30px;
    font-size: 36px;
    font-family: 'Avenir Heavy';
}

.get_started a {
    display: inline-block;
}

.get_started .btn.submit_btn {
    max-width: 270px;
    font-size: 22px;
    background: #071031 !important;
    color: #fff !important;
    border: none !important;
}

/*.conti_btn.submit_btn.btn{background: #071031 !important; color: #fff !important;border: none !important;}
.apply_now.submit_employers #candidate_submit:hover{background: #071031 !important; color: #fff !important;border-color: #071031 !important;}
.signing_up{padding: 100px 0 40px;}
.step_point {display: inline-block; max-width: 235px; width: 100%;}
.step_point.signing_step_two {margin: 0 145px;position: relative;}
.signing_up h2.coman_heading {margin-bottom: 45px;}
.signing_up .step_point h6 {margin: 0;color: #7c838d;font-size: 14px;}
.signing_up .step_point p {margin: 0;font-size: 16px;color: #071031;}
.signing_up .step_point h3 {margin: 5px 0;font-size: 60px;color: #071031;}
.step_point.signing_step_two::after{width:220px;height: 1px;background: #dfe1e5;content:"";position: absolute;left: -185px; top: 45px;}
.step_point.signing_step_two::before{width:220px;height: 1px;background: #dfe1e5;content:"";position: absolute;right: -185px; top: 45px;}*/
/*Splash page css end here*/
.popup_outer .send_btn .btn {
    padding: 9px 25px 8px;
    background: #071031;
    color: #fff;
    border: 1px solid #071031;
    max-width: inherit;
}

.update_resume .back_icon img {
    max-width: 20px;
}

.step_three_outer.edit .apply_now.submit_employers {
    text-align: left;
    margin-bottom: 0;
}

.term_outer {
    width: 100%;
    float: left;
    text-align: center;
    background: #f5f5f6;
    padding: 60px 0;
}

.term_inner {
    width: 100%;
    max-width: 800px;
    display: inline-block;
    text-align: left;
    background: #fff;
}

.term_inner ul {
    width: 100%;
    float: left;
    padding: 60px;
}

.term_inner ul li {
    width: 100%;
    float: left;
    margin-bottom: 50px;
    list-style: none;
}

.term_inner ul li ul li {
    margin: 0 0 15px;
    list-style: disc;
}

.term_inner ul li ul {
    padding: 0 0 0 50px;
}

.term_inner ul li h3 {
    font-size: 28px;
    margin: 0 0 15px;
    font-family: 'Avenir Medium';
}

.term_inner ul li p {
    font-size: 16px;
    margin: 0 0 15px;
}

.term_inner ul li h4 {
    font-size: 22px;
    margin: 0 0 15px;
}

.term_inner ul li p a {
    color: #23527c;
}

.how_works .page_outer_section {
    padding-bottom: 0;
    height: 100%;
}

.mobile_view {
    display: none;
}

.menu_list p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    color: #7c838d;
    font-size: 13px;
}

.menu_list p a {
    color: #7c838d;
}

body .alert_message {
    background: #d9534f !important;
}

.social_icon {
    width: 100%;
    float: left;
    text-align: center;
}

.social_icon ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
    font-size: 28px;
    margin: 15px 0;
}

.social_icon ul li a {
    color: #262626;
}

.address_section {
    width: 100%;
    display: inline-block;
}

.address_section p {
    color: #47525d;
    font-size: 16px;
    line-height: 24px;
}

.copyright p {
    font-size: 14px;
    color: #777676;
}

.copyright {
    width: 100%;
    float: left;
    text-align: center;
}

.footer_outer.common_outer {
    text-align: center;
    padding: 0 0 50px;
}




.coman_heading {
    margin: 0 0 15px;
    font-size: 36px;
    font-family: 'Avenir Heavy';
    text-align: center;
}

.swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.slider_outer {
    width: 100%;
    display: inline-block;
    padding: 100px 0 0;
    text-align: center;
}

.slider_inner {
    width: 100%;
    display: inline-block;
    max-width: 800px;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
}

.info_img {
    width: 100%;
    display: inline-block;
    padding: 20px 0 40px;
}

.info_img img {
    max-height: 350px;
}

.slider_inner .coman_heading {
    margin: 0 0 10px;
}

.step_desc {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0 0 20px;
}

.step_desc h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-family: 'Avenir Heavy';
    text-align: center;
}

.step_desc p {
    font-size: 18px;
}

.slider_outer .swiper-container,
.slider_outer .swiper-container2 {
    padding-bottom: 30px;
}

.slider_outer .swiper-pagination-bullet-active {
    opacity: 1;
    background: #066DAE;
}

.slider_outer .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
}

.slider_outer .swiper-container-horizontal .swiper-pagination-bullets,
.slider_outer .swiper-pagination-custom,
.slider_outer .swiper-pagination-fraction {
    bottom: 20px;
    z-index: 9;
}

.slider_outer.doctor_slider {
    padding: 100px 0 0;
}

.app_store_img {
    margin-right: 10px;
}

.get_started a img {
    max-width: 160px;
}

.app_store {
    width: 100%;
    max-width: 1140px;
    display: inline-block;
}

.how_to_step {
    width: 100%;
    display: inline-block;
    padding-bottom: 20px;
}


.faq_outer_inner {
    max-width: 1170px;
}

/* Health-blog */
.coman_heading.home-patient-heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.hl-blog-image {
    border-bottom: 1px solid #ddd;
}

.hl-blog-inner {
    box-shadow: 0 0px 4px 0 rgba(0, 0, 0, .1);
    display: inline-block;
    width: 100%;
}

.hl-blog-inner h3 {
    margin: 0;
    font-size: 22px;
    line-height: normal;
    font-family: 'Avenir Heavy';
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hl-blog-image {
    border-bottom: 2px solid #ff9934;
}

.hl-blog-text {
    padding: 20px;
}

.tk-same-padd {
    padding: 120px 0;
}

.hl-blog-image img {
    width: 100%;
}

.home-health-blog {
    display: inline-block;
    width: 100%;
}

/* End Health-blog */
/*Footer - links  */
.footer-links {
    display: inline-block;
    width: 100%;
    padding: 55px 0;
    background: rgb(7 110 174 / 7%);
}

.ftr-link-bx h4 {
    font-family: 'Avenir Heavy';
    margin: 0 0 15px;
}

.ftr-link-bx li a {
    margin: 0 0 8px;
    display: inline-block;
    line-height: normal;
    font-size: 15px;
}

.ftr-link-bx ul {
    padding-left: 16px;
}

.ftr-link-bx ul li {
    list-style: disc;
}

/*End Footer - links  */

/* Specialities  */
.specialities-banner {
    background-image: url("../images/specailitis-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 17% 0;
}

.specialities-bx h1 {
    font-family: 'Avenir Heavy';
    font-size: 55px;
    width: 100%;
    max-width: 670px;
    line-height: normal;
    color: #fff;
}

.book-apt {
    background: #fff;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 8px;
    font-size: 22px;
    font-family: 'Avenir Heavy';
    margin-top: 15px;
}

.speaility-blog {
    padding-top: 20px;
}

.comn-padding {
    padding: 100px 0;
}

.consult-bx {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.consult-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.consult-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consult-text {
    padding: 15px 0 0;
}

.consult-text h3 {
    font-family: 'Avenir Heavy';
    font-size: 20px;
}

.price-range {
    font-size: 18px;
    font-family: 'Avenir Heavy';
    color: #076eae;
}

.cmn-treatment .consult-bx {
    border: none;
    padding: 0 20px;
}

.cmn-treatment .consult-bx .consult-image {
    height: auto;
    border: 1px solid #ccc;
    border-radius: 13px;
}

.cmn-treatment .consult-bx .consult-image img {
    height: auto;
    object-fit: unset;
}

.cmn-treatment h3 {
    font-family: 'Avenir Roman';
}

.home-get-started-section {
    background: #076eae;
    padding: 120px 0;
    margin: 0 0 0px 0;
}

.home-get-started-heading {
    color: #fff;
    font-family: 'Avenir Medium';
    font-size: 60px;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.home-get-started-inner {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.app_store_link {
    width: 100%;
    float: left;
}

.app_store_link a {
    padding: 0 20px;
    margin: 0;
}

.app_store_link img {
    max-width: 250px;
}

.special-head {
    margin-bottom: 50px;
}

.benifit img {
    width: auto;
}

.benifit .consult-image {
    border: none !important;
}

.consult-text h2 {
    font-family: 'Avenir Heavy';
    font-size: 28px;
}

.comn-top-padd {
    padding-top: 40px;
}

/* End Specialities  */

@media (max-width: 1400px) {
    .home-get-started-heading {
        font-size: 35px;
        margin: 0 0 20px 0;
        line-height: 50px;
    }

    .app_store_link img {
        max-width: 180px;
    }
}

@media screen and (max-width:991px) {

    /* Specialities  */
    .consult-bx {
        margin-bottom: 30px;
    }

    .specialities-bx h1 {
        font-size: 36px;
    }

    .comn-padding {
        padding: 60px 0;
    }

    .comn-top-padd {
        padding-top: 0 !important;
    }

    .coman_heading.home-patient-heading {
        margin: 0 0 30px 0;
    }

    /* End Specialities  */
}

@media (max-width: 767px) {

    .home-get-started-heading {
        font-size: 28px;
        margin: 0 0 15px 0;
        line-height: 38px;
    }

    .app_store_link img {
        max-width: 150px;
    }
}

.margin-top-10 {
    margin-top: 10px;
}

.table-action-btn a {
    margin-right: 5px;
    /* Add space between buttons */
}

li a p {
    color: #000;
}

/* Style for modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 20%;
    height: 20%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content.modelContentWidth {
    width: 28%;
}
#DataTables_Table_0_wrapper {
    padding-top: 10px;
    border-top: 1px solid #dad9d9;
  }
  p.rg-txt {
    color: #fff;
    font-weight: bold;
}

 .nav-link.activeClass {
    background-color: #BC771B;
    color: #000 !important;
}

.activeClass p{
    color: #071031 !important;
}

.profile_image {
    position: absolute;
    right: -20px;
    margin: 0;
    z-index: 99;
    top: -20px;
    background: #3E7043;
    padding: 4px 10px;
    opacity: 1 !important;
    border-radius: 50px;
    height: 38px;
    width: 38px;
    line-height: 30px;
    color: #fff;
    text-shadow: none;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.48);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.48);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.modal-content.edit-prof-img button.close-model {
    background: #3E7043;
    border: none;
    padding: 4px 10px;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    position: absolute;
    top: -21px;
    right: -21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content.edit-prof-img button.close-model span {
    font-size: 24px;
    line-height: normal!important;
    height: 35px;
    color: #fff;
}
.modal-content.edit-prof-img button.close-model:hover {
    background:#BC771B;
    }



.appoint-paym-tabl table th:nth-child(11) {
        min-width: 130px!important;
        width: 80px!important;
}

.appoint-ds table.dataTable td  br {
    display: none;
}
.appoint-paym-tabl .appoint-ds table.dataTable thead>tr>th:nth-child(11) {
    width: 98px !important;
}
.appoint-paym-tabl .appoint-ds table.dataTable thead>tr>th:nth-child(22) {
    width: 103px !important;
}

 body .appoint-paym-tabl .appoint-ds table tr td {
    padding: 7px 8px !important;
}
.appoint-paym-tabl .appoint-ds table.dataTable thead>tr>th:nth-child(4) {
    width: 96px !important;
}
body .upc-appointmet .recent-ds table tr td {
    padding: 5px 10px !important;
}
body .mange-call-appointmets .recent-ds table.dataTable thead>tr>th:nth-child(7) {
    width: 50px !important;
}
body .mange-call-appointmets .recent-ds table tr td {
    padding: 6px 10px !important;
}
body .mange-call-appointmets  .recent_app_m table.dataTable thead>tr>th:nth-child(1) {
    width: 60px !important;
}
.manage-chat-appointmts .recent-ds table.dataTable thead>tr>th:nth-child(7) {
    width: 50px!important;
}
body .manage-chat-appointmts .recent-ds table tr td{
    padding: 6px 10px !important;
}

body .upc-appointmet .recent-ds table.dataTable thead>tr>th:nth-child(15), .recent-ds table.dataTable thead>tr>th:nth-child(8) {
    width: 55px !important;
}

body .upc-appointmet .recent-ds table.dataTable thead>tr>th:nth-child(10) {
    width: 40px !important;
}
body .mange-call-appointmets .recent-ds table.dataTable thead>tr>th:nth-child(14) {
    width: 48px !important;
}


.confirmtion-modl .modal-header {
    justify-content: center!important;
}
.confirmtion-modl .modal-body {
    text-align: center;
    padding: 1rem 0px!important;
}
.form-check-inpts {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
.form-check-inpts .form-check.d-flex {
    position: relative;
    padding: 0!important;
    align-items: center!important;
}
/* .form-check-inpts .form-check.d-flex label.form-check-label.mt-3 {
    position: absolute;
    top: -20px;
    right: -44px;
} */

.form-check-inpts .form-check.d-flex input {
    padding: 0!important;
    margin: 0!important;
}
.form-check-inpts .form-check.d-flex label {
    padding: 0!important;
    margin: 0!important;
    margin-left: 20px!important;
}

.confirmtion-modl-btn {
    justify-content: center!important;
}
.confirm-amt {
    position: relative;
}
.confirm-amt input {
    border-radius: .25rem!important;
}
.confirm-amt span.amt-indicator {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    margin: auto;
    padding: 0.275rem .95rem;
    display: flex;
    align-items: center;
    background: #e9ecef;
    border-radius: 0 .25rem .25rem 0;
    font-size: 17px;
    font-weight: 600;
    border-left: 1px solid #ced4da;
}
.confirmtion-modl .modal-header b {
    font-size: 20px;
    font-weight: 700;
}
.confirmtion-modl-btn {
    padding: 1rem 0rem 0rem 0rem!important;
}
.confirmtion-modl-btn button {
    margin: 0!important;
}

@media (max-width: 768px){
    #confirmationModal .modal-dialog {
        margin: auto!important;
    }
}

@media (max-width: 575px){
    #confirmationModal .modal-dialog {
        margin: auto 25px!important;
    }
}

