/*
  960 Grid System ~ Core CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
    min-width: 720px;
}

/* `Containers
----------------------------------------------------------------------------------------------------*/

.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 720px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
    display: inline;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11 {
    position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
    margin-left: 0;
}

.omega {
    margin-right: 0;
}

/* `Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
    width: 40px;
}

.container_12 .grid_2 {
    width: 100px;
}

.container_12 .grid_3 {
    width: 160px;
}

.container_12 .grid_4 {
    width: 220px;
}

.container_12 .grid_5 {
    width: 280px;
}

.container_12 .grid_6 {
    width: 340px;
}

.container_12 .grid_7 {
    width: 400px;
}

.container_12 .grid_8 {
    width: 460px;
}

.container_12 .grid_9 {
    width: 520px;
}

.container_12 .grid_10 {
    width: 580px;
}

.container_12 .grid_11 {
    width: 640px;
}

.container_12 .grid_12 {
    width: 700px;
}

/* `Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
    padding-left: 60px;
}

.container_12 .prefix_2 {
    padding-left: 120px;
}

.container_12 .prefix_3 {
    padding-left: 180px;
}

.container_12 .prefix_4 {
    padding-left: 240px;
}

.container_12 .prefix_5 {
    padding-left: 300px;
}

.container_12 .prefix_6 {
    padding-left: 360px;
}

.container_12 .prefix_7 {
    padding-left: 420px;
}

.container_12 .prefix_8 {
    padding-left: 480px;
}

.container_12 .prefix_9 {
    padding-left: 540px;
}

.container_12 .prefix_10 {
    padding-left: 600px;
}

.container_12 .prefix_11 {
    padding-left: 660px;
}

/* `Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
    padding-right: 60px;
}

.container_12 .suffix_2 {
    padding-right: 120px;
}

.container_12 .suffix_3 {
    padding-right: 180px;
}

.container_12 .suffix_4 {
    padding-right: 240px;
}

.container_12 .suffix_5 {
    padding-right: 300px;
}

.container_12 .suffix_6 {
    padding-right: 360px;
}

.container_12 .suffix_7 {
    padding-right: 420px;
}

.container_12 .suffix_8 {
    padding-right: 480px;
}

.container_12 .suffix_9 {
    padding-right: 540px;
}

.container_12 .suffix_10 {
    padding-right: 600px;
}

.container_12 .suffix_11 {
    padding-right: 660px;
}

/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
    left: 60px;
}

.container_12 .push_2 {
    left: 120px;
}

.container_12 .push_3 {
    left: 180px;
}

.container_12 .push_4 {
    left: 240px;
}

.container_12 .push_5 {
    left: 300px;
}

.container_12 .push_6 {
    left: 360px;
}

.container_12 .push_7 {
    left: 420px;
}

.container_12 .push_8 {
    left: 480px;
}

.container_12 .push_9 {
    left: 540px;
}

.container_12 .push_10 {
    left: 600px;
}

.container_12 .push_11 {
    left: 660px;
}

/* `Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
    left: -60px;
}

.container_12 .pull_2 {
    left: -120px;
}

.container_12 .pull_3 {
    left: -180px;
}

.container_12 .pull_4 {
    left: -240px;
}

.container_12 .pull_5 {
    left: -300px;
}

.container_12 .pull_6 {
    left: -360px;
}

.container_12 .pull_7 {
    left: -420px;
}

.container_12 .pull_8 {
    left: -480px;
}

.container_12 .pull_9 {
    left: -540px;
}

.container_12 .pull_10 {
    left: -600px;
}

.container_12 .pull_11 {
    left: -660px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after,
.container_12:before,
.container_12:after {
    content: '.';
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

.clearfix:after,
.container_12:after {
    clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix,
.container_12 {
    zoom: 1;
}

/*  `Simplas
------------------------------------------------------------------------------------------------------*/
.menu ul {
    padding-top: 8px;
}
.menu ul li a {
    font-size: 14px;
}
.callnow {
    margin-bottom: 8px;
}
.callnow span {
    font-size: 32px;
    letter-spacing: 3px;
}
.callnow h5 {
    margin-bottom: 5px;
    font-family: 'Segoe UI';
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
}
/*#youtube-sidebar-widget ul li div.play_arrow {
    display: none;
}*/

.box ul {bottom: 25px;}
.box li a {font-size: 12px;}
.threeblock p {min-height: 133px;}
.post h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.header .logo {
    width: 385px;
}
.header .logo + .grid_5 {
    text-align: right;
    width: 285px;
}

/*DIASTASYS RECTI STYLES START*/


.dias_symptoms div:nth-child(1){
    font-size: 45px;
}
.dias_symptoms div:nth-child(2){
    font-size: 14px;
    margin: 5px 0 22px 0;
}
.full_rid_line{
    background-size: cover;
    height: auto;
}
.dias_symptoms div:nth-child(2){
    width: 437px;
}
.treatment{
    height: 179px;
}
.treatment_title{
    font-size: 53px;
}
.treatment_desc{
    font-size: 15px;
}
.advantage{
    height: 400px;
}

