@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&amp;display=swap');
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
/*
@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url('../../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url('../../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
   font-family: 'Montserrat', sans-serif;
    src: url('../../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
*/

@font-face {
    font-family: 'Arial-Bold';
    src: url('../../fonts/arial-bold.html') format('woff2'),
        url('../../fonts/arial-bold-2.html') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
}



.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }

}



.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}


@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

}



.main-navigation {
    width: 1200px;
    padding: 0 15px;
    margin: auto;
}

.logo {
    width: 25%;
}

.navigation {
    width: 75%;
}

.main-navigation {
    display: flex;
    flex-wrap: initial;
    align-items: center;
}

.navigation {
    float: right;
}

.navigation ul li {
    display: inline-block;
    padding: 0 20px;
}

header {
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: auto;
    background: transparent;
    align-content: stretch;
    justify-content: space-evenly;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
}

ul {
    float: right;
}

.navigation ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 19.2px;
}

.navigation ul {
    padding: 0;
    margin: 0;
}

section.header-banner {
    height: auto;
    background: url(../images/banner.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 278px;
    padding-bottom: 269px;
}

section.why-cancer {
    padding: 80px 0;
    text-align: center;
    background: #d3e2f5;
}

.foot-bottom {
    height: 20px;
    background: #7995ad;
}

footer {
    padding: 80px 0 40px;
    background: #eff3f6;
}

footer h3 {
    text-align: center;
    padding: 20px 0;
}

footer img {
    width: 280px;
    height: 60px !important;
}

.foot-img {
    text-align: center;
}

.copy-rights-texts {
    padding-top: 60px;
}

.copy-rights-texts p {
    margin: 0;
}

.copy-rights-texts {
    text-align: center;
}

section.make-enquiry {
    background: #eff3f6;
    padding: 80px 0;
}

.eng-text a {
    text-decoration: none;
    background: #49a2a8;
    padding: 0px 30px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 41px;
    border: 1px solid #49a2a8;
    transition: all 0.5s ease;
    letter-spacing: 1px;
    width: 275px;
    display: inline-block;
    height: 45px;
    text-align: center;
}

.eng-text {
    padding: 20px 0;
}

.eng-sect {
    text-align: center;
}

.eng-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    height: 78px;
    color: #2c2c2c;
    font-weight: 400;
}

.title h2 {
    font-size: 50px;
    line-height: 62px;
    padding-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.title {
    text-align: center;
}

section.good-times {
    padding: 80px 0;
    background: #d3e2f5;
}

section#make-the-good-times-last .col-md-5.col-sm-12 {
    display: table;
}

/*section.good-times .row {
    display: flex;
    align-items: center;
}*/

.mk-text h2 {
    font-size: 50px;
    line-height: 54px;
    padding-bottom: 30px;
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 500;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    margin: 0;
}

.mk-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    font-weight: 400;
    color: #2c2c2c;
}

.play img {
    width: 50px;
    height: 50px;
}

.play {
    text-align: center;
    position: absolute;
    left: 29%;
    margin-top: 174px;
}

section.dection {
    padding: 80px 0;
    background: #edede5;
}

.head-left h2 {
    font-size: 40px;
    line-height: 52px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #2c2c2c;
}

.hd-txt p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    font-weight: 400;
    color: #2c2c2c;
}

/*.h-ft a {
    font-size: 16px;
    line-height: 45px;
    background: #337598;
    color: #fff;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 30px;
    box-shadow: none;
    border: 1px solid #337598;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}*/

a.related-articles {
    color: #000;
    text-decoration: none;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 85px;
    height: 100%;
    width: 100%;
}

.feat-sectn img {
    width: 100%;
}

.feat-sectn h3 {
    font-size: 22px;
    line-height: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
    padding-top: 10px;
    margin: 0;
    padding-bottom: 10px;
}

.copyrights h3 {
    font-size: 24px;
    line-height: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    padding-bottom: 50px;
}

.feat-sectn p {
font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #2c2c2c;
    width: 100%;
}

section.feat-stories {
    padding: 80px 0;
}

.feat-sectn .play {
    text-align: center;
    position: absolute;
    left: 27%;
    margin-top: 174px;
}

.fetat-title {
    text-align: center;
}

.fetat-title h2 {
    font-size: 50px;
    line-height: 62px;
    padding-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.copy-rights-texts p {
    font-size: 18px;
    line-height: 25px;
    /* padding-bottom: 40px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.play2 img {
    width: 50px;
    height: 50px;
}

.play2 {
    text-align: center;
    position: absolute;
    text-align: center;
    position: absolute;
    left: 70%;
    margin-top: 174px;
}

section.header-banner .row {
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
}

/*.banner-text h1 {

    font-size: 60px;
    line-height: 72px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}*/
.banner-text h1 {
    font-size: 41px;
    line-height: 54px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
}

.banner-text h1 span {
    display: block;
    font-size: 32px;
}
a.act-btn.lungs-screening {
    background: #49A2A8;
    border-color: #49A2A8;
}
.banner-text h1 span {
    display: block;
    font-size: 22px;
}
.theme-btn {
    text-align: left;
}
.banner-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 31px;
    line-height: 42px;
    color: #fff;
    font-weight: 500 !important;
}

.theme-btn a {
    background: #00769c;
    color: #fff;
    text-decoration: none;
    padding: 12px 45px;
    border-radius: 30px;
    border: 1px solid #00769c;
    font-size: 14.5px;
    line-height: 45px;
    transition: all 0.5s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p.smll {
    text-align: right;
    font-size: 14px;
}

.mk-lft img {
    width: 100%;
}

.hd-txt li {

    list-style: none;
    position: relative;
    padding-left: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    font-weight: 400;
    color: #2c2c2c;
    padding-bottom: 25px;
}

.hd-txt strong {
    font-weight: 700;
}

.hd-txt li::before {
    content: '';
    position: absolute;
    left: -30px;
    background: url(../images/Tick.svg);
    height: 25px;
    width: 25px;
    background-repeat: no-repeat;
    top: 3px;
}

.hd-txt {
    padding-top: 10px;
}

a.act-btn:hover {
    background-color: transparent;
    border-color: #00769c;
    color: #00769c;
    transition: all 0.5s ease;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
}

.accordion-item {
    background-color: #EDEDE5;
    border: none;
    margin-top: 30px;
}

.accordion-button:not(.collapsed) {
    color: #232323;
    background-color: #DFDCCD;
    box-shadow: none;
}

button.accordion-button {
    border: none;
    border-radius: 0 !important;
    background-color: #DFDCCD;
}

button.accordion-button {
    border: none;
    border-radius: 0 !important;
    background-color: #DFDCCD;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.accordion-body {
    padding: 2rem 2rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    /*text-align: justify;*/
    font-weight: 400;
    color: #2c2c2c;
}

.vertical-text h4 {
    font-size: 22px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.vertical-text p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
}

.accordion-button {
    padding: 1rem 2rem;
}

.accordion-button:focus {
    box-shadow: none;
}

.bg-blue-section {
    padding: 80px 0;
    background: #d3e2f5;
    text-align: center;
}

section.bg-blue-section p {
    text-align: center;
}

.cancer-packages {
    padding: 80px 0;
    background: #EFF3F6;
}

section#cancer-screening-packages .col-md-2 img {
    width: 100%;
    padding-top: 20px;
}

section.cancer-packages h3 {
    text-align: center;
    padding-bottom: 45px;
}

.blue-bg-package {
    background: #CADBEF;
    padding: 50px 30px;
    width: 90%;
    margin: 0 auto;
}

.blue-bg-package.comprehensive {
    padding-top: 0;
}

ul.package-links {
    float: none;
    display: flex;
    padding-left: 0;
    margin: 0;
    padding-top: 10px;
}

ul.package-links li {
    list-style: none;
}

/*ul.package-links li a {
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: #49A2A8;
    color: #ffffff;
    border: 1px solid #49a2a8;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12.5px;
}*/

ul.package-links li:last-child {
    padding-left: 15px;
}

/*ul.package-links li:last-child a {
    background: #337598;
    box-shadow: none;
    border: 1px solid #337598;
    transition: all 0.5s ease;
}*/

a#cancer-packages-treatment:hover, a#screening-diagnosis-packages-comprehensive:hover, a#screening-diagnosis-packages-basic:hover, a#screening-diagnosis-packages-mammogram:hover, a#learn-more-genetics-testing:hover, a#multi-cancer-screen:hover {
    background: transparent;
    border-color: #49A2A8;
    color: #49A2A8;
}

