

@font-face {
    font-family: 'ITC Avant Garde Gothic Std Book';
    src: url('../fonts/ITCAvantGardeStd-Bk.eot');
    src: url('../fonts/ITCAvantGardeStd-Bk.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ITCAvantGardeStd-Bk.woff2') format('woff2'),
        url('../fonts/ITCAvantGardeStd-Bk.woff') format('woff'),
        url('../fonts/ITCAvantGardeStd-Bk.ttf') format('truetype'),
        url('../fonts/ITCAvantGardeStd-Bk.svg#ITCAvantGardeStd-Bk') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Std Demi';
    src: url('../fonts/ITCAvantGardeStd-Demi.eot');
    src: url('../fonts/ITCAvantGardeStd-Demi.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ITCAvantGardeStd-Demi.woff2') format('woff2'),
        url('../fonts/ITCAvantGardeStd-Demi.woff') format('woff'),
        url('../fonts/ITCAvantGardeStd-Demi.ttf') format('truetype'),
        url('../fonts/ITCAvantGardeStd-Demi.svg#ITCAvantGardeStd-Demi') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Std Md';
    src: url('../fonts/ITCAvantGardeStd-Md.eot');
    src: url('../fonts/ITCAvantGardeStd-Md.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ITCAvantGardeStd-Md.woff2') format('woff2'),
        url('../fonts/ITCAvantGardeStd-Md.woff') format('woff'),
        url('../fonts/ITCAvantGardeStd-Md.ttf') format('truetype'),
        url('../fonts/ITCAvantGardeStd-Md.svg#ITCAvantGardeStd-Md') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC_ Avant_ Garde';
    src: url('../fonts/ITCAvantGardeBold.eot');
    src: url('../fonts/ITCAvantGardeBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ITCAvantGardeBold.woff2') format('woff2'),
        url('../fonts/ITCAvantGardeBold.woff') format('woff'),
        url('../fonts/ITCAvantGardeBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
#status {
    width:100%;
    height:100%;
    position:absolute;
    left:0; /* centers the loading animation horizontally one the screen */
    top:0; /* centers the loading animation vertically one the screen */
    background-image:url(../images/loading.png); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:0; /* is width and height divided by two */
}


/*************************/

/*************** DEFAULT CSS ***************/
:root {
    --body-font: 'ITC Avant Garde Gothic Std Book';
    --body-font-Size: 14px;
    --body-color: #000;
    --primary-color: #71257f;
    --secondary-color: #e42d53;
    --black: #000;
    --white: #fff;
    --grey: (#ccc);
    --heading-font: 'ITC Avant Garde Gothic Std Book';   
    
}
body{
    
    font-family: var(--body-font);
    font-size:var(--body-font-Size);
    font-style: normal;
    line-height: normal;
    font-weight:400;
    color: var(--body-color);
    text-decoration: none;
    margin:0px;
    -webkit-font-smoothing: antialiased;
    padding:0;
    
}

html{ scroll-behavior: smooth;}
* {
    -webkit-box-sizing: border-box;
    -mox-box-sizing: border-box;
    box-sizing: border-box;
}
::selection {
    background: var(--primary-color); /* Safari */
    color:#fff;
        }
::-moz-selection {
    background: var(--primary-color); /* Firefox */
    color:#fff;
}

a {
    color:var(--black);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    a:hover {
    color: var(--primary-color);
    }

p {
    margin:0px 0 30px 0;
    clear:left;
    padding:0;
    /* font-weight: normal; */
    line-height: 23px
    }
h1, h2, h3, h4, h5, h6 {
    margin:0 0 20px 0;
    padding:0;
    font-weight:normal;
    }
    h2{
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 25px
    }
        h3{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px
    }
  
hr {
    margin:50px  0 50px 0;
    height:1px;
    border:0;
    border-top:1px solid #0caf4e;
    
    float:left;
    width:100%;
    position:relative;
}

img{
    border:0;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    
}   
a img {
    border: 0;
    }

/*-----------text styles------------*/
.text-white{
    color:var(--white)!important;
}
.text-black{
    color: #000  !important;
}
.text-primary{
    color: var(--primary-color) !important;
} 
.text-secondary{
    color: var(--secondary-color) !important;
} 
.text-red{
    color:var(--secondary-color)!important;
}
.text-purple{
    color:var(--primary-color)!important;
}
.text-center{ text-align: center; }
.text-justify{ text-align: justify; }
.uppercase{text-transform: uppercase;}
/*-----------background styles------------*/
.bg-primary{background-color: var(--primary-color)}
.bg-red{background-color: var(--secondary-color)}

.bg-grey{background: #f1f1f1;
}
    
/*--------------------------BIG SCREEN DEFAULT-----------------------------------*/










.youtube-wrap{
    padding: 100px 0;
    background-image: url(../images/yt-bg.jpg);
    width: 100%;
    height: 600px;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}











.header{
    width:100%;
/*  position:absolute;*/
    left:0;
    top:0;
    z-index:99;
    padding:0px  0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    float: left;
    
    /*-webkit-box-shadow: 0px 2px 12px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow:    0px 2px 12px 0px rgba(50, 50, 50, 0.2);
    box-shadow:         0px 2px 12px 0px rgba(50, 50, 50, 0.2);*/
}
header.smaller {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    -webkit-box-shadow: 0px 1px 5px 0px rgb(50 50 50 / 41%);
    -moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    box-shadow: 0px 1px 5px 0px rgb(50 50 50 / 41%);
}
header.smaller .logo {
    width: 250px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    padding: 10px;
   -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
header.smaller .logo:after, header.smaller .logo:before {
    visibility: hidden;
}   
 .back{
    width:50px;
    height:50px;
     position:fixed;
    bottom:0;
    right:0;
    background-color:#2bc0b6;
    text-align:center;
    line-height:50px;
     color:#fff;
     display:none;
 }
  .back:hover{
     background-color:#403F41;
  }


 .container{
    width:1320px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.logo{width: 383px;position: absolute;top:0;
    left:0;right:0;margin:0 auto;background: #fff;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 20px;
 -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;}
    .logo:before {
    content: '';
    position: absolute;
    left: -26px;
    /* top: 0; */
    bottom: 15px;
    /* margin: auto 0; */
    width: 0;
    height: 0;
    border-top: 80px solid #fff;
    border-bottom: 48px solid transparent;
    border-right: 36px solid #fff;
    z-index: -1;
    border-radius: 0;
    z-index: 5;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
    .logo:after {
    content: '';
    position: absolute;
    right: -26px;
    /* top: 0; */
    bottom: 15px;
    /* margin: auto 0; */
    width: 0;
    height: 0;
    border-top: 80px solid #fff;
    border-bottom: 48px solid transparent;
    border-left: 36px solid #fff;
    z-index: -1;
    border-radius: 0;
    z-index: 5;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
/*.logo:after{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    border-bottom: 150px solid green;
     border-left: 100px solid transparent;
     border-right: 100px solid transparent;
    }*/
.logo img{
    width: 100%;
    }
.header-in{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    float: left;
    /*gap:350px;*/
    min-height: 100px;
}
.header-left, .header-right{
    width: 35%;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 24px;
    }
.social {
    float: right;
    font-size: 16px;
    line-height:25px;
}
.social a i{

    font-size: 16px;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .social a:hover i{
    background: var(--primary-color);
    }
.menu-wrapper{
    width: 100%;
    float: left;
    

}
.call{
    width:auto;
    display: inline-block;
    float: right;
}
.call-number {
    position: relative;
    padding: 0 0 0 37px;
    margin: 0 0 0px 0;
    width: 100%;
    float: left;
    font-size: 13px;
    line-height: 17px;
}
.call-number i {
    position: absolute;
    left: 0;
    top: 0px;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-number i.fa-envelope {
    font-size: 15px;
    }
.number{
    
font-size: 13px;
}

.circle {
    width: 31px;
    height: 31px;
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
    line-height: 37px !important;
    border-radius: 7px;
    display: flex;
}


section{
    width:100%;
    float:left;
    margin:0;
    padding:0;
    position:relative;
    
}
.intro-right{
    scroll-margin-top:150px;
}
.pad-150{
    padding:150px 0;
}
.pad-70{
    /*padding:70px;*/
    padding:4%;
}
.padtop-80{
    padding-top:80px;
}
 .pad-100{
    padding:100px 0;
}
.para-pad{
    padding:0 100px;
}
 
.pad-both{
    padding:0 65px;
}
 
.margin-bottom{
    margin:0 0 25px 0;
}
.pad-left-30{
    padding-left:30px;
}
.pad-left{
    padding-left:80px;
}
.pad-right{
    padding-right:80px;
}
.gap-350{
    width:100%;
    height:350px;
    float:left;
}
.gap-200{
    width:100%;
    height:200px;
    float:left;
}

.less{}
.gap-100, .gap-50, .gap-20{
    width:100%;
    height:100px;
    float:left;
}
.gap-50{
    height:50px;
    }

.gap-20{
    height:20px;
    }
    
.back-margin{
    position:relative;
    margin-top:-300px;
}   

.back-margin-200{
    position:relative;
    margin-top:-200px;
}   
.back-margin-100{
    position:relative;
    margin-top:-100px;
}   

 
.form-inner{
    width:100%;
    background-color:#fff;
    float:left;
    padding:10px;
    margin-top:70px;
 

}
.inset{
    padding:40px;
    min-height:350px;
}
.form-inner h2{
    background-color:#233E8B;
    padding:15px 25px;
    text-align:center;
    color:#fff;
    font-size:20px;
    font-weight:300;
    margin:0 0 5px 0;
}
 
.form-inner h2 span{
    font-weight:500;
} 
.section2{

}
.float-right{
    float: right;
}
.float-none{
    float: none;
}
h2 span.small{
    font-size: 48px;
}

.section2 .bluebox{
    width: 55%;


}
.section2 .bluebox p{
    font-size:18px;
    letter-spacing: 1px;
    text-align: left
    

}



.section3{
    color: #fff;

}


.diagnostic-tests{}
.section3  .highlight-text{
    font-size: 30px;
    text-transform: uppercase;
    line-height: 50px;
    font-weight: 600;


}

.section4{

}


.section5{
/*  color: #fff;*/

}

.section5 p{
    margin-top: 0;

}

.section6{
    color: #fff;

}

.section6 a{
    color: #fff;

}
.section6 a:hover{
    color: #2cc2b8;

}

.contact-top{

}

.contact-bottom{
    border-top: 1px solid #4c5d73;
    padding: 30px 0;
    width: 100%;
    float: left;
    font-size: 12px;
    line-height: 23px;
    
}

.padbottom0{
    padding-bottom: 0px;

}
.footerlogo{

}
.address{

}
p.add {
    position: relative;
    padding: 5px 0 0 60px;
    margin: 0 0 15px 7px;
    width: 100%;
    float: left;
    font-size: 14px;
}
p.add strong{
    font-size: 18px;
    font-weight: bold
}
p.add i {position: absolute;left: 0;top: 5px;/* color: #fff; */font-size: 26px;}
.address{
    padding-top: 10px
}
.margintop0{
    margin-top:0;
}
img.social {

}
img.social:hover {
    opacity: 0.8
    
}

.section7{

}
.googlemap{
    width: 100%
}
.googlemap iframe{
    width: 100%;
    height: 600px;
}
/*************BACKGROUND COLORS****************/

.light-blue-bg{
    background-color:#DCE5F0;
}
.dark-blue-bg{
    background-color:#434e7f;
    color:#fff;
}
.dark-blue-bg h1{
    color:#fff;
    color:#fff;
}

.white-bg{
    background-color:#FFF;
 
}
.cream-bg{
    background-color:#E3DEDA !important;
}

.green-bg{
    background-color:#BDDCDA !important;
    }
    
/*****************/
.cover-bg, .cover-bg-cream, .cover-bg-green{
    position:relative;
    background-repeat: no-repeat;
    background-position: center  center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment:fixed;
 
}

.cover-bg:before{
    width:40%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    background-color:#fff;
    content:'';
 
}
 
.cover-bg-cream:before{
    width:40%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    background-color:#E3DEDA;
    content:'';
 
}

.cover-bg-green:before{
    width:40%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    background-color:#BDDCDA !important;
    content:'';
 
}
.overlayer-text-parent{
    width:50%;
    float:left;
    background:#073693;
    position:relative;
    z-index:2;
}

.overlayer-text-child{
    width:600px;
    float:right;
    padding:70px 50px 70px 0;
    color:#fff;
}
.overlayer-text-child p:last-child{
    margin:0;
}   

.section-footer{
    width:100%;
    float:left;
    display:block;
    position:relative;
    padding:40px 0;
    z-index:2;
    background-color:#fff;
    margin-top:80px;
}
.section-footer .smd2{
    float:right;
    text-align:center;
}
 .margin-top-zero{
    margin-top:0;
    }

.intro-right{
    position: relative;
}
.intro-right:after{
    content: '';
    width: 50%;
    height: 100%;
    background: #f1f1f1;
    position: absolute;
    top:0;
    right:0;
}
.cursive-text{
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
}
/**********parallax********/

.jarallax {
    position: relative;
    /*background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;*/
    background-repeat: no-repeat;
    background-position: center  center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*background-attachment:fixed;*/
}


.cover{
    background-repeat: no-repeat;
    background-position: center  center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
    
.section-bg1{

}  

.section-bg2{
    background-image: url(../images/backgrounds/section-bg2.jpg);
        background-repeat: no-repeat;
    background-position: top  center;

} 
.section-bg3{
    background-image: url(../images/bg1.jpg);
    background-repeat: no-repeat;
} 
.section-bg4{
    background-image: url(../images/backgrounds/section-bg4.jpg);
    background-repeat: no-repeat;
} 
.section-bg5{
    background-color: #f1f1f1;
    /*color: #fff;*/
    position: relative;
    font-weight: 600;
} 
.split-mask {
    width: 60%;
    height: 101%;
    background: url(../images/splitbg.jpg) no-repeat top right;
    background-size: cover;
    position: absolute;
    z-index: 0;
}

.section-bg5 a{

color: var(--body-color);
} 
.section-bg5 a:hover{
    color: #fff;
}
/*********COLUMS AND ROWS***************/
.row {
    width:100%;
    float:left;
    display:block;
    position:relative;
}

.row-flex{ 
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.justify-center{justify-content: center;}
.align-center{align-items: center;}
.space-between{justify-content: space-between;}
    
.aside, .summary{
    width:30%;
    float:left;
    margin:0;
    display:block;
    
}
.summary{
    width:70%;
}
.fullwidth{
    width:100%;
    display:block;
}
.clearfix{
    width:100%;
    height:30px;
    float:left;
    margin:0;
    padding:0;
    display:block;
}



.two-col{
    width:47%;
    float:left;
    margin-right:6%;
    position:relative;
}

.three-col{
    width:30%;
    float:left;
    margin-right:5%;
    position:relative;
}
.four-col{
    width:22%;
    float:left;
    margin-right:4%;
    position:relative;
}


.last{
    margin-right:0 !important;
}



/**********forms**************/

form{
    margin:0;
    padding:0;
}

*:focus {  
    outline: none;
}
    

.fieldset {
    width: 100%;
    height: auto;
    padding: 7px 0;
    line-height: 42px;
    background: transparent;
    display: block;
    border: 0;
    border-bottom: 1px solid #333;
    font-weight: 600;
    margin: 0;
    color: #333 !important;
    font-size: 15px;
    float: left;
}
::placeholder {
    color: #333 ;
}




/*.secondary{
    height:auto !important;
    border-left:0 !important;
    border-top:0 !important;
    border-right:0 !important;
    border-bottom:1px solid #063592 !important;
    padding:16px 0 16px 0;
}
*/
.text-right{
    text-align: right
}
.sendbutton{
    width: auto;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 23px;
    text-align: center;
    background-color:var(--secondary-color);
    display: block;
    margin: 0 0 25px 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: inline-block;
}
.sendbutton:hover{
    background-color:#000;
}
 
.full{
    width:100%;
}




.intro-box{
    padding: 30px 30px 30px 0px;
}



.contentbox{

}
.heading{
    display: inline-block;
    padding: 20px 30px;
    color: var(--white);
 /*   border:1px solid var(--primary-color);*/
    background-color:var(--primary-color) ;
    font-size: 19px;
    line-height: 22px;
    text-transform: uppercase;
    text-align:center;
    margin-bottom: 0;
    font-weight: bolder;
}
.center-heading{
    position: absolute;
    top:100px;
    left:0;
    right:0;
    margin:0 auto;
    width: auto;
    display: inline-block;
    text-align: center;
    z-index: 3;
}
.map{
    line-height: 0;
    background-color: #f8f9fa;
}
.full-width{
    width: 100%;
}
.contact-heading{
    margin-left: 20%;
}
.line{
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top:0;
    left:33.33%;
}
.line2{
    left:66.66%;
}
.facilities-row{
    width: 100%;
    position: relative;
}
.facility-box{

    padding: 0 35px;
    color: var(--body-color);
}
.facility-box .overlay-effect2{
    margin-bottom: 35px;
}
.facility-box h3{
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 25px;
  /*  color: #ffc600;*/
    color: var(--primary-color);
    font-weight: 600;
}
.facility-box p{
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
}

.news-box {
    border: 1px solid #dddddd;
    padding: 23px;
    min-height: 545px;
}
.news-box h3 {
    font-size: 19px;
    line-height: 25px;
    color: #696969;
    font-weight: bold;
    margin-bottom: 0;
}
.date{
    display: block;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #696969;
    font-size: 12px;
    font-weight: 400;
}

.news-box{

}
.news-desc{
padding: 30px 0 0 0;
}
/*************** paddings ***************/
.pt-200{padding-top: 200px}
.pt-100{padding-top: 100px}
.pb-100{padding-bottom: 100px}
.pt-50{padding-top: 50px}
.pb-50{padding-bottom: 50px}
.pt-70{padding-top: 70px}
.pb-70{padding-bottom: 70px}
.pt-30{padding-top: 30px}
.pb-30{padding-bottom: 30px}
.pt-20{padding-top: 20px}
.pb-20{padding-bottom: 20px}
.pt-0{padding-top: 0px}
.pb-0{padding-bottom: 0px}

.pad-0{padding: 0}
.pad-25{padding: 25px}
.pl-100{padding-left: 100px}
.pr-100{padding-right: 100px}
.pl-80{padding-left: 80px}
.pr-80{padding-right: 80px}
.pl-20{padding-left: 20px}
.pr-20{padding-right: 20px}
.pl-30{padding-left: 30px}
.pr-30{padding-right: 30px}
.pl-50{padding-left: 50px}
.pr-50{padding-right:50px}
.pl-70{padding-left: 70px}
.pr-70{padding-right: 70px}
.pr-20{padding-right: 20px}
.mt-100{margin-top: 100px}
.mb-100{margin-bottom: 100px}
.mt-30{margin-top: 30px}
.mb-30{margin-bottom: 30px}
.mt-50{margin-top: 50px}
.mb-50{margin-bottom: 50px}
.mt-0{margin-top: 0px}
.mb-0{margin-bottom: 0px}



.number br {
    display: none;
}
.d-mob{
    display: none;
}
.d-web{
    display: block;
}

.news-inner .smd30 {
    width: 30%;
}
.news-inner .smd70 {
    width: 70%;
}
.news-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.news-vedio-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.vedio-box {
    flex: 0 0 48%;
    padding: 10px;
    margin-bottom: 2%;
    border: 1px solid #e3e3e3;
}
.vedio-box video {
    width: 100%;
}
.img-box {
    flex: 0 0 32%;
    padding: 10px;
    margin-bottom: 2%;
    border: 1px solid #e3e3e3;
}
.img-box img {
    display: block;
}
.sticky-bar {
    position: sticky !important;
    top: 100px;
}
.news-inner .news-desc h3 {
    font-size: 30px;
    font-weight: 600;
}
a.read-more {
    padding: 10px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: inline-block;
    color: var(--white);
    background-color:var(--primary-color) ;
    text-transform: uppercase;
    text-align:center;
    margin-bottom: 0;
    font-weight: bolder;
}

/*********medea query 1180**************************************/



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

.container{
    width:100%;
    float:left;
    padding:0 15px;
}
.logo, header.smaller .logo {
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 0;
    padding: 10px;
}
.logo:after, .logo:before{display: none;}
.contact-heading {
    margin-left: 0;
}
.logo img{
    max-width: 250px;
    }
.header-in {

    flex-wrap: wrap;
}
.header-right {
 
    width: 100%;
    justify-content: center;
    padding-bottom: 15px;
    border-top: 1px solid #ededed;
    padding-top: 15px;
}
.menu-wrapper {
    width: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100
   
}

.section2 .bluebox{
    width: 100%
}
    
.logo{

} 
.call {

}
.section2 .pad-right, .section2 .pad-left  {
    padding-right: 0;
    padding-left: 0;
    border-right: 0px solid #d0cecf;
}

.split-mask {
    width: 100%;
}


.pad-left-30{
    padding-left:0px;
}
.googlemap iframe{
    height: 400px;
}
.intro-right:after{display: none;}
}
/***********************980px *************************************/

@media only screen and (max-width: 1280px) {
.intro-right .smd2{width: 100%}
.heading {
    display: block;
    }
.contact .smd60, .contact .smd40{width: 100%}
.center-heading {
    position: static;
    width: 100%
}

.flex-direction-column-reverse-mob{flex-direction: column-reverse;}
.pt-100 {
    padding-top: 40px;
}
.pt-200 {
    padding-top: 50px;
}
}


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



}






/***********************767px *************************************/
@media only screen and (max-width: 768px) {

.smd2, .smd3, .smd4, .smd5, .smd66 {
     width:100%;
     
}
.pt-200, .pt-100, .pt-70, .pt-80,.pt-50{
    padding-top:30px;
}
.contentbox{
    padding: 25px !important;
}
.pb-100, .pb-70, .pb-80,.pb-50{
    padding-bottom:30px;
}
.pl-100, .pl-70, .pl-50{padding-left:0;}
.pr-100, .pr-70, .pr-50{padding-right:0;}
.two-col, .three-col, .four-col, .aside, .summary, .intro-img, .intro-content {
     width:100%;
     margin:0 0 5px 0;
     
}

.pad-150,  .pad-100{
    padding:20px 0;
}
 
 
.para-pad, .pad-both{
    padding:0;
}
 
.pad-left,
.pad-right{
    padding:0;
}
.gap-100, .gap-50, .gap-20{
    height:5px !important;
}
.gap-350, .gap-200{
    height:25px;
}
.less{
    height:0 !important;
    margin:0 !important;
}
.list{
    margin:0;
 
}

.form-inner h2{
 
    padding:10px 15px;
    color:#fff;
    font-size:16px;
 
}
 
.overlayer-bg{
    width:100%;
    height:200px;
    position:relative;
    float:left;
    top:auto;
    right:auto;
}


.overlayer-text-parent, .overlayer-text-child{
    width:100%;
 
}

.overlayer-text-child{
    padding:20px;
 
}


.back-margin, .back-margin-200, .back-margin-100{
    margin-top:0;
}   
 
.gap-350, .gap-200{
    height:25px;
}
.less{
    height:0 !important;
    margin:0 !important;
}
.inset{
    padding:20px;
    min-height:auto;
}


h1 {
    font-size: 34px;
    line-height: 38px;
    margin: 25px 0;
}
h2{
        font-size: 40px;
    line-height: 43px;
}
h3{
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0;

}
h2 span.small {
    font-size: 28px;
}
.highlight:after {
    display: none;
    }


.googlemap iframe{
    height: 300px;
}
.section6 .text-right{text-align: center;

}
.contact .smd60 {
   padding: 30px 25px  0px 25px;
}
}


/***********************640 px *************************************/

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


body{
    font-size:13px;
    line-height:16px;
}

.home-split{
    width:100%;
    padding:20px 0 0 0;
}
 

.home-split .heading {
         
    font-size:20px;
    line-height:20px;
}
.form-inner{
    margin:0 0 25px 0;
}
.split-mask {
    height: 70%;
}
.heading{
    font-size:20px;
    line-height:20px;
}
.subtitle, .subtitle-small, .subheading{
    font-size:16px;
    line-height:18px;
}
.more-information-wrap-outer{
    padding:10px 0;
}
.more-information-wrap{
    padding:10px;
    border-radius: 0;
    font-size:16px;
    margin:0 0 25px 0;
 
}
 
 
 
 
.more-information-wrap:before { 
    left:0; 
}
 .more-information-wrap:after{
    right:0;
     
 }
 
.more-information-wrap h2{
    
    font-size:12px;
    line-height:12px;
    margin:-15px 0 10px 0;
}
 
 .custom-select:after{
     width:40px;
     height:40px;
     
    }
 
 
 .custom-select__trigger {     
     padding: 0 10px;
     font-size:14px;
     height: 40px;
     line-height: 40px;
}
 
 .custom-option {
     padding: 0 102px 0 10px;
     font-size: 14px;
     line-height: 40px; 
}
.arrow {
     height: 15px;
     width: 10px;
     left:0px;
      
}

.fieldset, .send-button{
    padding:10px 20px;
}
.inset{
    padding:20px;
}
.news-inner .smd30 {
    width: 100%;
}
.news-inner .smd70 {
    width: 100%;
    padding-left: 0;
}
.img-box {
    flex: 0 0 48%;
}
.vedio-box {
    flex: 0 0 100%;
}
}

/***********************980 px *************************************/

@media only screen and (max-width: 980px) {
.line{
    left:50%;
}
.line2{
display: none;
}
}

/***********************640 px *************************************/

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

.line{
display: none;
}
}
/***********************480 px *************************************/

@media only screen and (max-width: 480px) {
.logo img {
    max-width: 215px;
}
.d-mob .number {
    margin-top: -10px;
    position: relative;
    top: -9px;
}
.d-mob .call-number i {margin-top: 9px;}
.d-mob{
    display: block;
}
.d-web{
    display: none;
}
    .number br {
    display: block;
}
    .number {
    font-size: 12px;
}
.header-right {
    gap: 5px;
    padding-left: 0px;
}
    
.logos{
    float:left;
}
 
.logos ul li{
    padding:5px;
    float:none;
    margin:0;
    display:inline-block;
}
.logos ul li:last-child{
    border-left:1px solid #ccc; 
}
.logos img{
    display:block;
    height:30px;
}
 
.awards img{
    width:70px;
}
 
.cover-bg:before, .cover-bg-cream:before, .cover-bg-green:before{
 
width:100%;  
 
}
.section-bg1, .section-bg2, .section-bg3, .section-bg4, .section-bg5,.section-bg6,.section-bg7, .section-bg8, .section-bg9, .section-bg10, .section-bg11, .section-bg12, .section-bg13{ 
    /*background-image:none;*/
} 

.section-bg1{ 
background-size:120%;
} 
.section-bg2{ 
background-image:none;
} 
.section-bg3{ 
background-size:100%;
} 
.padtop-80 {
    padding-top: 0px;
}
.cover-bg{
    padding:0;
}
.mobile-image{
    display:block !important;
    margin-bottom:20px;
} 
.homecare-vector{
    width:250px;
}
}


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

.homecare-vector{
    width:150px;
}
.img-box {
    flex: 0 0 100%;
}
}


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


}