.foot_treat{
    height: 600px;
    background-size: cover;
}
.f_and_a_symptomes{
    font-size: 40px;
}
.f_and_a_symptomes_desc{
    padding: 0 15px;
}
.house_line img{
    margin-top: -290px;
    height: 440px;
}
.sciat_orange_title{
    font-size: 53px;
}

/*DIASTASYS RECTI STYLES END*/

/*Sacroiliac joint pain STYLES START*/
.section-sacroiliac .headertext h3 {
    font-size: 65px !important;
}
.section-sacroiliac {
    background-position: 39% 0 !important;
}
/*Sacroiliac joint pain STYLES END*/

/*Postural reeducation STYLES START*/
.img-green-and-red img + img {
    margin-top: 20px;
}
.section3 .first-block {
    margin-top: -390px !important;
}
.strip-small {
    height: 75px !important;
    top: -63px !important;
    line-height: 75px !important;
}
.section3 .first-block {
    margin-top: -400px !important;
}
.for-example {
    left: -210px !important;
    top: 236px !important;
    padding: 20px 40px 0px 20px !important;
}
.section3 .second-block {
    margin-top: 40px !important;
}
/*Postural reeducation STYLES END*/




#menu-item-33 > ul.sub-menu {
    margin-left: -208px;
}

#menu-item-17 .left-section li,
#menu-item-17 .right-section li {
    width: 245px;

}

#menu-item-17 .right-section {
    margin-left: 230px;
}

#menu-item-17 #menu-item-769 {
    line-height: 25px;
}

#menu-item-23 .left-section li,
#menu-item-23 .right-section li {
    width: 250px;
}

#menu-item-23 .left-section {
    margin-left: -150px;
}
#menu-item-23 .right-section {
    margin-left: 130px;
}
#menu-item-3362 {
    height: 63px;
}

#menu-item-3362, x:-moz-any-link {
    height: 64px;
}

/*Acupuncture Start*/
.acupuncture h1{
    margin: 29% 0 10% 0;
}
.mans_help_list{
    font-size: 15px;
}
.acupuncture_is_wrapper h3{
    margin-left: 30%;
}
/*Acupuncture End*/
.service_img a img{
    width: 132px;
}
.banner-text{
    width: 170px!important;
}
.banner-text div{
    font-size: 18px!important;
}
.banner-text div span{
    font-size: 25px!important;
}
.testimonials-link{
    font-size: 30px!important;
    text-align: left!important;
}
#list p:first-child,#list p:nth-child(2){
    font-size: 26px!important;
}
/*  mid-back  */
.black_head {
    margin-top: -92px !important;
}
.text_on_block p {
    font-size: 17px !important;
}
.text_on_block h3 {
    font-size: 30px !important;
}
.center_b {
    width: 100% !important;
}
.center_block_6 .grid_6 {
    width: 78% !important;
}
.mobile_triangel {
    right: 40% !important;
    top: 34px !important;
    display: none;

}
.center_block_6 div img {
    right: 19px !important;
}
.center_block_6 p {
    font-size: 12px !important;
}

.paragraf p {
    font-size: 14px !important;
}
.paragraf {
    width: 71%!important;
}
.center_block_2 div img {
    width: 80% !important;
}
.center_block_2 {
    margin: 30px auto 0 !important;
}
.center_block_2 p {
    font-size: 15px !important;
}
.center_block div img {
    width: 112% !important;
}
.center_block_2 div {
    width: 47%!important;
}
.img_numbers {
    margin-top: 30px !important;
    width: 71% !important;
}
.center_block_4 div {
    width: 47%!important;
}
.center_block_5 div {
    width: 47%!important;
}
.center_block_5 div ul li p {
    font-size: 12px !important;
}
.nodler {
    font-size: 25px !important;
}
.function {

}
.center_block_5 div ul li {
    line-height: 1.7!important;
}
.kos {
    margin-left: -7% !important;
}
.center_block_5 div img {
    top: 8px !important;
}
.center_block_3 h2 {
    margin: 80px 0 45px !important;
}
.center_block_4 div img {
    padding: 4px 0 0 30px !important;
    width: 78% !important;
}
/*  mid-back  */

/*PFPS START*/

.pfps_block{
    height: 95px;
    top: 47%;
}
.block_h1{
    top: 46.5%;
}
.pfps h1{
    font-size: 20px;
}
.pfps_risk{
    font-size: 120px;
}
.pfps_factors{
    font-size: 60px;
}
.pfps_treatment_bg img{
    width: 90%;
}
.imac_img{
    margin-top: -213px;
    width: 40%;
    margin-right: -25px;
}
.pfps_ps{
    padding-top: 10px;
}
.pfps_black_bg p{
    font-size: 14px;
}
.pfps_black_bg h3{
    font-size: 20px;
}
.really_pfps p{
    font-size: 16px;
}
/*
PFPS END*/


/*PLANTARS FASCIITIS START*/