a#cancer-packages-treatment, a#screening-diagnosis-packages-comprehensive, a#screening-diagnosis-packages-basic, a#screening-diagnosis-packages-mammogram, a#screening-diagnosis-packages-mammogram, a#learn-more-genetics-testing, a#multi-cancer-screen {
    background: #49A2A8;
    border-color: #49A2A8;
}

a#bill-estimator-treatment:hover, a#make-appointment-packages-comprehensive:hover, a#make-appointment-packages-basic:hover {
    border-color: #337598;
    color: #337598;
    background: transparent;
}

a#bill-estimator-treatment, a#make-appointment-packages-comprehensive, a#make-appointment-packages-basic {
    background: #337598;
    border-color: #337598;
}





section.bg-blue-section.choose-us h2 {
    text-align: left;
}

ul.package-links li:last-child a:hover {
    background-color: transparent;
    color: #337598;
    border-color: #337598;
    transition: all 0.5s ease;
}

ul.package-links li a:hover {
    background-color: transparent;
    color: #49a2a8;
    border-color: #49a2a8;
    transition: all 0.5s ease;
}

.h-ft a:hover {
    background-color: transparent;
    color: #337598;
    border-color: #337598;
    transition: all 0.5s ease;
}

.blue-bg-package.comprehensive {
    padding-top: 30px;
}

.beige-bg-package {
    background: #d9c9afad;
    /*#D9C9AF*/
    padding: 50px 30px;
    margin-top: 35px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.beige-bg-package.comprehensive {
    margin-top: 0;
	padding-top: 35px;
}


nav {
    /*background: #c8c7c5;*/
    height: 80px;
    width: 100%;
}

/*  label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }*/
nav i {
    margin: 25px 0;
}

nav ul {
    float: right;
    margin-right: 0px;
    /*20*/
    margin-bottom: 0;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    /*13*/
    text-decoration: none;
    border-radius: 3px;
    /*text-transform: capitalize;*/
    line-height: 20px;
    font-weight: 500;
    font-family: 'Open Sans';
}

/*  a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
  }*/
.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 0px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

label.logo {
    line-height: 80px;
}
.canc-text {
    width: 84%;
    margin: auto;
    text-align: center;
}

.canc-text1 {
    width: 70%;
    margin: auto;
}


.mob-taps li img {
    width: 45px;
    height: 45px;
    margin-right: 20px;
}
.mob-taps ul {
    padding: 0;
    float: none;
}
.mob-taps ul li a {}

.mob-taps li a {
    color: #000;
    text-decoration: none;
}

.mob-taps li {
    list-style: none;
    line-height: 30px !important;
    display: flex;
    /* flex-wrap: wrap; */
    /* align-items: center; */
    /* justify-content: flex-start; */
    margin-bottom: 15px;
}
.can-mg img {
    width: 100%;
    margin-bottom: 20px;
}
.cancers-title {
    padding: 10px 0;
    text-align: center;
}

.cancers-title h3 {
    font-size: 30px;
    /* font-size: 50px; */
    line-height: 42px;
    padding-bottom: 10px;
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 500;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
}

.mk-text {
    text-align: center;
}

section.com-can-mobile {
    padding: 40px 0;
}
section.com-can-mobile {
    display: none;
}
.mobile {
    display: none;
}
.v-img {
    height: 385px;
}
.mobile-view {
    display: none;
}



button.accordion-button h3 {
    border: none;
    border-radius: 0 !important;
    background-color: #DFDCCD;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    /* line-height: 33px; */
    margin: 0;
    padding: 0;
}




















@media (max-width: 1024px) {

    /*    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }*/
    nav ul li a {
        font-size: 16px;
    }
    .desktop-view {
    display: none;
}
    .mobile-view {
    display: block;
}
}

@media (max-width: 1024px) {

    /*858*/
    .checkbtn {
        display: block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fff;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li {
        display: block;
        margin: 30px 0;
        line-height: 30px;
        text-align: left;
    }

    nav ul li a {
        font-size: 16px;
    }

    a:hover,
    a.active {
        background: none;
        color: #0082e6;
    }

    #check:checked ~ ul {
        left: 0;
    }

    a.navbar-link #check:checked ~ ul {
        left: 0;
    }

    label.checkbtn i {
        color: #000;
    }

    nav {
        padding: 0 15px;
    }

    .logo {
        line-height: 80px;
    }

    .logo img {
        width: 260px;
    }

    nav ul li a {
        padding: 0;
    }

    /*  nav ul {
    padding-left: 0;
}*/


    .active a {
        /* background: #ded9d3 !important; */
        color: #00769c !important;
        border-radius: 0;
        padding: 4px 8px;
    }

.feat-sectn p br {
    display: none;
}
.feat-sectn .youtube_codegena {
    height: auto !important;
}


}















@media (min-width: 320px) and (max-width: 767px) {
    div#home .item.slide1{
    height: 700px !important;
}
    div#home .slide-2 {
    height: 700px !important;
}
div#home .slide-3 {
    height: 700px !important;
}
div#home .slide-4 {
    height: 700px !important;
}

    .banner-text h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        line-height: 42px;
        color: #fff;
    }

    .banner-text p {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        line-height: 30px;
        color: #fff;
        font-weight: 400 !important;
    }
.banner-text h1 span br {
    display: block !important;
}
    .eng-text p {
        height: auto !important;
    }
        .bt-text {
            text-align: left !important;
            margin: 40px 0 0;
        }
        .logo img {
    width: 200px;
}
.mk-text.good br {
    display: block !important;
}
p.smll {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
}
.mob-taps li{
    margin-bottom: 10px !important;
}
.mob-taps h3 {
    margin: 0;
}
section.why-cancer p {
    text-align: left;
}
section.why-cancer br {
    display: block;
}
}