.plantars_text h3,.plantars_symp h3,.plantars_diagnosis h3,.plantars_differential_diagnosis h3,.plantars_risk_factors h3,.plantar_treatment h3{
    font-size: 24px;
}
.plantars_text h2,.plantars_symp h2,.plantars_diagnosis h2,.plantars_differential_diagnosis h2,.plantars_risk_factors h2,.plantar_treatment h2 {
    font-size: 24px;
}
.plantars_head p,.plantars_symp p,.plantars_diagnosis p,.plantar_risk_text,.plantar_treatment p{
    font-size: 16px;
}

.plantar_problem{
    width: 32%;
}

/*PLANTARS FASCIITIS END*/

/*SM START*/

.sm_skill_1, .sm_skill_2, .sm_skill_3, .sm_skill_4,.sm_skill_5, .sm_skill_6{
    height: 95px!important;
    width: 95px!important;
}
.sm_skill_1 p, .sm_skill_2 p, .sm_skill_3 p, .sm_skill_4 p,.sm_skill_5 p, .sm_skill_6 p{
    font-size: 10px!important;
}
.sm_skill_5 span{
    font-size: 8px!important;
    line-height:0.1em!important;
}

.sm_skill_6 p{
    padding-top: 63% !important;
}
.sm_skill_5 p:first-child{
    line-height: 0.1em!important;
    padding-top: 58% !important;
}
.sm_skill_5 p{
    line-height: 0.1em!important;
}
.sm_sport_left,.sm_medicine_right,.sm_skills,.sm_return_to_sports_wrapper h1,.sm_analysis h1,.sm_dns_for_sports_wrapper h1,.sm_CBWBST_wrapp h1,.sm_CBWBSA_wrapper h1{
    font-size: 55px;
    text-align: center;
}
.sm_CBWBSA_wrapper_bottom p,.sm_CBWBST_wrapp p,.sm_dns_for_sports_wrapper p,.sm_analysis_bottom p,.analysis_middle_text_wrapper ul li,.analysis_middle_text_wrapper b,.analysis_middle_text_wrapper p,.sm_return_to_sports_wrapper p,.sm_skills_text p,.sm_in_order{
    font-size: 16px;
}
.sm_medicine_right p{
    font-size: 40px;
}
.sm_button{
    margin-left: 236px;
}
.sm_skills_wrapper{
    height: 245px;
}

/*SM END*/

.main_page_block_wrapper img{
    padding: 0;
}
.main_page_block_wrapper{
    width: 31.9%;
}
.menu {
    min-height: 70px!important;
}
/*ACL START*/

.full-width-acl {
    width: 100%;
}
.acl-margin {
    margin: -46px auto -47px !important;
}
.acl-bg-1 {
    background: url(/wp-content/themes/nydnr/images/img-acl/acl-1img.png)no-repeat;
    background-position: center center;
}
.acl-bg-1-1 {
    background-color: rgba(0, 0, 0, 0.8);
    float: right !important;
}
.acl-text-block-1 h2,
.acl-text-block-1 h1 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 65.03px;
    line-height: 1;
    margin: 66px 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-1 h3,
.acl-text-block-1 span {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin: 0;
    padding: 0;
    text-align: center;
}
.acl-text-block-1 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 100;
    margin: 195px 0 215px;
    padding: 0 10px;
    text-indent: 42px;
    text-align: justify;
}
.acl-bg-2 {
    background-color: #010101;
}
.flov-r {
    float: right!important;
}
.acl-text-block-2 div img{
    margin: 96px auto 67px;
}
.acl-text-block-2 div h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 48px;
    line-height: 1;
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-2 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 100;
    margin: 70px 0;
    padding: 0;
    text-indent: 42px;
    text-align: justify;
}
.acl-text-block-3 h2 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 90px 0 83px 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-3 div p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 100;
    margin: 0 0 45px;
    padding: 0;
    text-indent: 42px;
    text-align: justify;
}
.acl-text-block-3 div p strong {
    font-style: italic;
}
.acl-text-block-3 div p:last-child {
    margin: 0 0 100px;
}
.acl-text-block-3 div {
    margin-left: 98px!important;
}

.acl-bg-4 {
    background-color: #010101;
}
.acl-text-block-4 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 45px;
    line-height: 1;
    margin: 60px 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-4 div img {
    margin: 75px 0 60px;
}
.acl-text-block-4 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 100;
    margin: 145px 0 155px;
    padding: 0;
    text-indent: 42px;
    text-align: justify;
}
.acl-text-block-5 h2 {
    color: #ff6666;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 40px 0 30px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-5 h3 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 25px;
    line-height: 1;
    margin: 0 0 45px;
    padding: 0;
    text-align: center;
}
.acl-text-block-5 h4 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 25px;
    line-height: 1;
    margin: 0 0 15px;
    padding: 0;
    text-align: center;
}
.acl-text-block-5 h5 {
    margin: 45px 0 15px 0;
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 25px;
    line-height: 1;
    padding: 0;
    text-align: center;
}
.acl-text-block-5 div {
    background-color: #ff6666;
}
.acl-text-block-5 div:last-child {
    content: "";
    margin: 0 0 70px 0;
}
.acl-text-block-5  div ul{
    padding: 27px 0 20px 62px;
}
.acl-text-block-5 div ul li {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}
.acl-text-block-5 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin: 0;
    padding: 25px 0 30px;
    text-align: center;
}
.acl-bg-5 {
    background-color: #cccccc;
}
.acl-text-block-6 {
    margin-left: 185px!important;
}
.acl-text-block-6 h2 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 27px 0 40px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-6 p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 100;
    margin: 0 0 45px;
    padding: 0;
    text-indent: 42px;
    text-align: justify;
}
.acl-bg-6 {
    background-color: #010101;
}
.acl-text-block-7 div h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 65px 0 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-7 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    margin: 45px 0 29px;
    padding: 0;
    text-align: left;
}
.acl-text-block-7 div img {

}
.acl-bg-7 {
    background: url(/wp-content/themes/nydnr/images/img-acl/acl-5img.png)no-repeat;
    background-position: center center;
}
.acl-text-block-8 {
    margin-left: 125px!important;
}
.acl-text-block-8 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 65px 0 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-8 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
    margin: 75px 0 110px 0;
    padding: 0;
    text-align: justify;
    text-indent: 42px;
}
.acl-text-block-9 h2 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 60px 0 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-9 div p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    margin: 32px 0 82px 0;
    padding: 0;
    text-align: justify;
    text-indent: 42px;
}
.acl-bg-8 {
    background-color: #66ccff;
}
.acl-text-block-10 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 25px 0 30px 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.acl-text-block-10 h3 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 25px;
    line-height: 1;
    margin: 0 0 50px 0;
    padding: 0;
    text-align: center;
}
.acl-text-block-10 p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
    margin: 27px 0 0 0;
    padding: 0;
    text-align: justify;
    text-indent: 42px;
}
.acl-text-block-10 p:last-child {
    margin: 27px 0 57px 0;
}
.acl-bg-9 {
    background: url(/wp-content/themes/nydnr/images/img-acl/acl-6img.png)no-repeat;
    background-position: center center;
}
.acl-text-block-11 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 47px;
    line-height: 1.2;
    margin: 40px 0 50px;
    padding: 0;
    text-align: center;
}
.acl-text-block-11 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 42px;
}
.acl-text-block-11 div p:last-child {
    margin: 0 0 120px 0;
}
.mbile-acl {
    display: none;
}
.mobile-acl-active {
    display: none;
}
.mobile-acl-del {
    display: block;
}
/*ACL END*/



/*CTS START*/
.full-width-cts {
    width: 100%;
}
.cts-section-0-1 {
    position: relative;
}
.cts-section-1 {
    position: absolute;
    top: 50px;
    right: 0;
}
.cts-section-1 h2 {
    color: #660099;
    font-family: Roboto;
    font-size: 110px;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: right;
}
.cts-section-1 h3 {
    color: #990066;
    font-family: Roboto;
    font-size: 45px;
    line-height: 0.6;
    font-weight: 100;
    margin: 0;
    padding: 0;
    text-align: right;
}
.cts-section-0-2 {
    width: 83%;
}

.cts-section-2 {
    background-color: #006699;
}
.cts-section-2-1 {
    float: right!important;
}
.cts-section-2-1 p {
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    color: #fff;
    text-align: justify;
    text-indent: 34px;
    line-height: 1;
}
.cts-section-3 {
    position: relative;
}
.cts-section-3-1 {
    bottom: 50px;
    position: absolute;
    right: 0;
    top: 475px;
    width: 47%;
}
.cts-section-3-1 p {
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    color: #000;
    text-align: justify;
    text-indent: 34px;
    line-height: 1;
    font-weight: 100;
}
.cts-section-3-2 {
    width: 100%;
}
.cts-section-4 {
    background-color: #990066;
    position: relative;
}
.cts-section-4-1 {
    margin-left: 185px !important;
}
.cts-section-4-1 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin: 30px 0 20px;
    padding: 0;
    text-align: center;
}
.cts-section-4-1 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1;
    margin: 0 0 30px;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-5 {
    background-color: #660033;
    position: relative;
}
.cts-section-5:before {
    border-top: 16px dashed #fff;
    top: -8px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;

}

.cts-section-5-1 {

}
.cts-section-5-1 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin: 48px 0 60px;
    padding: 0;
    text-align: center;
}
.cts-section-5-2 {
    margin-left: 0 !important;
}
.cts-section-5-2  h3{
    color: #fff;
    font-family: Roboto;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 5px;
    padding: 0;
    text-align: center;
}
.cts-section-5-2 h4 {
    color: #fff;
    font-family: Roboto;
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 28px;
    padding: 0;
    text-align: center;
}
.cts-section-5-2 h5 {
    color: #fff;
    font-family: Roboto;
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 70px;
    padding: 0;
    text-align: center;
}
.cts-section-5-3 {
    margin-right: 0 !important;
    margin-top: 30px;
}
.cts-section-5-3 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0 0 24px;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-6 {
    background-color: #330033;
    position: relative;
}
.cts-section-6:before {
    border-top: 16px dashed #fff;
    top: -8px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;

}