.is-active a {
    background: #ded9d3 !important;
    color: #000;
    border-radius: 0;
}

nav ul li a:hover {
    /*background: #9e925e !important;
    color: #ffffff;
    border-radius: 0;*/
    background: #ded9d3 !important;
    color: #000;
    border-radius: 0;
    transition: all 0.5s;
}

/*Scroll*/
#scroll-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #002e5d;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 99999;
    transition: all 0.4s;
}

#scroll-top span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll-top:hover {
    background-color: #9e925e;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
    transition: all 0.4s;
}

/*
#scroll-top:hover span { 
    border-bottom-color: #9e925e;
}
*/

.sticky {
    position: fixed !important;
    top: 0;
    background: #ffffff;
    padding-top: 0 !important;
    animation: smoothScroll 1s forwards;
    animation-name: stickySlideDown;
    z-index: 99999999;
    box-shadow: 0 1px 6px 0px rgb(0 0 0 / 10%);
    padding-bottom: 0;
    backdrop-filter: blur(30px) brightness(1);
}

@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header.site-header.sticky {
    background: rgb(255 255 255) !important;
    padding: 0;
}

section.bg-blue-section.choose-us img {
    width: 100%;
    height: 100%;
}


/*section.cancers-history .mk-text,
section.cancers-history .mk-text p {
    text-align: center;
}

.history-list {
    text-align: center;
    margin-top: 35px;
    position: relative;
    width: 60%;
    margin: 0 auto;
}

section.cancers-history {
    padding: 80px 0;
}

ul.history-list-order-left,
ul.history-list-order-right {
    list-style: none;
    padding-left: 0;
    float: none;
    position: absolute;
    top: 0;
}

ul.history-list-order-right {
    right: -60px;
    top: 13%;
}

ul.history-list-order-left {
    left: -60px;
}

section.cancers-history .mk-text p {
    padding-bottom: 35px;
}

.history-list ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
}

ul.history-list-order-left li,
ul.history-list-order-right li {
    background-repeat: no-repeat;
    background-position: right;
    padding: 20px 0;
    padding-right: 25px;
    background-size: 60px;
    position: relative;
}

ul.history-list-order-left li::after,
ul.history-list-order-right li::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
}

ul.history-list-order-left li:nth-child(1)::after {
    background-image: url(../images/colorectal.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(1)::after {
    background-image: url(../images/colorectal.svg);
    left: -15px;
}

ul.history-list-order-left li:nth-child(2)::after {
    background-image: url(../images/prostate.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(2)::after {
    background-image: url(../images/prostate.svg);
    left: -30px;
}

ul.history-list-order-left li:nth-child(3)::after {
    background-image: url(../images/lung.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(3)::after {
    background-image: url(../images/lung.svg);
    left: -40px;
}

ul.history-list-order-left li:nth-child(4)::after {
    background-image: url(../images/liver.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(4)::after {
    background-image: url(../images/liver.svg);
    left: 0;
}

ul.history-list-order-left li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    right: -50px;
}

ul.history-list-order-right li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    left: -80px;
}

ul.history-list-order-left li:nth-child(4),
ul.history-list-order-left li:nth-child(2) {
    left: -65px;
}

ul.history-list-order-left li:nth-child(3) {
    left: -85px;
}

ul.history-list-order-right li:nth-child(2) {
    right: -85px;
}

ul.history-list-order-right li:nth-child(4) {
    right: -60px;
}

ul.history-list-order-right li:nth-child(3) {
    right: -125px;
}

ul.history-list-order-right li:nth-child(5) {
    right: -50px;
}

.history-list li a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.history-list li a:hover {
    color: #00769B;
    transform: all 0.3s ease;
    text-decoration: underline;
}
*/
.banner-text h1 span br {
    display: none;
}
section.cancers-history .mk-text,
section.cancers-history .mk-text p {
    text-align: center;
}

.history-list {
    text-align: center;
    margin-top: 35px;
    position: relative;
    width: 650px;
    margin: 0 auto;
}

section.cancers-history {
    padding: 80px 0;
}

ul.history-list-order-left,
ul.history-list-order-right {
    list-style: none;
    padding-left: 0;
    float: none;
    position: absolute;
    top: 0;
}

ul.history-list-order-right {
    right: -175px;
    top: 13%;
}

ul.history-list-order-left {
    left: -155px;
}

section.cancers-history .mk-text p {
    padding-bottom: 35px;
    font-size: 26px;
    font-weight: 400;
}

.history-list ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
}

ul.history-list-order-left li,
ul.history-list-order-right li {
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 25px;
    background-size: 60px;
    position: relative;
}

.history-list h4 {
    margin-bottom: 0;
}

ul.history-list-order-left li::after,
ul.history-list-order-right li::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
}
/*ul.history-list-order-right li:nth-child(2) a {
    margin-left: 25px;
}

ul.history-list-order-left li:nth-child(1) a::after {
    background-image: url(../images/colorectal.svg);
    right: -35px;
}

ul.history-list-order-right li :nth-child(1) a::after {
    background-image: url(../images/breast.svg);
    left: -45px;
}

ul.history-list-order-left li:nth-child(2) a::after {
    background-image: url(../images/prostate.svg);
    right: -10px;
}

ul.history-list-order-right li:nth-child(2) a::after {
    background-image: url(../images/colorectal.svg);
    left: -55px;
}

ul.history-list-order-left li:nth-child(3) a::after {
    background-image: url(../images/lung.svg);
    right: -10px;
}

ul.history-list-order-right li:nth-child(3) a::after {
    background-image: url(../images/uteri.svg);
    left: -50px;
}

ul.history-list-order-left li:nth-child(4) a::after {
    background-image: url(../images/liver.svg);
    right: -10px;
}

ul.history-list-order-right li:nth-child(4) a::after {
    background-image: url(../images/lung.svg);
    left: -25px;
}
ul.history-list-order-left li:nth-child(1) a {
    margin-right: 30px;
}
ul.history-list-order-right li:nth-child(3) a {
    margin-left: 28px;
}

ul.history-list-order-left li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    right: -85px;
}

ul.history-list-order-right li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    left: -80px;
}

ul.history-list-order-left li:nth-child(4),
ul.history-list-order-left li:nth-child(2) {
    left: -65px;
}

ul.history-list-order-left li:nth-child(3) {
    left: -85px;
}

ul.history-list-order-right li:nth-child(2) {
    right: -85px;
}

ul.history-list-order-right li:nth-child(4) {
    right: -60px;
}

ul.history-list-order-right li:nth-child(3) {
    right: -105px;
}

ul.history-list-order-right li:nth-child(5) {
    right: -50px;
    padding: 13px 0;
}

ul.history-list-order-left li:nth-child(5) {
    padding: 13px 0;
    left: -85px;
}*/


ul.history-list-order-right li:nth-child(2) a {
    margin-left: 40px;
}