.cts-section-6-1 {
    margin-bottom: 60px;
}
.cts-section-6-1 h2 {
    font-size: 150px;
    font-family: Roboto;
    color: #fff;
    margin: 50px 0;
    text-align: center;
}
.cts-section-6-1 h2 span {
    font-size: 100px;
    font-family: Roboto;
    color: #fff;
}
.cts-section-6-1 h3 {
    font-size: 35px;
    font-family: Roboto;
    color: #fff;
    margin: 0 0 100px;
    text-align: center;
    font-weight: 100;
}
.cts-section-6-1 h4 {
    font-size: 50px;
    font-family: Roboto;
    color: #fff;
    margin: 0 0 37px;
    text-align: center;
    font-weight: 100;
}
.cts-section-6-2 {
    margin: 0 auto;
    width: 80%;
}
.cts-section-6-2 h3 {
    color: #fff;
    float: left;
    font-family: Roboto;
    font-size: 150px;
    text-align: center;
    width: 35%;
    font-weight: bold;
    margin: 0;
}
.cts-section-6-2 h3 span {
    font-size: 100px;
    font-family: Roboto;
    color: #fff;
}
.cts-section-6-2 h4 {
    color: #fff;
    float: left;
    font-family: Roboto;
    font-size: 40px;
    text-align: center;
    width: 20%;
    margin: 100px 0 0;
}
.cts-section-6-2 h5 {
    color: #fff;
    float: left;
    font-family: Roboto;
    font-size: 150px;
    text-align: center;
    width: 45%;
}
.cts-section-6-2 h5 span {
    font-size: 100px;
    font-family: Roboto;
    color: #fff;
}
.cts-section-6-3 {
    color: #fff;
    font-family: Roboto;
    font-size: 29px;
    font-weight: 100;
    text-align: left;
    width: 50%;
    margin: 0;
    float: left;
}
.cts-section-6-4 {
    color: #fff;
    float: left;
    font-family: Impact;
    font-size: 29px;
    font-weight: 100;
    text-align: center;
    width: 50%;
    margin: 0;
}
.cts-section-7 {
    background: rgba(0, 0, 0, 0) url("/wp-content/themes/nydnr/images/img-cts/cts-img-3.png") no-repeat scroll left top / 52% 100%;
    position: relative;
}
.cts-section-7:before {
    border-top: 16px dashed #330033;
    top: -8px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
}
.cts-section-7-1 {

}
.cts-section-7-2 {
    margin: 0;
    float: right!important;
}
.cts-section-7-2 h2 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 45px;
    font-weight: bold;
    line-height: 0;
    margin: 50px 0;
    padding: 0;
    text-align: center;
}
.cts-section-7-2 p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1;
    margin: 45px 0 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-7-2 p strong {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-8 {
    margin: 40px 0 0;
}
.cts-section-8 div img {
    float: left;
    margin-left: 90px;
    width: 22%;
}
.cts-section-8 div div p {
    color: #336666;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-8-1 {
    float: left;
    margin: 55px 0 0 25px;
    width: 50%;
}
.cts-section-9 {
    margin: 40px 0 50px;
}
.cts-section-9 div img {
    float: left;
    margin-left: 140px;
    width: 22%;
}
.cts-section-9 div div p {
    color: #336666;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-9-1 {
    float: left;
    margin: 18px 0 0 25px;
    width: 50%;
}
.cts-section-10 {
    background-color: #336666;
    position: relative;
}
.cts-section-10 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.5;
    margin: 30px 0 30px 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-11 {

}
.cts-section-11 h2 {
    color: #5a308d;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin: 75px 0 65px 0;
    padding: 0;
    text-align: center;
}
.cts-section-11-1 {
    margin: 0 auto;
    width: 40%;
    position: relative;
}
.cts-section-11 div ul {
    margin: 0 0 80px;
}
.cts-section-11 div ul li p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    margin: 10px 0 0 40px;
    padding: 0px;
    text-align: left;

}

.cts-section-11 div ul li:nth-child(1):before {
    content: "1";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #5a308d;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-11 div ul li:nth-child(2):before {
    content: "2";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #5a308d;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-11 div ul li:nth-child(3):before {
    content: "3";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #5a308d;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-11 div ul li:nth-child(4):before {
    content: "4";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #5a308d;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 {
    background-color: #660000;
    position: relative;
}
.cts-section-12:before {
    border-top: 16px dashed #fff;
    top: -8px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;

}
.cts-section-12 h2 {
    color: #cc2229;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin: 75px 0 65px 0;
    padding: 0;
    text-align: center;
}
.cts-section-12-1 {
    margin: 0 auto;
    width: 65%;
    position: relative;
}
.cts-section-12 div ul {
    margin: 0 0 80px;
}
.cts-section-12 div ul li p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    margin: 10px 0 0 40px;
    padding: 0px;
    text-align: left;

}