ul.history-list-order-left li:nth-child(1) a::after {
    background-image: url(../images/colorectal.svg);
    right: -16px;
}

ul.history-list-order-right li :nth-child(1) a::after {
    background-image: url(../images/breast.svg);
    left: -45px;
}

ul.history-list-order-left li:nth-child(2) a::after {
    background-image: url(../images/prostate.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(2) a::after {
    background-image: url(../images/colorectal.svg);
    left: -50px;
}

ul.history-list-order-left li:nth-child(3) a::after {
    background-image: url(../images/lung.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(3) a::after {
    background-image: url(../images/uteri.svg);
    left: -45px;
}

ul.history-list-order-left li:nth-child(4) a::after {
    background-image: url(../images/liver.svg);
    right: 0;
}

ul.history-list-order-right li:nth-child(4) a::after {
    background-image: url(../images/lung.svg);
    left: -10px;
}

ul.history-list-order-left li:nth-child(1) a {
    margin-right: 50px;
}

ul.history-list-order-left li:nth-child(2) a {
    margin-right: 65px;
}

ul.history-list-order-left li:nth-child(3) a {
    margin-right: 65px;
}

ul.history-list-order-left li:nth-child(4) a {
    margin-right: 65px;
}

ul.history-list-order-right li:nth-child(3) a {
    margin-left: 45px;
}

ul.history-list-order-left li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    right: -65px;
}

ul.history-list-order-right li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    left: -89px;
}

ul.history-list-order-left li:nth-child(4),
ul.history-list-order-left li:nth-child(2) {
    left: -65px;
}

ul.history-list-order-left li:nth-child(3) {
    left: -85px;
}

ul.history-list-order-right li:nth-child(2) {
    right: -85px;
}

ul.history-list-order-right li:nth-child(4) {
    right: -60px;
}

ul.history-list-order-right li:nth-child(3) {
    right: -105px;
}

ul.history-list-order-right li:nth-child(5) {
    right: -75px;
}

ul.history-list-order-left li:nth-child(5) {
    left: -72px;
}

ul.history-list-order-right li:nth-child(1) a {
    margin-left: 42px;
}

.history-list li a {
    text-decoration: none;
    color: #000000;
    font-size: 26px;
    font-weight: 400;
    transition: all 0.5s;
    display: block;
    padding: 13px 0;
}

.history-list li a:hover {
    color: #00769B;
    transform: all 0.3s ease;
    text-decoration: underline;
}





section.related-articles {
    padding: 80px 0;
    background: #EFF3F6;
}

section.related-articles h2 {
    text-align: center;
    /*padding-bottom: 60px;*/
}

section.related-articles img {
    width: 100%;
    height: 100%;
}

.col-md-3.article-beige-bg:hover {
    background: #9d9686 !important;
}

section.related-articles .col-md-6,
section.related-articles .col-md-3 {
    padding-left: 0;
    padding-right: 0;
}

.col-md-6.article-blue-bg {
    background: #CADBEF;
}

section.related-articles .col-md-6.article-blue-bg {
    background: #CADBEF;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    display: table;
}

.related-articles .col-md-3.article-beige-bg {
    background: #D9C9AF;
    text-align: center;
    display: table;
    position: relative;
    transition: all 0.5s ease;
}

.col-md-3.article-beige-bg a.related-articles {
    padding: 25px;
}

.vertical-text {
    display: table-cell;
    vertical-align: middle;
}

.vertical-text p {
    margin-bottom: 0;
}

.col-md-6.article-blue-bg::before,
.col-md-3.article-beige-bg::before {
    content: "\A";
    border-style: solid;
    border-width: 12px 15px 12px 0;
    border-color: transparent #CADBEF transparent transparent;
    position: absolute;
    left: -13px;
    top: 50%;
}

.col-md-3.article-beige-bg::before {
    border-color: transparent #D9C9AF transparent transparent;
    transition: all 0.5s ease;
}

section.related-articles .col-md-6.article-blue-bg:hover,
.related-articles .col-md-3.article-beige-bg:hover {
    transition: all 0.5s ease;
    background: #959FA7;
}


.col-md-3.article-beige-bg:hover::before {
    transition: all 0.5s ease;
    border-color: transparent #9d9686 transparent transparent;
}

.col-md-6.article-blue-bg:hover::before {
    transition: all 0.5s ease;
    border-color: transparent #959FA7 transparent transparent;
}

.why-text h3 {
    font-size: 47px;
    line-height: 62px;
    padding-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.why-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.history-list li a {
}

ul.history-list-order-left a {
    text-align: right;
    margin-right: 50px;
}

ul.history-list-order-right a {
    text-align: left;
    margin-left: 35px;
}

ul.history-list-order-right li:nth-child(4) a {
    margin-left: 80px;
}




@media (min-width: 280px) and (max-width: 320px) {

    .logo img {
        width: 200px;
    }

    .foot-img {
        padding: 20px 0;
    }

    footer img {
        width: 200px;
    }
.banner-text h1 span br {
    display: block !important;
}
    .title h2,
    .mk-text h2,
    .fetat-title h3 {
        font-size: 35px;
        line-height: 40px;
    }

    .eng-text p {
        height: auto;
    }

    .eng-text p br {
        display: none;
    }

    .banner-text h1 {
        font-size: 30px;
        line-height: 40px;

    }

    section.header-banner,
    section.header-banner .row {
        height: 100vh;
    }

    .banner-text p {
        font-size: 16px;
        line-height: 25px;
        color: #fff;
    }

    /*section.header-banner{
  background-position: center left;
    background-position-x: -900px;
}*/
    .head-left {
        margin-bottom: 40px;
    }

    .head-left h2 {
        font-size: 25px;
        line-height: 35px;
    }

    ul.package-links li:last-child {
        padding-left: 0;
    }

    ul.package-links {
        width: 100%;
        display: block;
        text-align: center;
    }

    ul.package-links li {
        display: block;
        width: 100%;
    }

    .blue-bg-package {
        background: #CADBEF;
        padding: 50px 0px;
    }
}

.screen-1 img,
.screen-2 img,
.screen-3 img,
.screen-4 img {
    width: 100px;

}

.accordion-button::after {
    background-image: url(../images/icons/plus.svg);
    /* background: red; */
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/icons/minus.svg);
    transform: none !important;
    /*rotate(-180deg)*/
    margin-top: 0px;
}

.more-tm {
    text-align: center;
    padding-top: 35px;
}

.more-tm img {
    width: 30px !important;
    transition: all 0.5s;
}

.more-tm a {
    font-size: 16px;
    line-height: 46px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
}

.more-tm a:hover {
    color: #232323;
}

.more-tm a:hover img {
    transform: translate(10px, 0px);
    transition: all 0.5s;
}

.play {
    background: #4484a5a8;
    padding: 20px;
    /* width: 30px; */
    border-radius: 50%;
    /* height: 30px; */
}

.feat-sectn .play {
    background: #4484a5a8;
    padding: 20px;
    /* width: 30px; */
    border-radius: 50%;
    /* height: 30px; */
}

.play2 {
    background: #4484a5a8;
    padding: 20px;
    /* width: 30px; */
    border-radius: 50%;
    /* height: 30px; */
}

.feat-sectn .play img {
    width: 50px;
    height: 50px;
}

.feat-sectn {
    position: relative;
}

.video-btn {
    right: 0;
    position: absolute;
    left: 0;
    top: 40%;
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 80px;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    width: 80px;
    height: 80px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

a.video-btn img {
    width: 40px;
    height: 40px;
    /* background: red; */
}

a.video-btn {
    background: #4484a5a8;
    border-radius: 50%;
    display: flex;
    justify-content: space-around;
    /* align-content: stretch; */
    flex-direction: column;
    align-items: center;
}

.mk-lft a.video-btn {
    top: 50%;
}

.bt-text p {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
    font-weight: 500;
}

.bt-text {
    text-align: right;
    margin: 40px 0 0;
}

.txt-tx p {
    text-align: left !important;
    margin: 0;
}

.icon img {
    width: 40px !important;
    height: 40px !important;
}

.icon {
    margin-right: 25px;
}

.txt-tx {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon img {
    margin-top: 10px;
}

.col-md-6.col-sm-12.choose-img {
    padding-left: 30px;
    padding-right: 30px;
}

.choose-us .row {
    display: flex;
    align-items: flex-start;
}

.head h2 {
    font-size: 50px;
    line-height: 56px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: left;
}

.mk-lft {
    position: relative;
    height: 100%;
}

.history-list li a:hover {
    text-decoration: none;
}

/*.history-list h3 {
    display: none;
}*/




/*Raja*/
.feat-sectn iframe {
    width: 100% !important;
}
.youtube_codegena {
    background: #fff !important;
}

.youtube_codegena .play{
    display: none !important;
}
.mk-lft iframe {
    width: 100% !important;
}
.mk-lft .youtube_codegena {
    background: #d3e2f5 !important;
}
.feat-sectn .youtube_codegena {
    width: 100% !important;
}
.mk-lft .youtube_codegena{
    width: 100% !important;
}
.youtube_codegena .thumb {
    position: relative !important;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: auto;
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-size: 2.25rem;
    transition: transform .2s ease-in-out;
}
.ft-text {
    padding-left: 8px;
}



@media (min-width: 321px) and (max-width: 360px) {
    .feat-sectn iframe {
    width: 100% !important;
    height: 200px !important;
}
.canc-text {
    width: 100%;
    margin: auto;
    text-align: center;
}

.canc-text1 {
    width: 100%;
    margin: auto;
}
}

@media (min-width: 361px) and (max-width: 767px) {
    .feat-sectn iframe {
    width: 100% !important;
    height: 249px !important;
}
.canc-text {
    width: 100%;
    margin: auto;
    text-align: center;
}

.canc-text1 {
    width: 100%;
    margin: auto;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
    #faq h2 {
    padding-bottom: 0 !important;
}
    .item.slide1 .row{
        padding: 60px 0 !important;
    }
    .item.slide1, div#slide2, div#slide3, div#slide4 {
    height: 100% !important;
    background-size: 100% !important;
}
.choose-us .row {
    flex-direction: column-reverse;
}
.banner-text h1 span {
    margin-bottom: 20px !important;
    font-size: 26px !important;
    line-height: 40px !important;
}
.item.slide1 .col-lg-6.col-md-6.col-sm-12.col-12 {
    width: 100% !important;
}
.mk-text.good p{
     margin-top: 20px !important;   
}
.banner-text p {
    margin-top: 30px !important;
    margin-bottom: 0px !important;
}
.theme-btn a{
    line-height: 14px !important;
}
.owl-carousel .owl-item img{
    width: 70% !important;
}
.mb{
    display: none !important;
}
.theme-btn a {
    border-radius: 30px !important;
    color: #fff !important;
    padding: 12px 45px !important;
}
    p.smll {
    text-align: left !important;
}

p.smll span {
    display: block;
}
.bt-text {
    text-align: left !important;

}
.copy-rights-texts p{
    text-align: center !important;
}
.cl-3 img {
    width: 232px;
    margin-right: 46px;
}
section#articles-pc {
    display: none !important;
}
.accordion-button {
    padding: 1rem 1rem !important;
}
    .feat-sectn iframe {
    width: 100% !important;
/*    height: 216px !important;*/
}
.canc-text {
    width: 100%%;
    margin: auto;
    text-align: center;
}

.canc-text1 {
    width: 100%;
    margin: auto;
}
.eng-text p {
    height: auto;
}
.tab-col {
    width: 100%;
}
.mk-text.good br {
    display: none;
}
.banner-text h1 {
    font-size: 35px !important;
    line-height: 46px;
}
.banner-text h1 br {
    display: none;
}
br {
    display: none;
}
.col-md-3.article-beige-bg a.related-articles {
    padding: 19px 5px;
}
.vertical-text h4 {
    font-size: 16px;
}
ul.package-links li:last-child {
    padding-left: 15px !important;
}
ul.package-links {
    display: flex !important;
}
section.cancers-history {
    display: none;
}
section.com-can-mobile {
    display: block !important;
}
.mk-text p {
    text-align: center;
}
section.related-articles .col-md-3 {
    width: 100%;
    margin-bottom: 0px;
}
section#articles .col-md-6 {
    width: 100%;
}

.col-md-3.article-beige-bg a.related-articles {
    padding: 19px 19px;
}
.mt-10 {
    margin-top: 10px;
}


}
.eng-img img {
    width: 218px;
    height: 218px;
}

@media (min-width: 280px) and (max-width: 767px) {
    section.mobiles .banner-text h1 span {
    font-size: 19px !important;
}

section.mobiles .banner-text h1 {
    font-size: 35px !important;
    line-height: 40px !important;
    color: #fff !important;
}
    .banner-text .theme-btn a {
    padding: 12px 35px;
     border-radius: 30px; 
    border: 1px solid #00769c; 
    font-size: 14.5px;
    line-height: 45px;
    color: #fff !important;
}
section.faq-section .mk-text h2 {
    padding-bottom: 0 !important;
}
.cl-3 img {
    width: 232px;
    margin-right: 30px;
}
.col-md-6.col-sm-12.choose-img {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.title h2, .mk-text h2 {
    font-size: 30px !important;
    line-height: 35px !important;
    text-align: left !important;
}
section.header-banner {
    padding-top: 100px !important;
    padding-bottom: 0px !important;
}
.banner-text {
    /*background: #0000004d;*/
    padding: 10px;
    text-align: center !important;
}
.v-img {
    height: auto !important;
}
.banner-text h1 {
    font-size: 24px !important;
    line-height: 32px !important;
    color: #fff !important;
}
.banner-text h1 span {
    /*font-size: 19px !important;*/
    line-height: 25px !important;
    padding: 10px 0 20px !important;
}
section.header-banner {
    background-position: top right !important;
}
.mk-text {
    padding-top: 0px !important;
}

ul.history-list-order-left li::after, ul.history-list-order-right li::after {
    top: 12px !important;
}
.history-list ul li{
    text-align: right !important;
}
.history-list h4{
    display: none !important;
}
ul.history-list-order-left li:nth-child(5)::after, ul.history-list-order-right li:nth-child(1)::after, ul.history-list-order-right li:nth-child(3)::after, ul.history-list-order-right li:nth-child(4)::after, ul.history-list-order-right li:nth-child(2)::after, ul.history-list-order-right li:nth-child(5)::after{
    left: 0 !important;
}
ul.history-list-order-left li:nth-child(1)::after {
    background-image: url(../images/colorectal.svg);
    left: 0;
}

ul.history-list-order-right li:nth-child(1)::after {
    background-image: url(../images/colorectal.svg);
    left: -15px;
}

ul.history-list-order-left li:nth-child(2)::after {
    background-image: url(../images/prostate.svg);
    left: 0;
}

ul.history-list-order-right li:nth-child(2)::after {
    background-image: url(../images/prostate.svg);
    left: -30px;
}

ul.history-list-order-left li:nth-child(3)::after {
    background-image: url(../images/lung.svg);
    left: 0;
}

ul.history-list-order-right li:nth-child(3)::after {
    background-image: url(../images/lung.svg);
    left: -40px;
}

ul.history-list-order-left li:nth-child(4)::after {
    background-image: url(../images/liver.svg);
    left: 0;
}

ul.history-list-order-right li:nth-child(4)::after {
    background-image: url(../images/liver.svg);
    left: 0;
}

ul.history-list-order-left li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    right: -75px;
}

ul.history-list-order-right li:nth-child(5)::after {
    background-image: url(../images/neoplasms.svg);
    left: -80px;
}

ul.history-list-order-left li:nth-child(4),
ul.history-list-order-left li:nth-child(2) {
    left: -65px;
}

ul.history-list-order-left li:nth-child(3) {
    left: -85px;
}

ul.history-list-order-right li:nth-child(2) {
    right: -85px;
}

ul.history-list-order-right li:nth-child(4) {
    right: -60px;
}

ul.history-list-order-right li:nth-child(3) {
    right: -105px;
}

ul.history-list-order-right li:nth-child(5) {
    right: -50px;
    padding: 13px 0;
}

ul.history-list-order-left li:nth-child(5) {
    padding: 13px 0;
    left: -85px;
}
section.cancers-history {
    display: none;
}
section.com-can-mobile {
    display: block !important;
}
section.why-cancer p {
    text-align: left !important;
}
section.why-cancer br {
    display: block !important;
}
.beige-bg-package ul.package-links li {
    padding-bottom: 20px;
    text-align: left !important;
}
.screen-2 h3, .screen-1 h3, .screen-4 h3, .screen-3 h2 {
    font-size: 18px !important;
    line-height: 25px !important;
        margin-bottom: 15px !important;

}
.fetat-title h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: left;
}
section#articles h4, section#articles p {
    text-align: left !important;
}
section.related-articles h2 {
    text-align: left !important;
    padding-bottom: 30px !important;
}
.eng-text {
    float: left !important;
    width: 100%;
}

.eng-text p {
    text-align: left;
}

.eng-text a {
    width: 100% !important;
}
 footer {
    padding: 40px 0 40px !important;
    background: #eff3f6;
}
h3.y-video {
    margin-top: 10px;
}
.accordion-body p {
    font-size: 16px;
}
.accordion-button {
    padding: 1rem 0.5rem !important;
}
section#home .theme-btn a{
    font-size: 12px !important;
        padding: 10px 15px !important;
}
section#home {
    position: relative;
}
/*.accordion-button::after {
    position: absolute;
    right: 2%;
    top: 12%;
}*/
button.accordion-button h3{
    font-size: 19px !important;
}
section#cancer-screening-packages .mk-text {
    padding-bottom: 15px !important;
}
section.mobiles {
    background: #c8c7c5;
}
.mb img {
    width: 100%;
}
.banner-text {
    text-align: left !important;
    padding: 25px 10px 0 !important;
}

.banner-text br {
    display: block !important;
}
.header-banner{
    display: none !important;
}
section.mobiles {
    display: block !important;
}
.title h2 {
    padding-bottom: 15px !important;
}
.eng-sect {
    text-align: left;
}
.accordion-button{
    align-items: flex-start !important;
}
a.related-articles {
    padding: 18px;
}
.col-md-3.article-beige-bg a.related-articles {
    padding: 23px !important;
}
.desktop{
    display: none !important;
}
.mobile{
    display: block !important;
}
/*ul.package-links li a {
    font-size: 11px;
    width: 100%;
    display: block;
}*/
a#bill-estimator-treatment {
    padding: 12px 12px !important;
}
ul.package-links li {
    list-style: none !important;
    margin: 10px 0 !important;
    width: 100% !important;
    display: block !important;
    padding-bottom: 10px !important;
}
ul.package-links {
    float: none;
    display: block;
    padding-left: 0;
    /* margin: 0; */
    padding-top: 10px;
}
ul.package-links li:last-child {
    padding-left: 0px !important;
}
.blue-bg-package {
    padding: 0px 30px !important;

}