.cts-section-12 div ul li:nth-child(1):before {
    content: "1";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 div ul li:nth-child(2):before {
    content: "2";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 div ul li:nth-child(3):before {
    content: "3";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 div ul li:nth-child(4):before {
    content: "4";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 div ul li:nth-child(5):before {
    content: "5";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-12 div ul li:nth-child(6):before {
    content: "6";
    position: absolute;
    color: #fff;
    margin: 6px 0 0;
    padding: 0;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    background-color: #cc2229;
    border-radius: 50%;
    height: 30px;
    width: 30px;

}
.cts-section-13 {
    background: rgba(0, 0, 0, 0) url("/wp-content/themes/nydnr/images/img-cts/cts-img-6.png") no-repeat scroll right top / contain ;
    position: relative;

}
.cts-section-13 div div h2 {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 0;
    margin: 50px 0 50px 0;
    padding: 0;
    text-align: center;
}
.cts-section-13 div div p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-14 {
    background: rgba(0, 0, 0, 0) url("/wp-content/themes/nydnr/images/img-cts/cts-img-7.png") no-repeat scroll center center / cover ;
    margin-top: 75px;
}
.cts-section-14 div div h2 {
    color: #336666;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 0;
    margin: 0;
    padding: 20px 0;
    text-align: left;
}
.cts-section-14 div div p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    left: 29px;
    line-height: 1.3;
    margin: 0 0 0 90px;
    padding: 0;
    position: relative;
    text-align: justify;
    text-indent: 34px;
    top: 40px;
    width: 62%;
}
.cts-section-14 div div p:last-child {
    content: "";
    padding: 12px 0 130px;
}
.cts-section-15 {

}
.cts-section-15 h2 {
    color: #1e71b8;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 60px;
    padding: 0;
    text-align: center;
}
.cts-section-15 p {
    color: #1e71b8;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0 0 65px;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-16 {
    background-color: #1e71b8;
    position: relative;
}
.cts-section-16 h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 55px;
    font-weight: bold;
    line-height: 1;
    margin: 50px 0 70px;
    padding: 0;
    text-align: center;
}
.cts-section-16 p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-indent: 34px;
}
.cts-section-16 img {
    margin: 50px 12px 35px;
}
.cts-section-16 p>a{
    color: #fff;
}
.cts-section-7-mobele {
    display: none;
}
.cts-section-13-mobele {
    display: none;
}
.cts-section-14-mobele {
    display: none;
}
/*CTS END*/

.back_pain_head_title .title-landing{
    font-size: 64px;
    color: white;
}
.back_pain_head_title{
    margin-top: 17%;
}
.bp_head_img_section{
    height: 45px;
    margin-right: 10%;
}
.bp_head_img_section{
    font-size: 26px;
}
.bp_neck_section_2{
    margin-top: 40%;
}
.bp_neck_section_3{
    margin-top: 25%;
}
.back_pain_our_app_img1,.back_pain_our_app_img2,.back_pain_our_app_img3{
    background-size: cover;
    width: 32%;
}

/* mid paine 720  */

/*Style Home Page  */
/*The First block*/
.section1-hip
{
    height: 600px;
    background: url(../images/landing-hip/woman-doing-yoga.jpg) no-repeat;
    background-position: center center;
    background-size: cover;

}
#block_with_text
{
    left: 40%;
    position: relative;
    top: 30%;
    width: 57%;
}
#First_title_of_first_block
{
    color: #fff;
    font-family: Arial;
    font-size: 59px;
    font-weight: bold;
    line-height: 1.4;
}
#Second_title_of_first_block
{
    color: #fff;
    font-family: Arial;
    font-size: 65px;
}
#triangle
{
    height: 62px;
    position: relative;
    top: 4px;
    width: 171px;
}
/*The Second block*/
.section2-hip
{
    height: 340px;
    background: url(../images/landing-hip/colored_blocks.png) no-repeat;
    background-position: center center;
    background-size: cover;

}
#Colored_blocks
{
    margin: 0 auto;
    width: 100%;

}
.Pink_block
{
    float: left;
    margin: 0 10px;
    padding: 0;
    width: 45%;
}
.Pink_block h2
{
    color: #ffffff;
    font-family: Arial;
    font-size: 64px;
    font-weight: bold;
    line-height: 2;
    text-align: right;
}
.Pink_block p
{
    color: #ffffff;
    font-family: Arial;
    font-size: 20px;
    text-align: justify;
    text-indent: 35px;

}
.Red_block
{
    float: left;
    margin: 0 10px;
    width: 45%;
}
.Red_block h2
{
    color: #ffffff;
    font-family: Arial;
    font-size: 56px;
    font-weight: bold;
    line-height: 2.3;
    text-align: center;
}
.Red_block p
{
    color: #ffffff;
    font-family: Arial;
    font-size: 20px;
    line-height: 1.1;
    text-align: left;
    text-indent: 35px;
}
/*The Third block*/
.section3-hip
{
    margin: 0 auto;
    width: 100%;
}
.section3-hip  h2
{
    font-family: Arial;
    font-size: 57px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    color: #000;
    margin-top: 60px;
}

.section3-hip  p
{
    font-family: Arial;
    font-size: 19.74px;
    line-height: 1.2;
    padding: 20px 0 0;
    text-align: justify;
    text-indent: 35px;
    margin: 0 10px;
}
.section3-hip  img
{
    height: 578px;
    margin: 52px auto 0;
    width: 86%;
}
/*The Fourth block*/
.section4-hip
{
    height: 877px;
    background: url(../images/landing-hip/apparatus_for_testin2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 43px;

}
#Advantage
{
    background-color: rgba(255, 255, 255, 0.89);
    margin: 0 auto;
    position: relative;
    top: 56px;
    width: 100%;
    height: 500px;
}
#Advantage h2
{
    font-family: Arial;
    font-size: 57px;
    font-weight: bold;
    line-height: 1.3;
    padding: 55px 0 0;
    text-align: center;
    color: #000;
}
#Advantage p
{
    font-family: Arial;
    font-size: 19.74px;
    line-height: 1.2;
    margin: 0 18px;
    padding: 52px 0 0;
    text-align: justify;
    text-indent: 35px;
}
/*The Fifth block*/
.section5-hip
{
    height: 236px;
    background: url(../images/landing-hip/Conditions_treated.png) no-repeat;
    background-position: center center;
    background-size: cover;

}
.section5-hip h2
{
    color: #ffffff;
    font-family: Arial;
    font-size: 64px;
    font-weight: bold;
    line-height: 1.3;
    padding: 26px 0 0;
    text-align: center;
}
/*The Sixth block*/
.section6-hip
{
    height: 862px;
    background: url(../images/landing-hip/manipulation.png) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    bottom: 31px;
    position: relative;
    z-index: -2;
}
#Translucent_block
{
    background-color: rgba(255, 255, 255, 0.58);
    width: 100%;
    height: 325px;
}
#Translucent_block p
{
    font-family: Arial;
    font-size: 19.74px;
    line-height: 1.2;
    margin: 0 auto;
    padding: 43px 0 0;
    text-align: justify;
    width: 420px;
}
/*The Seventh block*/
.container_12 {
}
.container_12 {
    z-index: 0;
}
.container_12:before, .container_12:after {
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}
.section7 {
    border-bottom: 1px solid #888888;
    margin-bottom: 45px;
}
.section7 > div.full-width-div {
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 45px;
}
.section7 .contact-form {
    margin: 0 auto;
    width: 100%;
}
.section7 .contacts {
    font-size: 18px;
    width: 100%;
    margin: 0 auto;
}
.section7 .contacts p span {
    color: #888888;
    display: inline-block;
    line-height: 32px;

}

.section7 .description-contact{ color: #333 !important;}

.section7 .contact-form input, .section7 .contact-form textarea {
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    padding: 0 2%;
    width: 96% !important;
}
.section7 .contact-form input {
    height: 40px;
    margin-bottom: 5px;
}
.section7 .contact-form label {
    font-size: 18px;
    margin-left: 0;
}
.section7 .contact-form .ninja-forms-required-items {
    bottom: 5px;
    position: absolute;
    width: 135px;
}
.section7 .contact-form input[type="submit"] {
    background: none repeat scroll 0 0 #fff;
    border-color: #1fabff;
    color: #1fabff;
    font-size: 18px;
    width: 145px !important;
}
div.sidebar_contact {
    display: none;
}

/* mid pain 720  */


/* shulder pain 720  */

.top-shulder {
    margin-top: 156px;
}
.shoulder_top_title {
    font-size: 60px !important;
}
.shoulder_top_title strong {
    font-size: 35px !important;
}
.shoulder_top_title2 {
    font-size: 80px !important;
}
/*  shulder pain 720 */


/* Apos New Landing Start */

/* Section 1 */
.apos-new-full-width {
    width: 100%;
}
.apos-new-bg-1 {
    background: url(/wp-content/themes/nydnr/assets/images/landing-apos-new/apos_new_1.png) no-repeat;
    background-position: top center;
    height: 671px;
}
.apos-new-block-red-1 {
    float: right;
    margin: 140px 0 0;
    width: 51%;
}
.apos-new-block-red-1 h2 {
    background-color: #cd342f;
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-weight: 100;
    font-size: 50px;
    margin: 0;
    padding: 7px 0 34px 10px;
}

/* Section 2 */

.apos-new-bg-2 {
    background: url(/wp-content/themes/nydnr/assets/images/landing-apos-new/apos_new_2.png) no-repeat;
    background-position: top center;
    height: 807px;
    position: relative;
}
.apos-new-block-red-2 {
    position: absolute;
    right: 0;
    top: 144px;
    width: 81%;
}
.apos-new-block-red-2 h2 {
    background-color: #cd342f;
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 0;
    padding: 0 0 20px 10px;
}
.apos-new-block-red-3 {
    background-color: #cd342f;
    height: 807px;
    margin: -1px 0 0 38%;
    width: 50%;
}
.apos-new-block-red-3 p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 280px 25px 0 15px;
    text-align: justify;
    text-indent: 35px;
}

/* Section 3  Video*/

/* Section 4 */
.apos-new-block-text {

}
.apos-new-block-text p {
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    margin: 45px auto 50px;
    text-align: justify;
    text-indent: 35px;
    width: 80%;
}
.apos-new-block-red-4 {
    background-color: #cd342f;
    float: right;
    margin-top: 48px;
    width: 90%;
}
.apos-new-block-red-4 h2 {
    background-color: #cd342f;
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-weight: 100;
    font-size: 35px;
    margin: 0;
    padding: 7px 0 34px 10px;
}

/* Section 5 */

.apos-new-img {

}
.apos-new-img img {

}

/* Section 6 */

.apos-new-block-text-2 {

}
.apos-new-block-text-2 p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    text-align: justify;
    text-indent: 35px;
    margin: 50px auto 35px;
    padding: 0;
    line-height: 1;
    width: 80%;
}
.apos-new-block-red-5 {
    background-color: #cd342f;
    float: right;
    margin-top: 120px;
    width: 90%;
}
.apos-new-block-red-5 h2 {

    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-weight: 100;
    font-size: 35px;
    margin: 0;
    padding: 7px 0 34px 10px;
}
.apos-new-block-text-3 {

}
.apos-new-block-text-3 p {
    color: #000;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    text-align: left;
    text-indent: 35px;
    font-style: italic;
    margin: 0 auto 0;
    padding: 0;
    line-height: 1.5;
    width: 80%;

}
.apos-new-block-text-3 p:last-child {
    margin: 0 auto 120px;
}

/* Section 7 */

.apos-new-blue {
    background-color: #608bc7;
}
.apos-new-blue h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-weight: 100;
    font-size: 55px;
    margin: 0;
    padding: 40px 0 60px 0;
    text-align: center;
}

/* Section 8  Video*/

/* Section 9 */

.apos-new-blue-2 {
    background-color: #608bc7;
}
.apos-new-blue-2 div {
    width: 80%;
    margin: 0 auto 0;
    padding: 45px 0 10px;
}

.apos-new-blue-2 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    text-align: justify;
    text-indent: 35px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;


}
/* Section 10 */