section#cancer-screening-packages .theme-btn a{
  width: 100% !important;
    display: block !important;
    line-height: 25px !important;  
    text-align: center !important;
}



}

section.mobiles {
    display: none;
}
.mobile{
    display: none;
}


section#speak .theme-btn a {
    /* width: 100%; */
    /* display: block; */
    padding: 12px 25px !important;
    line-height: 20px;
    text-align: center;
    background: #49a2a8;
    border-color: #49a2a8;
}
 section#speak .theme-btn a:hover {

    background: transparent;
    border-color: #49a2a8;
    color: #49a2a8;
}
section#speak .theme-btn {
    width: 100%;
}
.partner-ship p {
    color: #00769c;
    font-size: 20px;
    line-height: 30px;
}

.choose-us .txt-tx p {
    width: 100%;
}
.last-point p{
    width: 100% !important;
}







@media (min-width: 280px) and (max-width: 1024px) {
.eng-img img {
    width: 100%;
    height: 100%;
}
.head-left {
    margin-bottom: 20px;
}
.head-left h2 {

    padding-bottom: 12px !important ;
}
br{
    display: none;
}
.beige-bg-package, .blue-bg-package{
    width: 100% !important;
}
.beige-bg-package{
    padding: 50px 20px !important;
}
section#articles .row {
    padding: 0 15px;
}
.col-md-6.article-blue-bg::before, .col-md-3.article-beige-bg::before{
    display: none;
}
section.feat-stories, section.related-articles, .faq-section, section.make-enquiry, .bg-blue-section, .cancer-packages, section.why-cancer, section.cancers-history, section.dection, section.good-times {
    padding: 40px 0 !important;
}
.head h2 {
    text-align: center;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.hd-txt li{
    text-align: left;
}
header {
    position: relative;
}
.mk-text {
    padding-top: 0px;
}
.mk-lft .youtube_codegena{
    height: auto !important;
}
.copy-rights-texts p {
    font-size: 14px;
    line-height: 25px;
    /* padding-bottom: 40px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: left;
}
.is-active a {
    background: transparent !important;
    color: #00769c !important;
    border-radius: 0;
}
.eng-sect {
    margin-bottom: 25px;
}
nav ul li a:hover {
    background: transparent;
    color: #00769c !important;
    border-radius: 0;
    transition: all 0.5s;
}
/*.desktop {
    display: none;
}*/
.mobile {
    display: block !important;
}
.copy-rights-texts {
    padding-top: 15px;
}
nav ul li a:hover{
    background: transparent !important;
}
    section.mobiles .banner-text h1 span {
    font-size: 16px !important;
}

section.mobiles .banner-text h1 {
    font-size: 35px !important;
    line-height: 40px !important;
    color: #fff !important;
}
}




@media (min-width: 1025px) and (max-width: 1999px) {
/*         br {
            display: none;
        }*/

/*        .mk-text h2 {
            font-size: 40px;
            line-height: 50px;}*/



       /* section.cancers-history {
            overflow: hidden;
        }
        nav ul li a{
            padding: 10px 15px !important;
        }

        nav ul li{
            margin: 0 !important;
        }*/
/*        .banner-text h1 {
    
    font-size: 53px !important;
    line-height: 57px !important;
}*/

/*.banner-text h1 span {
    display: block;
    font-size: 26px !important;
}*/

}


.more-tm a:hover {
    color: #00769c;
}





@media (max-width: 960px) {

    section.header-banner .row,
    section.header-banner {
        height: auto;
    }

    section.header-banner {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .mk-text h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .mk-text {
        padding-top: 10px;
    }
.mk-text.good.partner-ship p {
    text-align: left;
}
.partner-ship p {
    font-size: 14px !important;

}
    .good-times .col-md-7.col-sm-12 {
        order: 1;
    }

    .head-left h2 {
        font-size: 36px;
        line-height: 42px;
        padding-bottom: 25px;
    }


    .h-ft {
        padding-bottom: 25px;
    }

    .history-list img,
    .history-list {
        width: 100%;
    }

    ul.history-list-order-left,
    ul.history-list-order-right {
        position: relative;
        left: 0;
        right: 0;
    }

    .history-list ul li {
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
    }

    ul.history-list-order-left li:nth-child(4),
    ul.history-list-order-left li:nth-child(2),
    ul.history-list-order-left li:nth-child(3) {
        left: 0;
    }

    ul.history-list-order-left li::after,
    ul.history-list-order-right li::after {
        width: 45px;
        height: 45px;
    }

    ul.history-list-order-left li:nth-child(5)::after,
    ul.history-list-order-right li:nth-child(1)::after,
    ul.history-list-order-right li:nth-child(3)::after,
    ul.history-list-order-right li:nth-child(4)::after,
    ul.history-list-order-right li:nth-child(2)::after,
    ul.history-list-order-right li:nth-child(5)::after {
        right: 0;
        left: auto;
    }

    ul.history-list-order-right li:nth-child(2),
    ul.history-list-order-right li:nth-child(3),
    ul.history-list-order-right li:nth-child(4),
    ul.history-list-order-right li:nth-child(5) {
        right: 0;
    }

    /*
    .history-list h3 {
        display: block;
        padding-top: 20px;
        color: #757575;
    }
*/

    ul.history-list-order-left {
        border-bottom: 1px solid #cccccc;
        padding-bottom: 20px;
    }

    ul.history-list-order-left li,
    ul.history-list-order-right li {
        padding: 0;
    }

    ul.history-list-order-left li a,
    ul.history-list-order-right li a {
        padding: 20px 0;
        display: block;
    }

    .why-text h3,
    .title h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .cancer-packages .col-md-2 img {
        width: 100%;
    }

    .choose-us .choose-img {
        order: 1;
    }

    .feat-sectn {
        padding-bottom: 30px;
    }

    .copyrights .col-md-4 {
        padding-bottom: 30px;
    }

    a.related-articles {
        padding: 23px;
    }

    .banner-text h1 span {
        font-size: 17px;
    }

    ul.history-list-order-left li:nth-child(5) {
        left: 0;
    }

    .history-list h4 {
        position: relative;
        left: 0;
        top: 0;
    }

    h4.fm-text {
        right: 0;
        left: auto;
        top: 0;
    }

    .beige-bg-package ul.package-links {
        display: block;
    }

    .beige-bg-package ul.package-links li {
        padding-bottom: 20px;
        text-align: center;
    }

    .beige-bg-package ul.package-links li:last-child {
        padding-left: 0;
    }

/*    ul.package-links li a {
        font-size: 11px;
    }*/
}

.eng-text a:hover {
    background: transparent;
    color: #49a2a8;
    border-color: #49a2a8;
    transition: all 0.5s ease;
}

.good h2 {
    text-align: left;
}

/*.v-img {
    height: 100%;
}*/
.feat-sectn {
    height: 100%;
}

.screen-2 h3,
.screen-1 h3,
.screen-4 h3,
.screen-3 h2 {
    padding: 0 0 0px 0 !important;
    margin: 0;
    text-align: left !important;
    font-size: 18px;
    line-height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #2c2c2c;
}

section#cancer-screening-packages p {
    font-size: 16px;
    line-height: 25px;
    color: #2c2c2c;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.mk-text.good {
    display: table-cell;
    vertical-align: middle;
}

.history-list h3 {
    position: absolute;
    top: 30%;
    left: 20%;
    font-family: 'Arial-Bold';
    color: #606060;
    font-size: 26px;
}

/*section#cancer-screening-packages .mk-text {
    padding-bottom: 40px;
}*/

h3.fm-text {
    right: 14%;
    left: auto;
    top: 40%;
}

section.why-cancer p {
    text-align: center;
}

section.why-cancer p strong {
    font-weight: 700;
}

@media (max-width: 1400px) {
    nav ul li a {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    section#make-the-good-times-last .col-md-7 {
        padding-left: 30px;
        padding-right: 30px;
    }
    section.bg-blue-section.choose-us .col-md-7.col-sm-12.choose-img.tab-col {
    padding-left: 30px;
    padding-right: 30px;
}
}

.history-list li a:after {
    content: "";
    background-image: url(../images/colorectal.svg);
    right: 0px;
    position: absolute;
    top: 0;
    z-index: 99999;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
}

section.why-cancer br{
    display: none;
}


a.navbar-link:focus{
    background: transparent;
}

ul.side-menu.menu-hide {
    left: -100% !important;
}

ul.side-menu.menu-show {
    left: 0;
}




















@media (max-width: 1119px) and (min-width: 1025px){
nav ul li a{
    padding: 8px 8px !important;
}
ul#mainnav-2 {
    padding-left: 0;
}
section.cancers-history {
    overflow: hidden;
}
ul.history-list-order-left h3, ul.history-list-order-right h3{
font-size: 16px !important;
}
ul.history-list-order-left a, ul.history-list-order-right a{
    font-size: 16px !important;
}
.banner-text h1{
    font-size: 45px;
    line-height: 50px;
}
.banner-text h1 span {
    display: block;
    font-size: 24px;
}
.mk-text h2 {
    font-size: 36px;
    line-height: 42px;
}
.head-left h2 {
    font-size: 34px;
    line-height: 45px;
}
.mk-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 25px;
}
a.related-articles{
        padding: 50px;
}
.ft-text p br {
    display: none;
}
.v-img {
    height: 292px !important;
}
.feat-sectn .youtube_codegena {
    width: 100% !important;
    height: 292px !important;
}


}
.item.slide1, div#slide2, div#slide3, div#slide4 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
#faq h2{
    padding-bottom: 0 !important;
}
@media (min-width:4103px) and (max-width:5464px)
 {
section#speak .theme-btn a{
    padding: 12px 22px !important;
}
 }

 @media (min-width:2733px) and (max-width:4102px) 
 {
section#speak .theme-btn a{
    padding: 12px 22px !important;
}
 }


.eng-sect .theme-btn {
    text-align: center !important;
}

.mb{
    display: none;
}




@media (max-width: 767px) {
.banner-text p {
    margin-top: 5px !important;
}
.mk-text.good.partner-ship br {
    display: none !important;
}
.mk-text.good.partner-ship p {
    padding-top: 15px !important;
}
.choose-us .txt-tx p {
    width: 100%;
}
    .blue-bg-package {
    padding-bottom: 40px !important;
}
.blue-bg-package {
    padding-bottom: 40px !important;
}

section#speak .tab-col {
    padding-bottom: 40px !important;
}
    .item.slide1 .row{
        padding: 0px 0 !important;
    }

div#slide2 {
    background: #c7c6c4 !important;
}
div#slide3 {
    background: #C8C9CB !important;
}
div#slide4 {
    background: #B1B3B6 !important;
}
.item.slide1 {
    background: #bdd1d2 !important;
}
.mb{
    display: block !important;
}
.mb img {
    display: block;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    margin-top:0px;
}
.partner-ship p {
    margin-bottom: 5px;
}
.mk-text.good.partner-ship img {
    width: 69%;
}
.col-md-6.no-padding {
    padding: 0px !important;
}

.mb.mob-slide-1 {
    margin-top: 40px;
}
.mb.slide-mob-2 {
    margin-top: 10px;
}
.mb.slide-mob-3 {
    margin-top: 10px;
}
.mb.slide-mob-4 {
    margin-top: 10px;
}
}