.apos-new-blue-3 {
    background-color: #3399ff;
}
.apos-new-blue-3 div {

}
.apos-new-blue-3 div h2 {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-weight: 100;
    font-size: 55px;
    margin: 0;
    padding: 50px 0 70px 0;
    text-align: center;
}
.apos-new-blue-3 div p {
    color: #fff;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 auto;
    padding: 0 0 80px;
    text-align: justify;
    text-indent: 35px;
    width: 80%;
}
.apos-new-clear {
    clear: both;
}
.apos-new-video-1 {
    width: 100%;
}
.apos-new-video-1 div {
    width: 100%;
}
.apos-new-video-1 div video {
    width: 100%;
}
.apos-new-video-2 {
    width: 100%;
}
.apos-new-video-2 div {
    width: 100%;
}
.apos-new-video-2 div video {
    width: 100%;
}
/* Apos New Landing End */

.apos-new-text-pain {
    position: relative;
}
.apos-new-text-pain h4 {
    font-size: 18px;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1.3;
    margin: 40px 0 0 0;
    padding: 0;
}
.apos-new-text-pain-2 {
    position: relative;
}
.apos-new-text-pain-2 h4 {
    font-size: 18px;
    color: #000;
    text-align: center;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1.3;
    margin: 40px 0 40px 0;
    padding: 0;
}
.apos-new-text-pain-3 {
    display: block;
    float: left;
    background: #000;
}
.apos-new-text-pain-3 h4 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1.3;
    margin: 65px 0 70px 0;
    padding: 10px 0;
}
.apos-new-imgz {
    margin: 0 auto;
    width: 90%;
}
.apos-new-imgz-1 {
    width: 40%;
    float: left;
    margin: 70px 0 0 0;
}
.apos-new-imgz-1  img {

}
.apos-new-imgz-1  p {
    font-size: 14px;
    color: #fff;
    text-align: left;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1;
    margin: 10px 0 0px 0;
    padding: 10px 0 0 28px;
}
.apos-new-imgz-2-3 {
    width: 60%;
    float: left;
}
.apos-new-imgz-2 {
    float: left;
    width: 100%;
}
.apos-new-imgz-2 img {
    float: left;
}
.apos-new-imgz-2  p {
    font-size: 14px;
    color: #FFF;
    text-align: left;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1;
    margin: 80px 0px 0px 195px;
    padding: 0 0 0 40px;
}
.apos-new-imgz-3 {
    float: left;
    width: 100%;
    margin: 15px 0;
}
.apos-new-imgz-3 img {
    float: left;

}
.apos-new-imgz-3 p {
    font-size: 14px;
    color: #FFF;
    text-align: left;
    font-family: 'Segoe UI', 'Tajawal', sans-serif;
    line-height: 1;
    margin: 80px 0px 0px 195px;
    padding: 0 0 0 40px;
}