@media screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation : portrait){
    .mk-text p {
    text-align: left !important;
}
.mk-text.good.partner-ship a {
    line-height: 0px !important;
    padding: 5px 0 0 0px !important;
}

.mk-text.good.partner-ship a {
    line-height: 0px !important;
}
}
@media screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation : landscape){
.feat-sectn p br {
    display: none;
}
.v-img {
    height: 300px !important;
}
.feat-sectn iframe {
    width: 100% !important;
    height: 295px !important;
}
.banner-text h1 span {
    display: block;
    font-size: 26px !important;
}
.banner-text h1 {
    font-size: 40px !important;
    line-height: 50px !important;
}
.choose-us .txt-tx p {
    width: 100%;
}
.item.slide1, #slide2{
    height: 100% !important;
}
.item.slide1 .row, #slide2.row, #slide3.row, #slide4.row{
    padding: 100px 0 !important;
}
}







@media screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation : portrait){
.choose-us .row {
    flex-direction: column-reverse !important;
}
.choose-us .txt-tx p {
    width: 100%;
}
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait){
 .choose-us .txt-tx p {
    width: 100%;
}   
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : landscape){
section#stories .tab-col {
    WIDTH: 50% !IMPORTANT;
}
.choose-us .row {
    flex-direction: column-reverse !important;
}
.choose-us .txt-tx p {
    width: 100%;
}
}
@media screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation : portrait){
.banner-text p {
    margin-top: 0px !important;
}
.choose-us .txt-tx p {
    width: 100%;
}
nav {
    padding: 0px !important;
}
}




@media screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation : landscape){
.item.slide1 {
    height: 100vh !important;
    background-size: 100% !important;
}
.banner-text h1 {
    width: 100% !important;
}
div#slide2 {
    height: 100vh !important;
    background-size: cover !important;
    background-position: bottom !important;
}
div#slide3 {
    height: 100vh !important;
    background-size: cover !important;
    background-position: bottom !important;
}
div#slide4 {
    height: 100vh !important;
    background-size: cover !important;
    background-position: bottom !important;
}
section#make-the-good-times-last h2 {
    text-align: center !important;
}
.mk-text p{
    text-align: left !important;
}
.banner-text h1 {
    font-size: 40px !important;
    line-height: 42px !important;
    width: 100% !important;
}
}








@media (max-width: 1199px) and (min-width: 1025px){
    ul#mainnav-2 {
    padding-left: 0px !important;
    width: 75% !important;
}
.logo {
    width: 20% !important;
}
.choose-us .txt-tx p {
    width: 100% !important;
}
.v-img {
    height: 290px !important;
}
.feat-sectn p br {
    display: none !important;
}
.feat-sectn iframe {
    width: 100% !important;
    height: 100% !important;
}
nav ul li a {
    padding: 10px 10px !important;
}
section.cancers-history {
    overflow: hidden;
}
.banner-text h1 span {
    display: block;
    font-size: 32px;
    line-height: 36px !important;
    margin-bottom: 20px !important;
}
.banner-text h1 {
    font-size: 48px !important;
    line-height: 58px !important;
}
}

@media (max-width: 280px) {
.item.slide1, #slide2, #slide3, #slide4 {
    height: 600px !important;
}
.mb.mob-slide-1 {
    margin-top: 35px;
}
.owl-carousel.main-carousel .owl-dots {
    bottom: 2% !important;
}
.mb.slide-mob-2 {
    margin-top: 20px;
}
.mb.slide-mob-3 {
    margin-top: 20px;
}
.mb.slide-mob-4 {
    margin-top: 20px;
}
.logo img {
    width: 175px !important;
}
nav {
    padding: 0 !important;
}
.mk-text.good.partner-ship img {
    width: 90% !important;
}
.partner-ship p {
    font-size: 14px !important;
}
.banner-text h1 {
    font-size: 26px !important;
    line-height: 35px !important;
    color: #fff !important;
}
/*.mb.mob-slide-1 {
    padding-top: 68px;
}*/
.mb.slide-mob-2 {
    padding-top: 8px;
}
.mb.slide-mob-3 {
    padding-top: 8px;
}
.mb.slide-mob-4 {
    padding-top: 8px;
}

}


@media screen and (min-device-width: 280px) and (max-device-width: 653px) and (orientation : landscape){
    .banner-text h1 {
    width: 100% !important;
}
.mb.mob-slide-1 {
    padding-top: 100px !important;
}
}













@media screen and (min-device-width: 390px) and (max-device-width: 844px) and (orientation : portrait){
/*.mb.mob-slide-1 {
    padding-top: 84px;
}*/
}
@media screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation : portrait){
.mb.mob-slide-1 {
    padding-top: 0px;
}
}