@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* 
font-family: "Oswald", sans-serif;
font-family: "Jost", sans-serif;
*/

:root{
    --theme-color:#0c6ec2;
    --theme-color2:#00aa91;
    --theme-color3:#004c8e;
    --body-color:#333;
    --body-font:"Jost", sans-serif;
    --heading-font:"Oswald", sans-serif;
}


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
body{ 
    margin:0;
    padding:0; 
    font-family: var(--body-font);
    width: 100%; 
    font-weight: 400;
    color: var(--body-color); 
    font-size: 18px; 
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    background: #fff;
}
p{
    margin: 0 0 30px 0;
}
p:last-child{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
    margin:0 0 30px 0;
    padding:0;
    font-family: var(--heading-font);
    color:var(--body-color);
    font-weight: 500; 
    line-height: 1.2;
}
h1,
.title-h1{
	font-size: 60px; 	
}
h2,
.title-h2{ 
    font-size: 40px; 
}
h3,
.title-h3{
    font-size: 30px;
}
h4,
.title-h4{
	font-size: 25px;
}
h5,
.title-h5{
	font-size: 20px;
}
h6,
.title-h6{
	font-size: 18px;
}
ul,li{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a{ 
    font-family: 'Oswald', sans-serif; 
     margin:0;
     padding:0;
     text-decoration:none !important;
     outline:none !important; 
     color: #080808;
-webkit-transition: all 0.4s ease-in-out;
 -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out; 
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover{color: #003893;}

::-webkit-input-placeholder{opacity:1; color: #878787;}
:-ms-input-placeholder{opacity:1;color: #878787;}
::-moz-placeholder{opacity:1;color: #878787;}
:-moz-placeholder{opacity:1;color: #878787;}

img{
    max-width: 100%;
}

input[type="text"],input[type="tel"],input[type="password"],input[type="email"],input[type="number"]{
    width: 100%;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
    color: #333;
    border: 1px solid #dfdfdf;
    height: 51px;
    padding: 0 13px;
    font-size: 18px;
    font-family: var(--body-font);
    background-color: #f8f8f8;
}
textarea{
    resize: none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
     border: 1px solid #dfdfdf;
      padding: 12px 13px;
     color: #333;
    background-color: #f8f8f8;
    font-size: 18px;
    font-family: var(--body-font);
    width: 100%;
    height: 140px;
}
select{ 
    border: 1px solid #b8b8b8; 
    width: 100%; 
    padding: 0 11px; 
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center; 
    background-color:#fff ; 
    background-size: 18px; 
    padding-right: 40px ; 
    outline: none ; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    -ms-appearance: none; 
    -o-appearance: none; 
    appearance: none; 
} 
select::-ms-expand { 
    display: none; 
}
.form-control{
    border-radius: 0;
    border: 1px solid #b8b8b8; 
    padding: 12px 16px;
}
input[type="submit"], input[type="reset"], input[type="button"]{
    background:#e92f11; 
    color: #fff; 
    height: 48px; 
    border:none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0; 
     padding-left: 30px; 
     padding-right: 30px; 
     text-transform: uppercase; 
     cursor: pointer;
     transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover{
    background:#feb620;
}
a,button{
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

img.alignright { 
    float: right; 
    margin: 0 0 20px 20px; 
}
img.alignleft { 
    float: left; 
    margin: 0 20px 20px 0; 
}
img.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none; 
}
.alignright { 
    float: right;  
    margin: 0 0 20px 20px;
}
.alignleft { 
    float: left;
    margin: 0 20px 20px 0; 
}
.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none;
}

.cmn-gap{
    padding: 100px 0px;
}

.cmn-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color:var(--body-color);
    color: #fff;
    min-width: 172px;
    padding: 13px 20px;
    font-size: 20px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.cmn-btn img {
    margin-left: 10px;
    width: 20px;
}

.cmn-btn:hover{
    background-color: var(--theme-color);
    color: #fff;
}
.sml-cmn-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color:var(--body-color);
    color: #fff;
    min-width: 161px;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.sml-cmn-btn img {
    margin-left: 10px;
    width: 20px;
}
.sml-cmn-btn:hover{
    background-color: var(--theme-color);
    color: #fff;
}
.cmn-btn.white {
    border: 2px solid #fff;
    background: transparent;
    padding: 11px 20px;
}

.cmn-btn.white:hover {
    background: #fff;
    color:#333;
}

.cmn-btn.white:hover img {
    filter: brightness(0);
    opacity: .7;
}


/* ========= custom scrollbar ======== */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 7px; 
  }


  /* ============= main csss ============= */

  .container{
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }

  .header-top {
    background: var(--theme-color);
}

.hdr-top-wrap {
    margin: 0px -15px;
    display: flex;
    justify-content: space-between;
}

.hdr-top-wrap > * {
    padding: 0px 15px;
}

.hdr-top-left-col ul {
    display: flex;
}

.hdr-top-left-col ul {
    margin: 0px -12px;
}

.hdr-top-left-col li {
    padding: 6.5px 12px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hdr-top-left-col li a img {
    width: 18px;
    opacity: .5;
    margin-right: 10px;
}

.hdr-top-left-col li:last-child {
    border-right: 0px;
}

.hdr-top-left-col li a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.hdr-top-left-col li a:hover{
    opacity: .7;
}

.hdr-top-right-col ul {
    display: flex;
    align-items: center;
    margin: 0px -12px;
}

.hdr-top-right-col li {
    padding: 6.5px 12px;
}

.hdr-top-right-col li a {
    font-size: 15px;
    color: #fff;
}

.hdr-top-right-col li a:hover{
    opacity: 0.7;
}


.trin-trin
{
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes trin {

    from {
        transform:rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0,0,1,15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0,0,1,0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0,0,1,-15deg);
    }
    80% {
        transform:rotate3d(0, 0, 1, 0deg);
    }

}

.header-nav {
    padding: 26px 0px;
}

.hdr-nav-cont {
    display: flex;
    align-items: center;
}

.site-logo {
    margin-right: auto;
    max-width: 194px;
}

.navbar-wrap ul {
    display: flex;
}

.navbar-wrap li {
    margin: 0px 22px;
}

.navbar-wrap li a {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    color: var(--body-color);
}

.navbar-wrap li a:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    right: 0;
    background: var(--theme-color);
    height: 2px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}

.navbar-wrap li a:hover:before {
    width: 100%;
}
.navbar-wrap li a.active:before {
    width: 100%;
}
.navbar-wrap li a:hover {
    color: var(--theme-color);
}
.navbar-wrap li a.active {
    color: var(--theme-color);
}
.hdr-btn-call {
    margin-left: 35px;
}

.hdr-btn-call a {
    background: var(--theme-color2);
    padding: 8.5px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 191px;
}

.hdr-btn-call a:hover{
    background: var(--theme-color);
}

.hdr-btn-call a .trin-trin {
    width: 20px;
    margin-right: 12px;
}

.btn-call-text {
    color: #fff;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.btn-call-text .title-text {
    display: block;
    text-transform: capitalize;
    font-size: 13px;
}

.has-dropdown {
    cursor: pointer;
    padding-right: 20px;
    position: relative;
}

.has-dropdown i {
    position: absolute;
    top: 11px;
    right: 0;
    font-size: 11px;
    color: var(--body-color);
}

.has-dropdown:hover a:before {
    width: 100%;
}

.dropdown-wrapper {
    position: absolute;
    top: 160%;
    left: 0;
    width: 100%;
    min-width: 200px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 9;
}

.dropdown-wrapper ul li {
    width: 100%;
}

.dropdown-wrapper ul {
    flex-wrap: wrap;
}

.dropdown-wrapper li {
    margin: 0px;
    border-bottom: 1px dashed #ddd;
}

.dropdown-wrapper li:last-child {
    border-bottom: 0px;
}

.dropdown-wrapper li a {
    padding: 10px 15px;
    display: block;
    font-size: 16px;
}

.dropdown-wrapper li a:before {
    display: none;
}

.has-dropdown:hover .dropdown-wrapper {
    top: 130%;
    opacity:1;
    visibility: visible;
}


.home-banner-wrapper {
    padding: 0px 80px;
    position: relative;
}

.home-ban-slider .item {
    position: relative;
    min-height: 640px;
    display: flex !important;
    align-items: center;
}

.hm-ban-back-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hm-ban-row {
    display: flex;
    align-items: center;
    margin: 0px -15px;
}

.hm-ban-lt-col {
    width: 60%;
    padding: 0px 15px;
}

.hm-ban-rt-col {
    width: 38%;
    padding: 0px 15px;
}

.hm-ban-rt-img {
    width: 100%;
}

.hm-ban-lt-col h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

.hm-ban-lt-col p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.hm-ban-icons-wrap {
    max-width: 470px;
    display: flex;
    flex-wrap: wrap;
    margin: 20px -10px -10px;
}

.hm-ban-item-col {
    width: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.hm-ban-item-col i {
    width: 39px;
    height: 39px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 4px solid #49bed8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.hm-ban-item-col i img {
    width: 19px;
}

.hm-ban-lt-col h1 span {
    font-size: 60px;
    font-weight: 600;
    position: relative;
    color: var(--theme-color);
}

.hm-ban-lt-col h1 span:after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    bottom: 7px;
    left: 0;
}

.hm-ban-lt-col-head {
    width: 900px;
}

.hm-ban-btn-wrap {
    margin-top: 40px;
}

.sld-pagination-bar {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22px;
}

.ban-sld-num {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.ban-sld-dots ul li {
    width: 12px;
    height: 12px;
    border: 1px solid var(--body-color);
    border-radius: 100%;
    font-size: 0px;
    position: relative;
}

.ban-sld-dots ul li:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 7px;
    height: 7px;
    border-radius: 100%;
    transition: all .3s ease-in-out;
    background-color: var(--body-color);
}

.ban-sld-dots ul li.active:after{
    transform: translate(-50%,-50%) scale(1);
}

.ban-sld-dots ul li + li {
    margin-top: 10px;
}

.ban-sld-num:after {
    content: '';
    width: 1px;
    height: 48px;
    background: var(--body-color);
    display: block;
    margin: 12px auto 0px;
}

.ban-sld-dots {
    margin-top: 12px;
}

.key-infos-row {
    border: 1px solid #e2e2e2;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.key-infos-item {
    width: 20%;
    text-align: center;
    padding: 0px 20px;
    border-right: 1px solid #e2e2e2;
}

.key-infos-item figure{
    margin-bottom: 10px;
}

.key-infos-item figure img {
    max-height: 30px;
}

.key-infos-item:last-child {
    border-right: 0px;
}

.key-infos-item span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.key-infos-item p {
    font-size: 14px;
    line-height: 1;
}

.about-infos-sec.cmn-gap {
    padding-top: 0px;
}

.about-infos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0px -15px;
}

.about-infos-left-col {
    width: 39%;
    padding-right: 60px;
}

.about-infos-right-col {
    width: 61%;
}

.about-infos-left-col figure{
    position:relative;
    padding-right:45px;
}

.about-infos-left-col figure img{
    width:100%;
}

.about-infos-left-col figure:after {
    content: '';
    position: absolute;
    top:40px;
    left: 40px;
    right: 0px;
    bottom: -40px;
    border: 8px solid var(--theme-color2);
    z-index: -1;
}

.cmn-title {
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
}

.cmn-title:after {
    content: '';
    width: 54px;
    height: 4px;
    background: var(--theme-color3);
    position: absolute;
    bottom: 0;
    left: 0px;
}
.sml-cmn-title{
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}
.sml-cmn-title:after {
    content: '';
    width: 36px;
    height: 4px;
    background: var(--theme-color3);
    position: absolute;
    bottom: 0;
    left: 0px;
}
h4.sml-cmn-title {
    margin-bottom: 15px;
}


.cmn-title.center {
    text-align: center;
}

.cmn-title.center:after {
    right: 0;
    margin: 0 auto;
}

.about-infos-right-col span {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.about-infos-right-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.abt-infos-btn-wrap {
    margin-top: 40px;
}

.feature-infos-sec.cmn-gap {
    padding-top: 0px;
    text-align: right;
}

.feature-infos-strip {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 405px;
    background: var(--theme-color);
    min-height: 240px;
    margin-left: auto;
    padding: 50px 70px;
    justify-content: center;
    text-align: center;
    margin-top: -150px;
}

.feature-infos-strip h2 {
    line-height: 1;
    margin: 0px;
    font-size: 90px;
    font-weight: 500;
    display: inline-flex;
    align-items: flex-start;
    color: #fff;
}

.feature-infos-strip h3 {
    line-height: 1.5;
    margin: 0;
    text-align: left;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    padding-left: 14px;
    letter-spacing: 2px;
}

.feature-infos-strip h2 sup {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-top: 16px;
}

.feature-infos-row {
    padding: 50px 50px;
    background-image:url('images/dots-bg-back.png') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    margin: -50px -15px -15px;
}

.feature-infos-col {
    width: 33.33333%;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.feature-infos-col figure {
    width: 104px;
    height: 104px;
    background: var(--theme-color2);
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-infos-col figure:after {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 100%;
    border: 1px dashed #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.feature-infos-col figure img {
    width: 50px;
}

.feature-infos-col .ftr-info-text {
    text-align: left;
    padding-left: 15px;
}

.feature-infos-col .ftr-info-text h4 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.feature-infos-col .ftr-info-text p {
    font-size: 22px;
    font-weight: 600;
}

.home-care-sec {
    position: relative;
    background: var(--theme-color);
    z-index: 1;
    text-align: center;
}

.home-care-sec.cmn-gap {
    padding: 50px 0px;
}

.home-care-back-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .1;
    z-index: -1;
}

.home-care-icon {
    width: 96px;
    margin-bottom: 25px;
}

.home-care-sec h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.home-care-sec p {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

.home-care-sec p a {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid;
}

.home-care-sec p a:hover {
    opacity: .8;
}

.client-review-sec h2 {
    margin-bottom: 50px;
}

.rvw-top-wrap {
    text-align: center;
    max-width: fit-content;
    margin: 0 auto 40px;
}

.rvw-top-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cmn-rvws-wrap i {
    color: #ffb136;
}

.rvw-top-item .cmn-rvws-wrap {
    margin:0px 10px;
    font-size:21px;
}

.rvw-sub-title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.rvw-sub-title strong {
    font-weight: 600;
}

.rvw-pwd-text img {
    width: 100px;
    margin: 0px 5px;
}

.cmn-rvws-wrap {
    display: flex;
    align-items: center;
}

.rvw-list-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.rvw-list-item {
    padding: 15px;
}

.rvw-list-inner {
    background: #fff;
    box-shadow: 0px 4px 6.5px rgba(0,0,0,0.13);
    padding: 30px;
    font-size: 16px;
}

.rvw-inner-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.rvw-date {
    font-weight: 500;
    font-size: 14px;
}

.rvw-num {
    font-weight: 500;
    font-family: var(--heading-font);
    margin-top: 6px;
    font-size: 14px;
}

.rvw-inner-main {
    padding-right: 15px;
}

.rvw-list-inner p {
    margin-bottom: 20px;
}

.rvw-auth:before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--body-color);
    display: block;
    margin-right: 12px;
}

.rvw-auth {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: capitalize;
}

.rvw-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.rvw-list-slider .slick-dots {
    bottom: 0px;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rvw-list-slider .slick-dots li {
    margin: 10px;
}

.rvw-list-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: var(--theme-color);
    border: 3px solid #ffffff;
    margin: 0 auto;
}

.rvw-list-slider .slick-dots li button:before {
    display: none;
}

.rvw-list-slider .slick-dots li.slick-active button {
    background-color: #fff;
    border-color: var(--theme-color);
}

.rvw-list-wrap {
    margin-bottom: 0px;
}

.rvw-list-slider.slick-dotted.slick-slider {
    margin-bottom: 0px;
    padding-bottom: 55px;
}





.footer-top {
    background: var(--theme-color);
    padding: 90px 0px 45px;
}

.footer-btm {
    background: var(--theme-color3);
    padding: 18px 0px;    
    color: #fff;
    text-align: center;

}

.ft-top-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.ft-top-col {
    width: 20%;
    padding: 15px;
}

.ft-top-col-fst {
    width: 30%;
}

.ft-top-col-frth {
    width: 30%;
}

.ft-title {
    font-size: 25px;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--heading-font);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ft-title:after {
    content: '';
    width: 30px;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0px;
}

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

.ft-top-info li {
    margin-bottom: 10px;
    display: flex;
    opacity: .8;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
}

.ft-top-info li img {
    width: 18px;
    max-height: 20px;
    margin-right: 10px;
    align-self: flex-start;
    margin-top: 7px;
}

.ft-top-info li:first-child img {
    margin-top: 3px;
}

.ft-top-info li a {
    color: #fff;
    font-family: var(--body-font);
    font-weight: 400;
}

.ft-top-info li a:hover {
    opacity: .5;
}

.ft-call-wrap {
    margin-top: 30px;
    background: var(--theme-color3);
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 320px;
}

.ft-call-wrap i {
    width: 50px;
    height: 50px;
    background: #0b6dc1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.ft-call-wrap i img {
    width: 25px;
}

.ft-call-text span {
    display: block;
}

.ft-call-text {
    color: #fff;
}

.ft-call-text a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.ft-call-text a:hover {
    opacity: 0.8;
}

.ft-social-media {
    margin-top: 40px;
}

.ft-social-media ul {
    display: flex;
    align-items: center;
    margin: -8px;
}

.ft-social-media li {
    margin: 8px;
}

.ft-social-media li a {
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    opacity: .7;
}

.ft-social-media li a:hover {
    background: var(--theme-color3);
    opacity: 1;
    border-color: var(--theme-color3);
}

.ft-nrm-links li a {
    color: #fff;
    opacity: .8;
    font-family: var(--body-font);
}

.ft-nrm-links li a:hover {
    opacity: 1;
    margin-left: 3px;
}

.ft-nrm-links li {
    margin-bottom: 14px;
}
.ft-top-inner-wrap p.btm_txt{
    font-size: 16px;
    padding-top: 6px;
}
.ft-top-inner-wrap {
    background: var(--theme-color3);
    padding: 35px 20px 25px;
    margin-top: -35px;
    text-align: center;
    color: #fff;
}

.ft-top-inner-wrap .ft-title:after {
    right: 0;
    margin: 0 auto;
}

.ft-shdl-block {
    margin-bottom: 10px;
}

.ft-shdl-block span {
    display: block;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.ft-shdl-block p {
    font-weight: 500;
    font-family: var(--heading-font);
}

.ft-btn-wrap a {
    padding-top: 9px;
    padding-bottom: 9px;
    background: var(--theme-color);
    font-size: 18px;
    min-width: 196px;
}

.ft-btn-wrap a:hover {
    background: var(--theme-color2);
}

.ft-top-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-btm a {
    color: #fff;
    font-family: var(--body-font);
}

.footer-btm a:hover {
    color: var(--theme-color2);
}

.footer-btm p {
    opacity: .7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: black;
  }

   /* Mobile Menu Button (Before Transformation) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001; /* Ensure the button stays on top */
  }
  
  .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease; /* Add a smooth transition */
  }
  
  /* Transform the mobile menu button to a cross when active */
  .menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
  }
  
  .menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.ov-off{
    overflow: hidden;
  }
  




/**innerpage banner css starts**/


.innerpage-banner-wrapper ul.breadcrumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.innerpage-banner-wrapper ul.breadcrumbs li{
    font-size: 20px;
    font-weight: 500;
}
.innerpage-banner-wrapper ul.breadcrumbs li a{
    color: #fff;
    font-family: var(--body-font);
}
.innerpage-banner-wrapper ul.breadcrumbs li.active{
    color: #04c7aa;
}
.innerpage-banner-wrapper ul.breadcrumbs li.divider img {
    height: 15px;
    margin-right: 11px;
    margin-left: 11px;
}
.innerpage-banner-wrapper .ban-text-area h2 {
    font-size: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 17px;
}

.innerpage-banner-wrapper {
    position: relative;
}
.innerpage-banner-wrapper .innerpage-banner{
    height: 448px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.innerpage-banner img.blue_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.ban-text-area {
    position: relative;
    z-index: 4;
}

/**innerpage banner css ends**/



/**about-us innerpage css starts**/

.aboutus-overview{
    padding-top: 110px;
    background-color: #fbfbfb;
    padding-bottom: 25px;
}
.aboutus-overview p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.aboutus-overview p span{
    font-weight: 600;
}

.our-journey-section{
    padding-top: 75px;
}
.our-journey-wrap{
    padding-top: 60px;
}
.our-journey-section .journey-box{
    padding-bottom: 110px;
    position: relative;
}
.our-journey-section .journey-box::before{
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    background-color: #00a990;
    height: 100%;
    right: 50%;
    transform: translateX(-50%);
}
.journey-box .txt-wrap h4{
    font-weight: 600;
    margin-bottom: 26px;
}
.journey-box .journey-box-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.journey-box .journey-box-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 49.86%;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 3;
}
.journey-box .journey-box-row::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 49.86%;
    transform: translate(-50%, -50%);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #00a990;
    z-index: 2;
}
.journey-box .journey-box-row .box-pic-sec{
    width: 46%;
}
.journey-box .journey-box-row .box-cont-sec{
    width: 50%;
    padding-left: 58px;
}
.journey-box .txt-wrap{
    box-shadow: 4px 4px 54px 5px rgba(30,28,30,0.07);
-webkit-box-shadow: 4px 4px 54px 5px rgba(30,28,30,0.07);
-moz-box-shadow: 4px 4px 54px 5px rgba(30,28,30,0.07);
    padding: 30px 20px 20px 25px;
    position: relative;
}
.journey-box .journey-box-row .txt-wrap::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 16px solid #fff;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.journey-box .journey-pic-sec {
    position: relative;
    padding-top: 375px;
}
.journey-box .journey-pic-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journey-box .txt-wrap p{
    margin-bottom: 20px;
}
.our-journey-wrap .journey-box:nth-child(even) .journey-box-row {
    flex-direction: row-reverse;
}
.our-journey-wrap .journey-box:nth-child(even) .box-cont-sec{
    padding-left: 0;
    padding-right: 58px;
}
.our-journey-wrap .journey-box:nth-child(even) .journey-box-row .txt-wrap::before{
    display: none;
}
.our-journey-wrap .journey-box:nth-child(even) .journey-box-row .txt-wrap::after{
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 16px solid #fff;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    left: auto;
}
.our-journey-wrap .journey-box:last-child{
    padding-bottom: 0;
    margin-bottom: 110px;
}

.home-care-solutions{
    padding-top: 75px;
    background-color: #fbfbfb;
    padding-bottom: 35px;
}
.home-care-solutions .solution-box p{
    margin-bottom: 20px;
}
.home-care-solutions .solution-box p span{
    font-weight: 600;
}
.home-care-solutions .solution-box h4{
    margin-bottom: 18px;
    padding-top: 5px;
}
.home-care-solutions .solution-box span{
    font-size: 18px;
    line-height: 30px;
}
.home-care-solutions .solution-box ul li{
    position: relative;
    padding-left: 25px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.home-care-solutions .solution-box ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    width: 23px;
    left: 0px;
    background-image: url(images/double_check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 12px;
}
.home-care-solutions .solution-box ul li:last-child{
    margin-bottom: 12px;
}
.home-care-solutions .solution-box{
    margin-bottom: 40px;
}
.home-care-solutions .solution-box h2.cmn-title{
    margin-bottom: 25px;
}



/**about-us innerpage css ends**/





/**contact-us innerpage css starts**/


.contactpage-map-sec{
    padding-top: 110px;
    padding-bottom: 90px;
}
.contactpage-map-sec .contactpage-map-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contactpage-map-sec .left_sec{
    width: 510px;
    padding: 25px;
    box-shadow: rgba(30, 28, 30, 0.1) 2px 2px 29px 14px;
}
.contactpage-map-sec .right_sec{
    flex: 1;
}
.contactpage-map-sec .map-sec{
    position: relative;
    height: 520px;
}
.contactpage-map-sec .map-sec iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contactpage-map-sec .getin-touch-sec{
    background-color: #f7f7f7;
    padding: 30px 20px;
}
.contactpage-map-sec .getin-touch-sec p{
    margin-bottom: 10px;
    opacity: 0.7;
}
.contactpage-map-sec .getin-touch-sec h2.cmn-title{
    margin-bottom: 25px;
}
.getin-touch-sec ul li a{
    display: flex;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
    
}
.getin-touch-sec ul.contact-details li a{
    border-bottom: 1px solid #e9ecef;
    position: relative;
    transition: .25s;
}
.getin-touch-sec ul.contact-details li a::before{
    content: '';
    position: absolute;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--theme-color2);
    bottom: 0;
    transition: .25s;
}
.getin-touch-sec ul.contact-details li a:hover::before{
    width: 100%;
}
.getin-touch-sec ul li a .icon{
    width: 60px;
    height: 60px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}
.getin-touch-sec ul li a:hover .txt{
    color: #1c1c1c;
}
.getin-touch-sec ul li a .txt{
    flex: 1;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: #1c1c1c;
}
.getin-touch-sec ul li a .txt span{
    font-size: 18px;
    color: #333;
    line-height: 23px;
    font-family: var(--body-font);
    display: block;
    font-weight: 400;
    padding-top: 4px;
    opacity: 0.7;
}
.getin-touch-sec ul li a .icon.location img{
    width: 55px;
     height: auto;
}
.getin-touch-sec ul li a .icon.email img{
    width: 45px;
    height: auto;
}
.getin-touch-sec ul li a .icon.phn img{
    width: 45px;
    height: auto;
}


.social-media {
    margin-top: 40px;
    margin-bottom: 10px;
}
.social-media ul {
    display: flex;
    align-items: center;
    margin: -8px;
}
.social-media li {
    margin: 8px;
}
.social-media li a {
    width: 46px;
    height: 46px;
    border: 1px solid #00aa91;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
}
.social-media li a:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
}
.social-media li a:hover i{
    filter: invert(1);
}


.frm-col.frm-col-half {
    width: 50%;
}
.frm-row {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
.frm-col {
    width: 100%;
    padding: 8px;
}
.contactform-sec{
    background-color: #f8f8f8;
    position: relative;
}
.contactform-sec-row{
    display: flex;
    flex-wrap: wrap;
}
.contactform-sec .left-pic-sec {
    width: 47%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding-right: 40px;
}
.contactform-sec .left-pic-sec img.shape {
    position: absolute;
    top: 0;
    right: 40px;
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 3;
}
.contactform-sec .left-pic-sec .left-pic{
    position: relative;
    padding-top: 593px;
}
.contactform-sec .left-pic-sec .left-pic img{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contactform-sec .left-pic-sec .circle{
    width: 182px;
    height: 182px;
    border-radius: 50%;
    background-color: rgba(0, 170, 145, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 5;
}
.contactform-sec .left-pic-sec .circle .inner-circle{
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background-color: rgba(0, 170, 145, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contactform-sec .left-pic-sec .circle .inner-circle img {
    width: 55px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
.contactform-sec .left-pic-sec .circle .inner-circle span {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 21px;
}






.contactform-sec .form-sec{
    width: 53%;
    padding-left: 45px;
    padding-top: 40px;
    padding-bottom: 45px;
    margin-left: auto;
}

.submit-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color:var(--body-color);
    color: #fff;
    min-width: 172px;
    padding: 13px 20px;
    font-size: 20px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    border: 0;
}
.submit-btn img {
    margin-left: 10px;
    width: 20px;
}
.submit-btn:hover{
    background-color: var(--theme-color);
    color: #fff;
}





/**our_blog page css starts**/

.blog-listing-sec{
    padding-top: 115px;
    padding-bottom: 75px;
}
.blog_listing-row{
    padding-top: 45px;
    margin-right: -15px;
    margin-left: -15px;
}
.recent-blogs-wrap {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 85px;
}
.blog-box-wrap {
    width: 33.33%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 32px;
}
.blog-box{
    box-shadow: 1px 14px 29px rgba(0,0,0,0.12);
    background-color: #fff;
    height: 100%;
}
.blog-box a.blog-picsec{
    position: relative;
    padding-top: 282px;
    display: block;
    margin-bottom: 20px;
}
.blog-box a.blog-picsec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-descrip {
    padding: 0px 30px 65px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.date{
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.date img.calender{
    width: 17px;
    height: auto;
    margin-right: 12px;
}
.blog-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 34px;
    font-family: var(--heading-font);
    letter-spacing: -0.025rem;
    margin-bottom: 10px;
}
.blog-descrip p {
    opacity: 0.7;
    margin-bottom: 15px;
}
.blog-btn-wrap {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
a.blg-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--heading-font);
    letter-spacing: 0.020rem;
    display: inline-flex;
    align-items: center;
}
a.blg-btn:hover{
    color: var(--theme-color);
}
.blg-btn img {
    margin-left: 12px;
    width: 20px;
}
a.blg-btn:hover img{
    filter: invert(25%) sepia(100%) saturate(1559%) hue-rotate(191deg) brightness(98%) contrast(91%);
}


ul.blg-pagination{
    display: flex;
    align-items: center;
    padding-left: 0;
    justify-content: center;
}
ul.blg-pagination li{
    
}
ul.blg-pagination li a{
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
    color: var(--body-color); 
    font-family: var(--body-font);
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: 1px 14px 29px rgba(0, 0, 0, 0.12);
    transition: all .3sease-in-out;
}
ul.blg-pagination li a img{
    width: 12px;
    transition: all .3sease-in-out;
}
ul.blg-pagination li a.active{
    background-color: var(--theme-color);
    color: #fff;
}
ul.blg-pagination li a:hover{
    background-color: var(--theme-color);
    color: #fff;
}
ul.blg-pagination li a:hover img {
    filter: invert(1);
}


/**career-page css starts**/

.career-page-sec{
    padding-top: 110px;
    padding-bottom: 70px;
    border-bottom: 1px solid #dfdfdf;
}
.career-page-sec .career-page-row{
    display: flex;
    flex-wrap: wrap;
    padding-top: 45px;
}
.career-page-sec .left_sec{
    width: 60%;
    padding-right: 30px;
}
.career-page-sec .right_sec{
    width: 40%;
    padding-left: 10px;
}
.career-page-sec .career-pic-sec{
    position: relative;
    padding-top: 476px;
}
.career-page-sec .career-pic-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.career-page-sec .box h4{
    margin-bottom: 15px;
}
.career-page-sec .box p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 30px;
}


.current-job-opening{
    padding-top: 75px;
    padding-bottom: 70px;
}
.current-job-opening .job-type-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 16px;
}
.current-job-opening .job-type-info .heading{
    font-size: 20px;
    font-weight: 500;
}
.current-job-opening .job-type-info .position{
    width: 53%;
    padding-left: 30px;
    padding-right: 30px;
}
.current-job-opening .job-type-info .type{
    width: 12%;
}
.current-job-opening .job-type-info .location{
    width: 14%;
}
.current-job-opening .job-type-info .button{
    width: 21%;
}

.current-job-opening .accordion-header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    position: relative;
}
.current-job-opening ul.accordion-list li {
    padding: 20px 20px 20px 30px;
    box-shadow: rgba(30, 28, 30, 0.08) 2px 2px 15px 8px;
    background-color: #fff;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
}
.current-job-opening ul.accordion-list li:hover{
    cursor: pointer;
}
.current-job-opening .ac-heading {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--body-color);
    width: 53%;
    padding-right: 20px;
}
.current-job-opening .location-details {
    width: 14%;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    font-family: var(--body-font);
}
.current-job-opening .jobtype{
    width: 12%;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    font-family: var(--body-font);
}
.current-job-opening .button-sec{
    width: 21%;
}
.current-job-opening .answer {
    padding-top: 15px;
}
.current-job-opening .answer p{
    opacity: 0.7;
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}
.ac-cmn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--body-color);
    color: #fff;
    min-width: 155px;
    padding: 14px 14px;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3sease-in-out;
}
.ac-cmn-btn img {
    margin-left: 10px;
    width: 20px;
}
.ac-cmn-btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}
ul.accordion-list li .accordion-header:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 11px;
    transition: all 0.3sease -in-out;
    background-image: url(images/down_arrow.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    height: 18px;
    width: 22px;
}
ul.accordion-list li.active .accordion-header:after {
    transform: rotate(180deg);
}



/**equipments page css starts**/

.equipments-page-sec{
    padding-top: 110px;
}
.equipments-page-sec .cmn-title{
    margin-bottom: 15px;
}
.equipments-page-row {
    
}
.equipments-box p{
    margin-bottom: 30px;
}
.equipments-box-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
.equipment-descrp-box {
    width: 50%;
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 25px;
}
.equipment-descrp-box-row{
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 10px;
    box-shadow: 4px 5px 54px rgba(30, 28, 30, 0.07);
    align-items: center;
}
.equipment-descrp-box-row .equipment-descrp-pic {
    border: 9px solid #f3f3f3;
    width: 40%;
    position: relative;
    padding-top: 280px;
}
.equipment-descrp-box-row .equipment-descrp-pic img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.equipment-descrp-box-row .equipment-descrp-txt{
    width: 60%;
    padding: 5px 16px 5px 18px;
}
.equipment-descrp-txt h5{
    margin-bottom: 12px;
}
.equipment-descrp-txt p{
    color: #797979;
    min-height: 108px;
}
.equipments-box{
    padding-top: 55px;
    padding-bottom: 45px;
    border-bottom: 1px solid #dfdfdf;
}







/**turnket-projects solution css starts**/

.turnkey-solution-sec{
    padding-top: 110px;
    padding-bottom: 75px;
}
.turnkey-solutions-row{
    padding-top: 45px;
}
.turnkey-solutions-row h4{
    margin-bottom: 20px;
}
.turnkey-solutions-row p.top-para{
    font-size: 18px;
    line-height: 28px;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 32px;
}
.turnkey-solutions-row p.top-para span{
    font-weight: 600;
}
.turnkey-solutions-row h6{
    font-weight: 600;
    opacity: 0.7;
}


.where-we-operate-sec {
    position: relative;
    padding-bottom: 60px;
}
.where-we-operate-banner {
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    background-position: center center;
    position: relative;
    z-index: 2;
}
.where-we-operate-banner .overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0c6ec2;
    left: 0;
    z-index: 1;
    opacity: 0.8;
}
.where-we-operate-sec .container {
    margin-top: -225px;
    z-index: 3;
    position: relative;
}
.where-we-operate-sec h2.cmn-title{
    color: #fff;
}
.where-we-operate-sec .cmn-title:after{
    background: #fff;
}

.where-we-operate-row{
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    margin-left: -10px;
    margin-right: -10px;
}
.operate-box{
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
}
.operatebox-wrap{
    background-color: #fff;
    padding: 30px 25px;
    box-shadow: 22px 14px 29px rgba(30, 28, 30, 0.06);
    height: 100%;
}
.operatebox-wrap .circle img {
    width: 47px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: invert(1);
}
.operatebox-wrap .circle {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 2px dashed var(--theme-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 35px;
}
.operatebox-wrap .circle::after{
    content: '';
    position: absolute;
    width: 83px;
    height: 83px;
    background: var(--theme-color2);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}
.operatebox-wrap h4{
    font-weight: 600;
    margin-bottom: 14px;
}
.operatebox-wrap p{
    opacity: 0.7;
}


.why-choose-montera{
    padding-top: 60px;
    padding-bottom: 60px;
}
.why-choose-montera-row {
    position: relative;
    padding-top: 35px;
    display: flex;
    flex-wrap: wrap;
    background-repeat: no-repeat;
    background-position: 100px 20px;
    overflow-x: hidden;
}
.why-choose-montera .solution-box{
    width: 25%;
    padding: 10px 25px;
    text-align: center;
}
.why-choose-montera .solution-box .circle img.efficiency{
    width: 61px;
    height: auto;
}
.why-choose-montera .solution-box .circle {
    width: 162px;
    height: 162px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--theme-color2);
    position: relative;
    margin-bottom: 35px;
    background-color: #fff;
}
.why-choose-montera .solution-box .circle .num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--theme-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 12px;
    right: -20px;
}
.why-choose-montera .solution-box h4{
    font-weight: 600;
    margin-bottom: 16px;
}
.why-choose-montera .solution-box p{
    opacity: 0.7;
    margin-bottom: 12px;
}
.turnkey-solution-sec ul.tab-mnu {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.turnkey-solution-sec ul.tab-mnu li {
    width: 19%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-color: #f7f8f9;
    justify-content: center;
    min-height: 160px;
    transition: .25s;
    position: relative;
}
.turnkey-solution-sec ul.tab-mnu li:hover{
    cursor: pointer;
}
.turnkey-solution-sec ul.tab-mnu li::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 19px 16px 0 16px;
    border-color: #00aa91 transparent transparent transparent;
    opacity: 0;
    transition: .25s;
}
.turnkey-solution-sec ul.tab-mnu li.active::before {
    opacity: 1;
}
.turnkey-solution-sec ul.tab-mnu li.active{
    background-color: var(--theme-color2);
}
.turnkey-solution-sec ul.tab-mnu li figure{
    height: 66px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
.turnkey-solution-sec ul.tab-mnu li figure img{
    height: 100%;
    width: auto;
    transition: .25s;
}
.turnkey-solution-sec ul.tab-mnu li.active figure img{
    filter: brightness(0) invert(1);
}
.turnkey-solution-sec ul.tab-mnu li h5{
    margin-bottom: 0px;
    transition: .25s;
    font-weight: 600;
    text-align: center;
    
}
.turnkey-solution-sec ul.tab-mnu li.active h5{
    color: #fff;
}
.turnkey-solution-sec .tab-cont {
    margin-top: 55px;
}
.turnkey-solution-sec .tab-pane-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text{
    width: 59%;
    padding-right: 50px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text h4{
    margin-bottom: 25px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text p{
    opacity: 0.7;
    margin-bottom: 15px;
}

.turnkey-solution-sec .tab-pane-row .tab-pane-pic{
    width: 41%;
}
.turnkey-solution-sec .tab-pane-row .pic-sec{
    border: 10px solid #fff;
    box-shadow: 11px 14px 29px rgba(30, 28, 30, 0.12);
    position: relative;
    padding-top: 400px;
}
.turnkey-solution-sec .tab-pane-row .pic-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.turnkey-solution-sec .tab-pane-text ul li{
    position: relative;
    padding-left: 36px;
    padding-top: 4px;
    padding-bottom: 4px;
    opacity: 0.7;
}
.turnkey-solution-sec .tab-pane-text ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    width: 23px;
    left: 0px;
    background-image: url(images/double_check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 12px;
}
.turnkey-solution-sec .tab-pane-text ul li:last-child{
    margin-bottom: 12px;
}


.current-job-opening .answer .extra-details{
    display: none;
}




/***homecares page css starts***/


.homecares-sec{
    padding-top: 110px;
    padding-bottom: 80px;
}
.homecares-sec p.top-para{
    line-height: 28px;
    font-size: 18px;
    opacity: 0.7;
    text-align: center;
}
.homecares-sec p.top-para span{
    font-weight: 600;
}
.homecares-row{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}
.homecares-left-sec{
    width: 67%;
    background-color: #f9f9f9;
    padding: 30px 25px;
}
.homecares-right-sec{
    width: 33%;
    padding-left: 30px;
}
.homecares-right-sec .pic-gridsec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.homecares-right-sec .pic-gridsec .pic-box {
    width: 48%;
    position: relative;
    padding-top: 225px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
}
.homecares-right-sec .pic-gridsec .pic-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homecares-left-sec .left-pic-sec{
    position: relative;
    padding-top: 460px;
    border: 10px solid #fff;
    margin-bottom: 32px;
}
.homecares-left-sec .left-pic-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cmn-title-sml:after {
    content: '';
    width: 36px;
    height: 4px;
    background: var(--theme-color3);
    position: absolute;
    bottom: 3px;
    left: 0px;
}
.cmn-title-sml {
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
}
.homecares-sec h4.cmn-title-sml{
    margin-left: 20px;
}
.homecares-left-sec .description-text{
    padding: 30px;
    background-color: #fff;
}
.homecares-left-sec .description-text p{
    opacity: 0.7;
    line-height: 28px;
    margin-bottom: 20px;
}
.homecares-left-sec .description-text p span{
    font-weight: 600;
}
.homecares-left-sec .description-text h6.cmt-title-underline {
    font-weight: 600;
    opacity: 0.8;
    font-family: var(--body-font);
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
    display: inline-block;
    text-transform: uppercase;
}
.title-with-arrowsec {
    padding-left: 20px;
}
.title-with-arrowsec h6.arrow-title {
    position: relative;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 25px;
}
.equipments-box.single {
    padding-top: 0;
}
h6.uppercase-txt {
    opacity: 0.8;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 15px;
}
.homecares-left-sec .description-text ul.underline-list {
    padding-left: 20px;
    margin-bottom: 15px;
}
.homecares-left-sec .description-text ul.underline-list li {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    padding-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.homecares-left-sec .description-text .underline-text p span{
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}
.homecares-left-sec .description-text .underline-text p{
    margin-bottom: 10px;
}
.homecares-sec.diet-nutrition .homecares-left-sec .description-text .underline-text{
    padding-left: 18px;
}
.homecares-sec.diet-nutrition .homecares-left-sec .description-text .underline-text p {
    margin-bottom: 12px;
}
.title-with-arrowsec h6.arrow-title::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -20px;
    background-image: url(images/double-arrow.svg);
    background-repeat: no-repeat;
    background-size: 13px;
    width: 18px;
    height: 18px;
}
.homecares-left-sec .description-text ul{
    padding-left: 15px;
    margin-bottom: 15px;
}
.homecares-left-sec .description-text ul.underline-list li::before {
    display: none;
}
.homecares-left-sec .description-text ul.underline-list li span{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    opacity: 0.7;
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}
.homecares-left-sec .description-text ul li{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    padding-left: 22px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.homecares-left-sec .description-text ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #019983;
    left: 3px;
    top: 11px;
}
.homecares-right-sec .contact-box{
    margin-top: 30px;
    position: relative;
    padding-top: 500px;
}
.homecares-right-sec .contact-box img.bg-pic{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.homecares-right-sec .contact-box .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00aa91;
    opacity: 0.9;
    z-index: 3;
}
.homecares-right-sec .contact-box .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 4;
}
.homecares-right-sec .contact-box .content .icon-box {
    width: 64px;
    height: 64px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
.homecares-right-sec .contact-box .content .icon-box img {
    width: 32px;
    filter: invert(1);
}
.homecares-right-sec .contact-box .content h2 {
    color: #fff;
    margin-bottom: 18px;
}
.homecares-right-sec .contact-box .content p{
    color: #fff;
    line-height: 28px;
    margin-bottom: 20px;
}
.homecares-right-sec .contact-box .content h4 {
    color: #fff;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
    display: inline-block;
}
.homecares-right-sec .contact-box .content a{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    display: block;
}
.cnt-btn-wrap a.cnt-btn {
    width: 210px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.66);
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-transform: uppercase;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    transition: all .3s ease-in-out;
}
.cnt-btn-wrap a.cnt-btn:hover{
    background-color: #fff;
    color: var(--theme-color2) !important;
}
.homecares-left-sec .description-text h5.cmn-title-sml{
    margin-bottom: 15px;
}
.homecares-left-sec .description-text ul.check-list{
    padding-left: 0;
}
.homecares-left-sec .description-text ul.check-list li{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    padding-left: 33px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.homecares-left-sec .description-text ul.check-list li::after {
    content: '';
    position: absolute;
    top: 11px;
    width: 21px;
    left: 0px;
    background-image: url(images/double_check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 12px;
}
.homecares-left-sec .description-text ul.check-list li::before{
    display: none;
}
.homecares-left-sec .description-text h6.services{
    font-size: 18px;
    font-weight: 600;
    font-family: var(--body-font);
    opacity: 0.7;
    margin-bottom: 15px;
}





.personal-nursing-sec{
    padding-top: 110px;
    padding-bottom: 50px;
}
.personal-nursing-sec p.top-para {
    line-height: 28px;
    font-size: 18px;
    opacity: 0.7;
    text-align: center;
}
.personal-nursing-row{
    margin-left: -17px;
    margin-right: -17px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}
.personal-nursing-row .homecare-box{
    width: 33.33%;
    padding-left: 17px;
    padding-right: 17px;
    margin-bottom: 30px;
}
a.homecare-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--heading-font);
    letter-spacing: 0.020rem;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease-in-out;
}
.homecare-btn img {
    margin-left: 12px;
    width: 20px;
    transition: all .3s ease-in-out;
}
.homecare-box .pic-box-sec{
    position: relative;
    padding-top: 445px;
    border: 9px solid #f3f3f3;
}
.homecare-box .pic-box-sec img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homecare-box .text-sec {
    background-color: #fff;
    box-shadow: 4px 4px 29px 14px rgba(30, 28, 30, 0.08);
    -webkit-box-shadow: 4px 4px 29px 14px rgba(30, 28, 30, 0.08);
    -moz-box-shadow: 4px 4px 29px 14px rgba(30, 28, 30, 0.08);
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-top: 75px;
    text-align: center;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 50px;
    margin-top: -105px;
    transition: all .3s ease-in-out;
}
.homecare-box .text-sec:hover{
    background-color: var(--theme-color2);
}
.homecare-box .text-sec .icon-sec {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: var(--theme-color2);
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.homecare-box .text-sec:hover .icon-sec{
    background-color: #fff;
}
.homecare-box .text-sec .icon-sec img{
    max-height: 50px;
    filter: invert(1);
}
.homecare-box .text-sec:hover .icon-sec img{
    filter: invert(48%) sepia(84%) saturate(462%) hue-rotate(122deg) brightness(90%) contrast(101%);
}
.homecare-box .text-sec h4{
    font-weight: 600;
    margin-bottom: 16px;
    transition: all .3s ease-in-out;
}
.homecare-box .text-sec:hover h4{
    color: #fff;
}
.homecare-box .text-sec p{
    opacity: 0.7;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}
.homecare-box .text-sec:hover p{
    color: #fff;
    opacity: 1;
}
.homecare-btn-wrap{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.homecare-box .text-sec:hover a.homecare-btn{
    color: #fff;
}
.homecare-box .text-sec:hover a.homecare-btn img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}



.blog-detailspage-sec {
    padding-top: 110px;
    padding-bottom: 80px;
}
.blog-details-row {
    display: flex;
    flex-wrap: wrap;
}
.blog-details-left-sec {
    width: 67%;
}
.blog-details-right-sec {
    width: 33%;
    padding-left: 30px;
}
ul.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}
ul.blog-breadcrumbs li{
    opacity: 0.7;
}
ul.blog-breadcrumbs li.divider {
    width: 25px;
    display: flex;
    justify-content: center;
}
.blog-details-left-sec .left-side-cont{
    background-color: #f9f9f9;
    padding: 30px 25px;
}
.left-side-cont .left-pic-sec {
    position: relative;
    padding-top: 460px;
    border: 10px solid #fff;
    margin-bottom: 32px;
}
.left-side-cont .left-pic-sec img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-left-sec .description-text p {
    opacity: 0.7;
    line-height: 28px;
    margin-bottom: 20px;
}
.blog-details-left-sec .description-text p span{
    font-weight: 600;
}
.blog-details-left-sec .description-text .cmn-title-sml{
    margin-bottom: 12px;
}
.blog-details-left-sec .description-text .underline-text p {
    margin-bottom: 3px;
}
.blog-details-left-sec .description-text .underline-text p:last-child{
    margin-bottom: 25px;
}
.blog-details-left-sec .description-text .underline-text p span {
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}
.blog-details-left-sec .description-text ul {
    padding-left: 15px;
    margin-bottom: 15px;
}
.blog-details-left-sec .description-text ul li {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    padding-left: 22px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.blog-details-left-sec .description-text ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #019983;
    left: 3px;
    top: 11px;
}
.blog-details-right-sec .popular-post-sec{
    background-color: #f2f2f2;
    padding: 35px 30px 25px 30px;
}
.popular-post-sec .post-box:first-child{
    padding-top: 5px;
}
.popular-post-sec .post-box:last-child{
    border-bottom: 0;
}
.popular-post-sec .popular-posts {
    padding-left: 10px;
}
.popular-post-sec .post-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dashed #999999;
    padding-top: 20px;
    padding-bottom: 20px;
}
.popular-post-sec .post-box .post-pic{
    position: relative;
    padding-top: 75px;
    width: 75px;
}
.popular-post-sec .post-box .post-heading{
    flex: 1;
    padding-left: 18px;
    font-size: 20px;
    line-height: 29px;
    font-family: var(--body-font);
    color: var(--body-color);
}
.popular-post-sec .post-box .post-pic img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-right-sec .search-box-sec{
    background-color: #f2f2f2;
    padding: 17px 16px;
    margin-bottom: 35px;
}
.blog-details-right-sec .search-box-sec .search {
    width: 100%;
    position: relative;
    display: flex;
}
.blog-details-right-sec .search-box-sec .searchTerm {
    width: 100%;
    border: 0px;
    padding: 8px 16px;
    height: 60px;
    border-radius: 0;
    outline: none;
    color: var(--body-color);
    background-color: #fff;
}
.blog-details-right-sec .search-box-sec .searchButton {
    width: 70px;
    height: 60px;
    border: 1px solid #1c1c1c;
    background: #1c1c1c;
    text-align: center;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    font-size: 20px;
}
.blog-detailspage-sec .description-text {
    padding: 30px;
    background-color: #fff;
}
.blog-detailspage-sec h4.cmn-title-sml.left {
    margin-left: 20px;
}




.biomedical-engineer-sec{
    padding-top: 110px;
    padding-bottom: 80px;
}
.biomedical-engineer-row{
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
.biomengineer-left-sec{
    width: 63%;
    
}
.biomengineer-right-sec{
    width: 37%;
    padding-left: 35px;
}

.biomengineer-right-sec .apply-jobform{
box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
-webkit-box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
-moz-box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
background-color: #fff;
    padding: 45px 30px;

}
.biomengineer-right-sec .apply-jobform h4{
    font-weight: 600;
}
.biomengineer-right-sec .apply-jobform label{
    font-size: 18px;
    padding-bottom: 7px;
}
.biomengineer-right-sec .apply-jobform input{
    margin-bottom: 25px;
}
.biomengineer-right-sec .apply-jobform input:focus{
    outline: 0;
}
.biomengineer-right-sec .apply-jobform textarea:focus{
    outline: 0;
}
.biomengineer-right-sec .apply-jobform textarea{
    height: 110px;
    margin-bottom: 25px;
}
.biomengineer-right-sec .apply-jobform .file-upload{
    margin-bottom: 25px;
    border: 1px dashed #dfdfdf;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    position: relative;
}
.biomengineer-right-sec .apply-jobform .file-upload input#resume {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.biomengineer-right-sec .apply-jobform .file-upload p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
.biomengineer-right-sec .apply-jobform .file-upload small{
    font-size: 16px;
    opacity: 0.7;
}
.submit-btn.apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color2);
    color: #fff;
    min-width: 157px;
    padding: 14.5px 16px;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    border: 0;
}
.submit-btn.apply:hover{
    background-color: var(--theme-color);
}
.biomengineer-right-sec .apply-jobform .file-upload p span {
    color: var(--theme-color2);
    font-style: italic;
}
.biomengineer-right-sec .apply-jobform .file-upload img.upload-icon{
    width: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
.biomengineer-left-sec p{
    margin-bottom: 30px;
    opacity: 0.7;
}
.biomengineer-left-sec h4{
    font-weight: 600;
    margin-bottom: 15px;
    
}
.biomengineer-left-sec p span{
    font-weight: 700;
}
.biomengineer-left-sec p.top-para{
    margin-bottom: 5px;
}
.biomengineer-left-sec ul.check-list li {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    position: relative;
    padding-left: 33px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.biomengineer-left-sec ul.check-list li::after {
    content: '';
    position: absolute;
    top: 11px;
    width: 21px;
    left: 0px;
    background-image: url(images/double_check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 12px;
}
.biomengineer-left-sec .about-job-sec{
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
-webkit-box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
-moz-box-shadow: 3px 3px 39px 1px rgba(30,28,30,0.14);
background-color: #fff;
    margin-bottom: 45px;
}
.biomengineer-left-sec .about-job-sec .job-box{
    width: 33.33%;
    padding-left: 30px;
    position: relative;
    padding-right: 10px;
}
.biomengineer-left-sec .about-job-sec .job-box::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2px;
    background-color: #a9b9cb;
    right: -1px;
    height: 85px;
}
.biomengineer-left-sec .about-job-sec .job-box:last-child::before{
    display: none;
}

.biomengineer-left-sec .about-job-sec .job-box .icon img{
    width: auto;
    height: 32px;
    margin-bottom: 14px;
}
.biomengineer-left-sec .about-job-sec .job-box .heading{
    font-size: 24px;
    font-weight: 600;
}
.biomengineer-left-sec .about-job-sec .job-box .heading span{
    font-size: 16px;
    font-weight: 600;
    color: #333;
    opacity: 0.7;
    display: block;
}

.hm-ban-rt-col.cont-xp-img {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.title-xp-1 {
    padding: 5px 25px;
    display: inline-flex;
    position: relative;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.title-xp-1:before {
    content: '';
    background: #05ae98;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skewX(-30deg);
}

.title-xp-2 {
    color: #05ae98;
    position: relative;
    z-index: 1;
    display: inline-flex;
    font-style: italic;
    padding: 45px 65px 0px 5px;
    margin-top: -50px;
    font-size: 25px;
    margin-left: 10px;
}

.title-xp-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: skewX(-30deg);
}

.title-xp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.title-xp-2 strong {
    margin-right: 5px;
}

.xp-list li {
    color: #fff;
    padding-left: 30px;
    font-size: 22px;
    font-weight: 600;
    background-image: url('images/icon-list-wh.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: top 9px left;
}

.xp-list li + li {
    margin-top: 10px;
}

.cont-xp {
    margin-top: 30px;
}

.cont-xp {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cont-xp strong {
    font-size: 22px;
    background: #05ae98;
    padding: 10px;
    border-radius: 30px;
    font-weight: 500;
    color: #fff;
    padding: 5px 15px;
    margin-right: 10px;
}

.cont-xp span {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

.cont-xp-link {
    color: #05ae98;
    border-bottom: 2px solid #05ae98;
}

.cont-xp-link:hover {
    color: #fff;
    border-color: #fff;
}


/* ========== responsive css =========== */



@media (max-width: 1680px) {
.contactpage-map-sec {
    padding-top: 85px;
    padding-bottom: 70px;
}
.blog-detailspage-sec {
    padding-top: 70px;
    padding-bottom: 60px;
}
.biomedical-engineer-sec {
    padding-top: 70px;
    padding-bottom: 65px;
}
.blog-details-right-sec {
    width: 35%;
    padding-left: 25px;
}
.biomedical-engineer-row {
    padding-top: 30px;
}
.blog-details-left-sec {
    width: 65%;
}
.blog-details-left-sec .description-text p {
    line-height: 26px;
    font-size: 17px
}
.why-choose-montera-row {
    background-position: 100px 0px;
}
.personal-nursing-sec {
    padding-top: 70px;
    padding-bottom: 40px;
}
.homecare-box .text-sec h4 {
    font-size: 22px;
}
.homecare-box .text-sec p {
    font-size: 16px;
}
.homecare-box .pic-box-sec {
    padding-top: 420px;
}
.homecare-box .text-sec .icon-sec img {
    max-height: 45px;
}
.homecare-box .text-sec .icon-sec {
    width: 95px;
    height: 95px;
    top: -50px;
}
.homecare-box .text-sec {
    padding-top: 60px;
}







.career-page-sec {
    padding-top: 70px;
    padding-bottom: 40px;
}
.career-page-sec .career-page-row {
    padding-top: 25px;
}
.current-job-opening {
    padding-top: 55px;
    padding-bottom: 55px;
}
.current-job-opening .job-type-info {
    padding-top: 25px;
}
.contactform-sec .form-sec {
    width: 50%;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.contactform-sec .left-pic-sec {
    width: 50%;
}
.homecares-sec {
    padding-top: 70px;
    padding-bottom: 60px;
}
.homecares-row {
    padding-top: 10px;
}
.homecares-left-sec {
    width: 65%;
}
.homecares-right-sec {
    width: 35%;
    padding-left: 25px;
}
.homecares-right-sec .contact-box .content h2 {
    font-size: 35px;
}
.homecares-right-sec .contact-box .content a {
    font-size: 32px;
}
.homecares-right-sec .contact-box .content p {
    line-height: 26px;
    font-size: 17px;
}
.homecares-right-sec .contact-box .content h4 {
    font-size: 23px;
}
.homecares-left-sec .left-pic-sec {
    margin-bottom: 30px;
}
.homecares-left-sec .description-text p {
    line-height: 26px;
    font-size: 17px;
}
.homecares-left-sec .description-text ul li {
    font-size: 17px;
}







.date {
    font-size: 15px;
    margin-bottom: 10px;
}
.date img.calender {
    margin-right: 8px;
}
.turnkey-solution-sec {
    padding-top: 70px;
    padding-bottom: 60px;
}
.turnkey-solutions-row {
    padding-top: 30px;
}
.why-choose-montera {
    padding-top: 40px;
    padding-bottom: 40px;
}
.why-choose-montera-row {
    padding-top: 25px;
}
.why-choose-montera .solution-box .circle {
    width: 152px;
    height: 152px;
    margin-bottom: 30px;
}
.why-choose-montera .solution-box .circle .num {
    width: 50px;
    height: 50px;
    top: 8px;
    right: -20px;
}
.blog-listing-sec {
    padding-top: 75px;
    padding-bottom: 65px;
}
.recent-blogs-wrap {
    padding-bottom: 40px;
}
.blog_listing-row {
    padding-top: 20px;
}
.blog-title {
    font-size: 23px;
    line-height: 31px;
    min-height: 62px;
}
.equipments-page-sec {
    padding-top: 75px;
}
.equipments-page-sec p.top-para {
    margin-bottom: 15px;
}
.equipments-box {
    padding-top: 45px;
    padding-bottom: 30px;
}
.equipment-descrp-txt p {
    color: #797979;
    min-height: 108px;
    font-size: 17px;
}
.equipment-descrp-txt h5 {
    margin-bottom: 13px;
}




.cmn-title{
    font-size: 37px;    
}
.home-care-sec h2{
    font-size: 37px;     
}
.getin-touch-sec ul li a {
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.getin-touch-sec ul li a .icon.location img {
    width: 50px;
}
.getin-touch-sec ul li a .txt span {
    font-size: 17px;
}
.getin-touch-sec ul li a .txt {
    font-size: 20px;
}
.getin-touch-sec ul li a .icon.email img {
    width: 40px;
}
.getin-touch-sec ul li a .icon.phn img {
    width: 40px;
}
.social-media {
    margin-top: 30px;
    margin-bottom: 5px;
}
input[type="text"], input[type="tel"], input[type="password"], input[type="email"], input[type="number"] {
    height: 48px;
    font-size: 16px;
}
textarea {
    height: 120px;
    font-size: 16px;
}
.submit-btn {
    font-size: 19px;
}
.contactform-sec .left-pic-sec .left-pic {
    padding-top: 554px;
}
.home-ban-slider .item {
    padding: 60px 60px 80px 15px;
    min-height: auto;
}
.hm-ban-lt-col-head {
    width: auto;
}
.home-banner-wrapper {
    padding: 0px;
    overflow: hidden;
}
.sld-pagination-bar {
    background: #fff;
    padding: 10px 25px;
    top: 0;
    right: 0px;
    height: 100%;
    transform: none;
    display: flex;
    justify-content: center;
}
.feature-infos-col .ftr-info-text p {
    font-size: 20px;
}
.innerpage-banner-wrapper .ban-text-area h2 {
    font-size: 45px;
    margin-bottom: 14px;
}    
.innerpage-banner-wrapper .innerpage-banner {
    height: 380px;
}
.aboutus-overview {
    padding-top: 70px;
}
.our-journey-section {
    padding-top: 60px;
}
.our-journey-wrap {
    padding-top: 40px;
}
.our-journey-section .journey-box {
    padding-bottom: 90px;
}
.our-journey-wrap .journey-box:last-child {
    margin-bottom: 90px;
}
.home-care-solutions {
    padding-top: 60px;
    padding-bottom: 30px;
}
.home-care-solutions .solution-box h2.cmn-title {
    margin-bottom: 20px;
}
.home-care-solutions .solution-box ul li {
    padding-left: 28px;
}
.homecares-left-sec .description-text ul.check-list li {
    font-size: 17px;
}
.homecares-left-sec .description-text ul.underline-list li {
    font-size: 17px;
}
.homecares-left-sec .description-text ul.underline-list li span{
    font-size: 17px;
}


    
    
    

}

@media (max-width: 1441px){
.contactform-sec .form-sec {
    width: 46%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contactform-sec .left-pic-sec {
    width: 54%;
}
.contactpage-map-sec {
    padding-top: 65px;
    padding-bottom: 60px;
}
.contactform-sec .left-pic-sec .left-pic {
    padding-top: 534px;
}    
.contactform-sec .left-pic-sec .circle .inner-circle img {
    width: 45px;
}    
.contactform-sec .left-pic-sec .circle .inner-circle span {
    font-size: 16px;
    line-height: 20px;
}
.contactform-sec .left-pic-sec .circle .inner-circle {
    width: 145px;
    height: 145px;
}
.contactform-sec .left-pic-sec .circle {
    width: 169px;
    height: 169px;
}

.home-ban-slider .item.new {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cont-xp span {
    font-size: 28px;
}

.cont-xp strong {
    font-size: 18px;
}
    

}

@media (max-width: 1400px) {
.journey-box .journey-pic-sec {
    padding-top: 360px;
}
    .personal-nursing-sec {
        padding-top: 50px;
        padding-bottom: 30px;
    }
.personal-nursing-sec p.top-para {
    line-height: 26px;
    font-size: 17px;
}
.personal-nursing-row {
    padding-top: 10px;
}
.homecare-box .pic-box-sec {
    padding-top: 390px;
}
.blog-detailspage-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
.left-side-cont .left-pic-sec {
    padding-top: 430px;
}
.blog-details-left-sec .left-side-cont {
    padding: 25px 20px;
}
.why-choose-montera-row {
        background-position: 80px 0px;
    }
    .equipments-page-sec {
        padding-top: 65px;
    }
.operatebox-wrap {
    padding: 30px 20px;
}
.operatebox-wrap .circle img {
    width: 44px;
}
.operatebox-wrap .circle {
    margin-bottom: 22px;
}
.operatebox-wrap h4 {
    font-size: 21px;
}
.operatebox-wrap p {
    font-size: 16px;
    line-height: 22px;
}
.where-we-operate-sec {
    padding-bottom: 40px;
}
.why-choose-montera .solution-box h4 {
    margin-bottom: 15px;
    font-size: 22px;
}
.why-choose-montera .solution-box p {
    font-size: 16px;
}
.why-choose-montera .solution-box .circle {
    width: 142px;
    height: 142px;
    margin-bottom: 20px;
}
.turnkey-solution-sec ul.tab-mnu {
    gap: 15px;
}
.turnkey-solution-sec ul.tab-mnu li h5 {
    font-size: 18px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text p {
    font-size: 17px;
}
.turnkey-solution-sec .tab-pane-text ul li {
    font-size: 17px;
}
.turnkey-solution-sec .tab-pane-text ul li::before {
    top: 12px;
}
.turnkey-solutions-row p.top-para {
    font-size: 17px;
    line-height: 27px;
}
.biomedical-engineer-sec {
        padding-top: 50px;
        padding-bottom: 55px;
    }
.biomengineer-right-sec .apply-jobform h4 {
    font-size: 23px;
}
.biomengineer-left-sec .about-job-sec .job-box .heading {
    font-size: 22px;
}
.biomengineer-left-sec .about-job-sec {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.biomengineer-left-sec .about-job-sec .job-box .icon img {
    margin-bottom: 12px;
}
.biomedical-engineer-row {
    padding-top: 20px;
}
.biomengineer-left-sec h4 {
    font-size: 23px;
}
.biomengineer-left-sec p {
    font-size: 17px;
    line-height: 26px;
}
.biomengineer-left-sec ul.check-list li {
    font-size: 17px;
}






.journey-box .txt-wrap h4 {
    margin-bottom: 20px;
}
.hm-ban-lt-col h1 {
    font-size: 40px;
}
.hm-ban-lt-col h1 span{
    font-size: 52px;    
}
.cmn-gap{
    padding: 70px 0px;    
}
h2.cmn-title {
    font-size: 35px;
    padding-bottom: 12px;
    margin-bottom: 25px;
}
.about-infos-right-col span {
    font-size: 19px;
    margin-bottom: 18px;
}
.about-infos-right-col p {
    line-height: 1.6;
    font-size: 17px;
}
.feature-infos-strip {
    min-height: 160px;
    padding: 30px 60px;
}
.feature-infos-strip h2 {
    font-size: 75px;
}
.feature-infos-strip h3 {
    font-size: 27px;
}
.home-care-sec h2 {
    font-size: 35px;
}
.cmn-btn {
    font-size: 18px;
}
.home-care-sec p {
    font-size: 22px;
}
.footer-top {
    padding: 70px 0px 35px;
}
.feature-infos-col .ftr-info-text h4 {
    font-size: 45px;
}
.feature-infos-col figure:after {
    width: 76px;
    height: 76px;
}
.feature-infos-col figure img {
    width: 40px;
}
.feature-infos-col figure {
    width: 94px;
    height: 94px;
}
.about-infos-left-col {
    padding-right: 50px;
}
.about-infos-left-col figure {
    padding-right: 40px;
}

.site-logo {
    flex-shrink: 0;
    max-width: 140px;
} 
.navbar-wrap li a {
    font-size: 16px;
}
.navbar-wrap li {
    margin: 0px 12px;
}
.hdr-top-left-col li a {
    font-size: 14px;
}
input[type="text"], input[type="tel"], input[type="password"], input[type="email"], input[type="number"] {
    height: 45px;
} 
textarea {
    height: 105px;
} 
.contactpage-map-sec .map-sec {
    height: 450px;
}


.contactform-sec .left-pic-sec .left-pic {
        padding-top: 499px;
    }
.getin-touch-sec ul li a .txt span {
    font-size: 16px;
    line-height: 21px;
}
.getin-touch-sec ul li a .txt {
    font-size: 19px;
}
.getin-touch-sec ul li a {
    padding-top: 12px;
    padding-bottom: 12px;
}
    .contactpage-map-sec .getin-touch-sec {
    padding: 20px 20px;
}
    .contactpage-map-sec .getin-touch-sec p{
        font-size: 17px;
    }    
    .hdr-btn-call a {
        font-size: 14px;
        min-width: auto;
    }
    
    .btn-call-text .title-text {
        font-size: 12px;
    }
    
    .hdr-btn-call {
        margin-left: 20px;
    }
    
    .has-dropdown i {
        top: 8px;
    }
    
    .hm-ban-lt-col h1 span {
        text-decoration: underline;
    }
    
    .hm-ban-lt-col h1 span:after {
        display: none;
    }
    .innerpage-banner-wrapper .ban-text-area h2 {
        font-size: 40px;
        margin-bottom: 13px;
    }
    .innerpage-banner-wrapper ul.breadcrumbs li.divider img {
    height: 14px;
    margin-right: 10px;
    margin-left: 10px;
}
.blog-descrip {
    padding: 0px 25px 65px 25px;
}
.blog-btn-wrap {
    left: 25px;
}
.blog-title {
    font-size: 21px;
    line-height: 29px;
}
.blog-descrip p {
    font-size: 17px;
    line-height: 25px;
}
    .blog-listing-sec {
        padding-top: 65px;
        padding-bottom: 60px;
    }
.blog-box a.blog-picsec {
    padding-top: 240px;
    margin-bottom: 18px;
}
    .recent-blogs-wrap {
        padding-bottom: 25px;
    }
    .career-page-sec {
        padding-top: 50px;
        padding-bottom: 30px;
    }
.career-page-sec .box h4 {
    margin-bottom: 12px;
    font-size: 22px;
}
.career-page-sec .box p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 22px;
}
.career-page-sec .right_sec {
    padding-left: 20px;
}
.current-job-opening .ac-heading {
    font-size: 22px;
}
.ac-cmn-btn {
    min-width: 145px;
    padding: 12px 10px;
    font-size: 15px;
}
.current-job-opening .answer p {
    font-size: 17px;
}
.current-job-opening {
    padding-top: 50px;
    padding-bottom: 45px;
}
.homecares-sec {
    padding-top: 50px;
    padding-bottom: 50px;
}
.homecares-sec p.top-para {
    line-height: 26px;
    font-size: 17px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.homecares-left-sec {
    padding: 25px 20px;
}
.homecares-left-sec .left-pic-sec {
    padding-top: 430px;
}
.homecares-right-sec .pic-gridsec .pic-box {
    padding-top: 210px;
}
.homecares-left-sec .description-text ul {
    padding-left: 10px;
}

.personal-nursing-row {
    margin-left: 0px;
    margin-right: 0px;
} 
.homecares-right-sec .contact-box {
    margin-top: 20px;
}

    
    
    


}


@media (max-width: 1365px){
.innerpage-banner-wrapper .innerpage-banner {
    height: 320px;
} 
.homecares-left-sec .description-text ul.underline-list li {
    font-size: 16px;
}
.homecares-left-sec .description-text ul.underline-list li span{
    font-size: 16px;
}
.left-side-cont .left-pic-sec {
        padding-top: 380px;
    }
.popular-post-sec .post-box .post-heading {
    font-size: 18px;
}
ul.blog-breadcrumbs li {
    font-size: 17px;
}
.blog-detailspage-sec h4.cmn-title-sml.left {
    margin-left: 16px;
    font-size: 23px;
}
.blog-details-left-sec .description-text .cmn-title-sml {
    font-size: 19px;
}
    .blog-details-right-sec .popular-post-sec h3{
        font-size: 26px;
    }
.blog-details-right-sec .search-box-sec .searchTerm {
    height: 52px;
}
.blog-details-right-sec .search-box-sec .searchButton {
    width: 65px;
    height: 52px;
}



.personal-nursing-sec {
        padding-top: 40px;
    }
.homecare-box .text-sec p {
    font-size: 15px;
    min-height: 90px;
}
.homecare-box .text-sec .icon-sec {
    width: 85px;
    height: 85px;
}
.homecare-box .text-sec h4 {
    font-size: 21px;
    margin-bottom: 15px;
}
.homecare-box .text-sec .icon-sec img {
    max-height: 40px;
}
.homecare-btn-wrap {
    bottom: 18px;
}
.homecare-box .pic-box-sec {
        padding-top: 340px;
    }

.homecare-box .text-sec {
        padding-top: 50px;
        padding-bottom: 42px;
    }
.homecares-left-sec .description-text ul.check-list li {
    font-size: 16px;
}
.why-choose-montera-row {
    background-size: 1040px;
}
.homecares-left-sec .left-pic-sec {
    padding-top: 380px;
}
.homecares-right-sec .pic-gridsec .pic-box {
    padding-top: 180px;
}
.homecares-sec h4.cmn-title-sml {
    margin-left: 16px;
    font-size: 23px;
    margin-bottom: 25px;
}
.homecares-left-sec .description-text {
    padding: 25px;
}
.homecares-left-sec .description-text p {
    line-height: 24px;
    font-size: 16px;
}
.homecares-left-sec .description-text h6.cmt-title-underline {
    font-size: 17px;
}
.homecares-left-sec .description-text ul li {
    font-size: 16px;
}
.homecares-right-sec .contact-box .content h2 {
    font-size: 31px;
}
.homecares-right-sec .contact-box .content p {
    line-height: 25px;
    font-size: 16px;
}
.homecares-right-sec .contact-box .content h4 {
    font-size: 21px;
}
.homecares-right-sec .contact-box .content a {
    font-size: 30px;
}
.cnt-btn-wrap a.cnt-btn {
    width: 190px;
    height: 48px;
    font-size: 17px !important;
    margin-top: 20px;
}
.homecares-right-sec .contact-box .content .icon-box img {
    width: 28px;
}
.homecares-right-sec .contact-box .content .icon-box {
    width: 60px;
    height: 60px;
}
.homecares-right-sec .contact-box {
    padding-top: 460px;
}









h4.sml-cmn-title{
    font-size: 22px;    
}
.equipment-descrp-txt p {
    font-size: 16px !important;
    line-height: 23px;
}
.sml-cmn-btn {
    padding: 11px 12px 12px 12px;
    font-size: 15px;
}
.turnkey-solution-sec ul.tab-mnu li {
    width: 18.9%;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text h4 {
    margin-bottom: 22px;
}
.where-we-operate-sec .container {
    margin-top: -235px;
}
.turnkey-solutions-row h4 {
    font-size: 22px;
}
.turnkey-solution-sec .tab-pane-row .pic-sec {
    padding-top: 320px;
}
.operatebox-wrap .circle {
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
}
.operatebox-wrap .circle::after {
    width: 80px;
    height: 80px;
}
.operatebox-wrap h4 {
    font-size: 20px;
}
.why-choose-montera .solution-box h4 {
    font-size: 20px;
}
.why-choose-montera .solution-box .circle {
    width: 132px;
    height: 132px;
}
.why-choose-montera .solution-box .circle .num {
        width: 40px;
        height: 40px;
        right: -17px;
        font-size: 16px;
    }
    .why-choose-montera-row {
        padding-top: 20px;
    }
.turnkey-solution-sec {
        padding-top: 60px;
        padding-bottom: 50px;
    }
.turnkey-solution-sec .tab-cont {
    margin-top: 45px;
}


.equipment-descrp-box-row .equipment-descrp-pic {
    padding-top: 250px;
}
.equipments-page-sec p{
    font-size: 17px;    
}
.contactform-sec .form-sec {
    width: 44%;
}
.contactform-sec .left-pic-sec {
    width: 56%;
}
.submit-btn {
    font-size: 18px;
}
.contactform-sec .left-pic-sec .left-pic {
    padding-top: 492.5px;
}
.blog-descrip {
        padding: 0px 20px 60px 20px;
    }
.blog-btn-wrap {
    left: 20px;
    bottom: 25px;
}
.blog-descrip p {
        font-size: 16px;
        line-height: 24px;
        min-height: 96px;
    }

.innerpage-banner-wrapper .ban-text-area h2 {
    font-size: 40px;
}
.innerpage-banner-wrapper ul.breadcrumbs li {
    font-size: 18px;
}
.home-care-sec h2 {
    font-size: 30px;
}
.home-care-icon {
    width: 70px;
    margin-bottom: 20px;
}
.home-care-sec.cmn-gap {
    padding: 40px 0px;
}
.cmn-gap {
    padding: 55px 0px;
}
h2.cmn-title {
    font-size: 30px;
}
.rvw-btn-wrap {
    margin-top: 20px;
}
.ft-title {
    font-size: 22px;
}
.ft-top-col p{
    font-size: 16px;
}
.ft-nrm-links li a {
    font-size: 17px;
}
.ft-top-info li {
    font-size: 17px;
}
.feature-infos-sec.cmn-gap{
    padding-bottom: 40px;    
}
.feature-infos-row {
    padding: 80px 30px 20px 30px;
}
.feature-infos-col .ftr-info-text p {
    font-size: 18px;
}
.feature-infos-strip {
    max-width: 370px;
}
.home-ban-slider .item {
    padding: 45px 60px 50px 15px;
}
.aboutus-overview {
    padding-top: 50px;
}
.aboutus-overview p {
    font-size: 17px;
    line-height: 26px;
}
.our-journey-wrap {
    padding-top: 20px;
}
.our-journey-section {
    padding-top: 50px;
}
.journey-box .txt-wrap p {
    font-size: 16px;
    margin-bottom: 16px;
}
.journey-box .txt-wrap h4 {
    margin-bottom: 17px;
    font-size: 23px;
}
.our-journey-section .journey-box {
    padding-bottom: 60px;
}
.journey-box .journey-pic-sec {
    padding-top: 310px;
}
.home-care-solutions {
    padding-top: 50px;
    padding-bottom: 20px;
}
.home-care-solutions .solution-box p {
    font-size: 16px;
}
.home-care-solutions .solution-box span {
    font-size: 17px;
}
.home-care-solutions .solution-box ul li {
    padding-left: 30px;
    font-size: 16px;
}
.home-care-solutions .solution-box {
    margin-bottom: 30px;
}
.journey-box .journey-box-row .box-cont-sec {
    padding-left: 47px;
}
.our-journey-wrap .journey-box:nth-child(even) .box-cont-sec {
    padding-right: 47px;
}
.our-journey-wrap .journey-box:last-child {
    margin-bottom: 60px;
}
.contactform-sec .left-pic-sec img.shape {
    right: 30px;
}
.career-page-sec {
    padding-top: 40px;
    padding-bottom: 25px;
}
.career-page-sec .box p {
    font-size: 16px;
    line-height: 24px;
}
.career-page-sec .career-page-row {
    padding-top: 20px;
}
.current-job-opening .job-type-info .heading {
    font-size: 18px;
}
.current-job-opening .job-type-info .position {
    padding-left: 25px;
}
.current-job-opening ul.accordion-list li {
    padding: 16px 20px 16px 25px;
}
ul.accordion-list li .accordion-header:after {
    right: 5px;
    top: 10px;
}
.current-job-opening .location-details {
    font-size: 17px;
}
.current-job-opening .jobtype {
    font-size: 17px;
}
.current-job-opening {
    padding-top: 40px;
    padding-bottom: 35px;
}
.blog-details-right-sec .search-box-sec {
    margin-bottom: 28px;
}



.blog-detailspage-sec .description-text {
    padding: 25px;
}
.blog-details-left-sec .description-text ul li {
    font-size: 17px;
}
.homecares-left-sec .description-text ul.check-list li::after {
    top: 9px;
}








    
    


    
    
    
}


@media(max-width:1199px){
.home-care-solutions {
    padding-top: 40px;
    padding-bottom: 15px;
}
.biomedical-engineer-row {
        padding-top: 15px;
    }
.biomengineer-left-sec {
    width: 61%;
}
.biomengineer-right-sec {
    width: 39%;
}
.biomengineer-left-sec p {
    font-size: 16px;
    line-height: 25px;
}
.biomengineer-left-sec ul.check-list li {
        font-size: 16px;
    }
.biomedical-engineer-sec {
    padding-top: 40px;
    padding-bottom: 45px;
}
.blog-detailspage-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
.blog-details-right-sec .popular-post-sec {
    padding: 30px 20px 25px 20px;
}
    .popular-post-sec .post-box .post-heading {
        font-size: 16px;
        line-height: 23px;
    }
    .blog-details-left-sec .description-text p {
        line-height: 25px;
        font-size: 16px;
    }

.personal-nursing-row {
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 0;
}
.homecare-box .pic-box-sec {
    padding-top: 300px;
}
.homecare-box .text-sec p {
        font-size: 14px;
        min-height: 85px;
    }
.personal-nursing-row .homecare-box {
    padding-left: 13px;
    padding-right: 13px;
    margin-bottom: 25px;
}
.personal-nursing-sec p.top-para {
        line-height: 25px;
        font-size: 16px;
    }
.why-choose-montera-row {
    background-size: 870px;
}
.career-page-sec .box p {
    font-size: 16px;
    line-height: 23px;
}
.career-page-sec .box h4 {
    margin-bottom: 11px;
    font-size: 20px;
}
.career-page-sec .career-page-row {
    padding-top: 15px;
}
.current-job-opening .job-type-info {
    padding-top: 20px;
}
.homecares-sec {
    padding-top: 40px;
    padding-bottom: 40px;
}
.homecares-sec p.top-para {
    line-height: 25px;
    font-size: 16px;
}
.homecares-row {
    padding-top: 0px;
}
.homecares-left-sec {
    width: 62%;
}
.homecares-right-sec {
    width: 38%;
    padding-left: 22px;
}
.homecares-left-sec .left-pic-sec {
    padding-top: 320px;
}  
    
    
.current-job-opening .ac-heading {
    font-size: 20px;
    width: 48%;
}
.current-job-opening .job-type-info .position {
    width: 48%;
}
.current-job-opening .job-type-info .location {
    width: 16.5%;
}
.current-job-opening .job-type-info .type {
    width: 14.5%;
}
.current-job-opening .location-details{
    width: 16.5%;    
}    
.current-job-opening .jobtype{
   width: 14.5%;     
}
ul.accordion-list li .accordion-header:after {
    right: 0px;
}
.why-choose-montera .solution-box {
    padding: 10px 15px;
}
.why-choose-montera .solution-box p {
        line-height: 21px;
    }
.why-choose-montera {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .why-choose-montera-row {
        padding-top: 15px;
    }
.operatebox-wrap {
        padding: 20px 15px;
    }
    .operatebox-wrap .circle img {
        width: 40px;
    }
.operatebox-wrap .circle {
        width: 88px;
        height: 88px;
        margin-bottom: 16px;
    }
.operatebox-wrap .circle::after {
        width: 77px;
        height: 78px;
    }
.operatebox-wrap h4 {
        font-size: 19px;
    margin-bottom: 12px;
    }
    .operatebox-wrap p {
        font-size: 15px;
        line-height: 21px;
    }
.turnkey-solution-sec .tab-pane-row .tab-pane-text p {
        font-size: 16px;
    }
    .turnkey-solution-sec {
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .turnkey-solution-sec .tab-pane-text ul li {
        font-size: 16px;
        padding-top: 3px;
        padding-bottom: 3px;
    }


    
    
    
.equipments-page-sec {
        padding-top: 50px;
    }
.equipments-box {
        padding-top: 35px;
        padding-bottom: 15px;
    }
.equipment-descrp-box-row .equipment-descrp-txt {
    padding: 5px 6px 5px 18px;
}
.equipment-descrp-box-row .equipment-descrp-pic {
        padding-top: 220px;
    }
    .equipment-descrp-txt p {
        font-size: 15px !important;
        line-height: 21px;
    }
    .equipments-page-sec p {
        font-size: 16px;
        margin-bottom: 25px;
    }
.turnkey-solutions-row p.top-para {
        font-size: 16px;
        line-height: 24px;
    margin-bottom: 25px;
    }
.turnkey-solutions-row h6 {
    margin-bottom: 25px;
}
    .turnkey-solution-sec ul.tab-mnu li {
        width: 18.7%;
    }
    .turnkey-solution-sec ul.tab-mnu li h5 {
        font-size: 16px;
    }
.turnkey-solution-sec ul.tab-mnu li::before {
    bottom: -16px;
    border-width: 16px 15px 0 15px;
}
    .turnkey-solutions-row {
        padding-top: 15px;
    }



.blog-listing-sec {
    padding-top: 40px;
    padding-bottom: 50px;
}
ul.blg-pagination li a {
    width: 50px;
    height: 47px;
    font-size: 16px;
}
.recent-blogs-wrap {
    padding-bottom: 15px;
}
.blog_listing-row {
    padding-top: 8px;
}
.blog-box a.blog-picsec {
    padding-top: 200px;
    margin-bottom: 16px;
}
.blog-descrip {
    padding: 0px 18px 55px 18px;
}
.blog-title {
    font-size: 19px;
    line-height: 28px;
    min-height: 55px;
}
.blog-box-wrap {
    margin-bottom: 26px;
}



.contactpage-map-sec .left_sec {
    width: 420px;
    padding: 20px;
}
.contactpage-map-sec .getin-touch-sec p {
    font-size: 16px;
}
.getin-touch-sec ul li a .txt span {
    font-size: 14px;
    line-height: 20px;
}
.getin-touch-sec ul li a .txt {
    font-size: 18px;
}
    .getin-touch-sec ul li a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .contactpage-map-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
input[type="text"], input[type="tel"], input[type="password"], input[type="email"], input[type="number"] {
        height: 40px;
        font-size: 14px;
    }
    .contactform-sec .form-sec{
        padding-left: 30px;
    }
    .contactform-sec .left-pic-sec .left-pic {
        padding-top: 458px;
    }
        textarea {
        height: 90px;
        font-size: 14px;
    }
    .contactform-sec .left-pic-sec .circle {
        width: 160px;
        height: 160px;
    }
    .submit-btn {
        font-size: 16px;
        min-width: 160px;
    }
    .contactform-sec .left-pic-sec .circle .inner-circle {
        width: 135px;
        height: 135px;
    }


.home-care-solutions .solution-box h2.cmn-title {
    margin-bottom: 16px;
}
.home-care-sec h2 {
    font-size: 28px;
}
h2.cmn-title{
   font-size: 28px     
}
.hm-ban-lt-col h1 {
    font-size: 33px;
}
.about-infos-right-col span {
    font-size: 17px;
    line-height: 25px;
}
.about-infos-right-col p {
    line-height: 1.5;
    font-size: 16px;
}
.feature-infos-strip h3 {
    font-size: 25px;
}
.feature-infos-strip h2 {
    font-size: 65px;
}
.hm-ban-lt-col h1 span {
    font-size: 40px;
}
.hm-ban-lt-col p {
    font-size: 18px;
}
.hm-ban-item-col {
    font-size: 16px;
}
.cmn-btn {
    font-size: 16px;
}
.key-infos-row {
    padding: 10px;
} 
.key-infos-item span {
    font-size: 14px;
    line-height: 1.5;
    display: block;
}
.key-infos-item p {
    font-size: 12px;
}  
.about-infos-left-col {
    width: 50%;
}  
.about-infos-right-col {
    width: 50%;
    padding-right: 15px;
}
.feature-infos-strip {
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
    padding: 30px 15px;
    min-height: auto;
}
.feature-infos-row {
    margin-top: 0;
    margin-bottom: 0px;
}
.feature-infos-row {
    padding: 30px 30px 30px 30px;
}
.cmn-gap {
    padding: 45px 0px;
}
.header-nav {
    padding: 20px 0px;
}
.innerpage-banner-wrapper .ban-text-area h2 {
    font-size: 33px;
}
.innerpage-banner-wrapper .innerpage-banner {
    height: 280px;
}
.feature-infos-col figure {
    flex-shrink: 0;
} 
.feature-infos-col {
    flex-wrap: wrap;
    text-align: center;
} 
.feature-infos-col .ftr-info-text {
    width: 100%;
    padding: 0px;
    text-align: center;
}
.feature-infos-col .ftr-info-text h4{
    font-size:40px;
}  
.feature-infos-col .ftr-info-text h4 sup {
    left: 0;
    top: -15px;
}
.home-care-sec p {
    font-size: 18px;
}  
.home-care-icon {
    width: 70px;
}
.innerpage-banner-wrapper ul.breadcrumbs li.divider img {
    height: 13px;
}
.aboutus-overview {
    padding-top: 45px;
}
.aboutus-overview p {
    font-size: 16px;
    line-height: 25px;
}
.our-journey-section {
    padding-top: 40px;
}
.journey-box .txt-wrap {
    padding: 20px 15px 10px 20px;
}
.journey-box .txt-wrap p {
    font-size: 15px;
    line-height: 22px;
}
.journey-box .journey-box-row .box-cont-sec {
    padding-left: 42px;
}
.our-journey-wrap .journey-box:nth-child(even) .box-cont-sec {
    padding-right: 42px;
}
.journey-box .journey-pic-sec {
    padding-top: 290px;
}
.blog-btn-wrap {
    left: 18px;
}
    
    
.left-side-cont .left-pic-sec {
        padding-top: 320px;
    }    
    
    .home-ban-slider .item.new {
    background: #005f50;
}

.hm-ban-rt-col.cont-xp-img {
    transform: none;
    position: static;
}

.title-xp-1 {
    font-size: 30px;
}

.title-xp-2 {
    font-size: 18px;
    margin-top: -43px;
}

.xp-list li {
    font-size: 18px;
    background-size: 18px;
    background-position: top 7px left;
}

.cont-xp strong {
    font-size: 16px;
}

.cont-xp span {
    font-size: 20px;
}
    
    
}

 @media(max-width:1024px){
 




}



@media (max-width: 991px) { 
.contactform-sec .left-pic-sec img.shape{
   display: none;
}
.title-with-arrowsec h6.arrow-title::before {
    top: 3px;
    background-size: 10px;
    width: 14px;
    height: 14px;
    left: -15px;
}
.title-with-arrowsec {
    padding-left: 10px;
}
.homecares-sec.diet-nutrition .homecares-left-sec .description-text .underline-text {
    padding-left: 8px;
}
.blog-details-left-sec {
    width: 100%;
}    
.blog-details-left-sec .description-text ul {
    padding-left: 8px;
}
.blog-details-right-sec {
        width: 100%;
        padding-left: 0px;
        margin-top: 40px;
    }
    .biomengineer-right-sec {
        width: 100%;
        padding-left: 0;
        margin-top: 40px;
    }
    .biomengineer-left-sec {
        width: 100%;
    }
.biomengineer-left-sec .about-job-sec .job-box {
    padding-left: 25px;
}
    .biomengineer-left-sec .about-job-sec .job-box .heading {
        font-size: 20px;
    }
.biomengineer-left-sec .about-job-sec .job-box .heading span {
    font-size: 14px;
}
    .biomengineer-left-sec h4 {
        font-size: 21px;
        margin-bottom: 12px;
    }
    .biomengineer-left-sec .about-job-sec {
        margin-bottom: 35px;
    }
.biomengineer-left-sec .about-job-sec .job-box::before {
    width: 1px;
}
.biomengineer-right-sec .apply-jobform {
    padding: 32px 25px;
}

    
    
    
.personal-nursing-row .homecare-box {
    width: 50%;
}
    .personal-nursing-sec {
        padding-top: 30px;
    }

.current-job-opening .button-sec {
    width: auto;
}
.current-job-opening .jobtype {
    width: auto;
}    
.current-job-opening .location-details {
    width: auto;
} 
.why-choose-montera-row {
    background-image: none !important;
}
.homecares-left-sec {
    width: 100%;
}
.homecares-right-sec {
    width: 100%;
    padding-left: 0px;
    padding-top: 35px;
}
.homecares-right-sec .pic-gridsec .pic-box {
    padding-top: 250px;
}
.homecares-right-sec .contact-box .content p {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.career-page-sec .career-page-row {
    padding-top: 5px;
}
.career-page-sec {
    padding-top: 30px;
    padding-bottom: 20px;
}
.current-job-opening {
    padding-top: 30px;
    padding-bottom: 25px;
}
.career-page-sec .left_sec {
    width: 50%;
    padding-right: 10px;
}
.career-page-sec .right_sec {
    width: 50%;
    padding-left: 15px;
}



.turnkey-solutions-row h4 {
    font-size: 20px;
}
.turnkey-solution-sec {
    padding-top: 40px;
    padding-bottom: 35px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text {
    width: 58%;
    padding-right: 25px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-pic {
    width: 42%;
}
.turnkey-solutions-row p.top-para {
    font-size: 15px;
    line-height: 22px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text p {
    font-size: 15px;
}
.turnkey-solution-sec .tab-pane-text ul li {
    font-size: 15px;
    line-height: 21px;
}
.where-we-operate-sec .container {
    margin-top: -245px;
}
.operate-box {
    width: 50%;
    margin-bottom: 25px;
}
.why-choose-montera .solution-box p {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.turnkey-solutions-row h6 {
    margin-bottom: 20px;
}
.turnkey-solution-sec ul.tab-mnu {
    justify-content: center;
}
.turnkey-solution-sec ul.tab-mnu li {
    width: 31.5%;
    margin-bottom: 15px;
}

.where-we-operate-sec {
    padding-bottom: 20px;
}
.why-choose-montera .solution-box {
    width: 50%;
    margin-bottom: 10px;
}
.contactpage-map-sec .left_sec {
    width: 100%;
    padding: 25px;
}
.blog-box-wrap {
    width: 50%;
}
.equipment-descrp-box {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 25px;
}
.equipment-descrp-box-row .equipment-descrp-txt {
    padding: 5px 6px 15px 20px;
}
    .equipment-descrp-box-row .equipment-descrp-pic {
        padding-top: 240px;
    }
.equipment-descrp-txt p {
        min-height: auto;
    }
    .equipments-page-sec {
        padding-top: 40px;
    }
.sml-cmn-btn {
    min-width: 155px;
}
.contactpage-map-sec {
        padding-top: 40px;
        padding-bottom: 110px;
    }
.contactpage-map-sec .right_sec {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
}
.contactpage-map-sec .map-sec {
        height: 350px;
    }
.contactpage-map-sec .getin-touch-sec h2.cmn-title {
    margin-bottom: 15px;
}
.contactform-sec .left-pic-sec .left-pic {
        padding-top: 458px;
        display: none;
    }
.contactform-sec .left-pic-sec .circle {
        top: 0;
        left: 56%;
        transform: translate(38%, -50%);
    }
    .contactform-sec .left-pic-sec {
        padding-right: 0px;
        z-index: -1;
    }
    .contactform-sec .form-sec {
        padding-left: 0px;
        width: 100%;
        padding-top: 90px;
    }
.contactform-sec {
    position: relative;
    z-index: 2;
}

.journey-box .txt-wrap p {
    font-size: 14px;
    line-height: 20px;
}
.journey-box .txt-wrap h4 {
    margin-bottom: 12px;
    font-size: 20px;
}
.journey-box .journey-box-row .box-pic-sec {
    width: 45%;
}
.our-journey-section .journey-box {
    padding-bottom: 45px;
}
.our-journey-wrap .journey-box:last-child {
    margin-bottom: 45px;
}


    .navbar-wrap > ul {
      display: none;
      flex-direction: column;
      background-color: white;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 1000;
      top: 115px;
      height: calc(100vh - 105px);
      overflow: auto;
      transition: all .25s ease-in-out;
    }
  
    .navbar-wrap > ul.active {
      display: flex;
    }
  
    .hdr-nav-cont {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .mobile-menu-btn {
      display: flex;
    }

    .hdr-btn-call {
        margin-left: 0px;
        margin-right: 20px;
    }

    .navbar-wrap li {
        margin: 5px 15px;
    }

    .dropdown-wrapper {
        position: static !important;
        box-shadow: none;
        padding-left: 0;
        opacity: 1 !important;
        visibility: visible !important;
        top: 0;
        min-width: 100%;
        display: none;
    }
    
      /* Display submenu when the parent item is active */
      li.has-dropdown.active .dropdown-wrapper {
        display: block;
        background: var(--theme-color);
        margin: 10px 0px;
      }
    
      /* Rotate the icon on open */
      .has-dropdown.active i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
      }

      .has-dropdown a:before{
        display: none;
      }

      li.has-dropdown.active {
        padding-right: 0px;
    }
    
    .dropdown-wrapper ul li {
        margin: 0px;
    }
    
    .dropdown-wrapper ul li a {
        color: #fff;
        font-size: 13px;
    }

    .dropdown-wrapper ul li a:hover{
        color: #fff;
    }

    h1,
.title-h1{
	font-size: 40px; 	
}
h2,
.title-h2{ 
    font-size: 28px; 
}
h3,
.title-h3{
    font-size: 24px;
}
h4,
.title-h4{
	font-size: 18px;
}
h5,
.title-h5{
	font-size: 16px;
}
h6,
.title-h6{
	font-size: 14px;
}

body{
    font-size: 14px;
}

.hdr-top-left-col li a {
    font-size: 12px;
}

.hdr-top-left-col li a img {
    width: 14px;
}

.header-nav {
    padding: 15px 0px;
}

.hm-ban-lt-col h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hm-ban-lt-col h1 span {
    font-size: 28px;
}

.hm-ban-lt-col p {
    font-size: 14px;
}

.hm-ban-icons-wrap {
    margin: 10px -5px -5px;
    max-width: 100%;
}

.hm-ban-item-col {
    padding: 5px;
    font-size: 13px;
}

.hm-ban-item-col i {
    width: 30px;
    height: 30px;
}

.hm-ban-item-col i img {
    width: 12px;
}

.cmn-btn {
    padding: 12px 20px;
    font-size: 12px;
    min-width: auto;
}

.cmn-btn img {
    width: 14px;
}

.hm-ban-lt-col {
    width: 50%;
}

.hm-ban-rt-col {
    width: 50%;
}

.sld-pagination-bar {
    position: absolute;
    width: auto;
    flex-direction: row;
    display: inline-flex;
    margin: 0 auto;
    bottom: 0px;
    top: auto;
    transform: translateX(-50%);
    height: auto;
    left: 50%;
    right: auto;
}

.ban-sld-num {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.ban-sld-num:after {
    display: inline-block;
    height: 1px;
    width: 48px;
    margin: 0px 10px 0px 10px;
}

.ban-sld-dots {
    margin-top: 0px;
}

.ban-sld-dots ul {
    display: flex;
    align-items: center;
}

.ban-sld-dots ul li + li {
    margin: 0px;
}

.ban-sld-dots ul li {
    margin: 0px 5px !important;
}

.home-ban-slider .item {
    padding: 25px 15px 70px;
}

.cmn-gap {
    padding: 50px 0px;
}

.key-infos-item {
    width: 33.3333%;
    border: 0px;
    padding: 15px;
}

.key-infos-row {
    justify-content: center;
}

.about-infos-left-col {
    padding-right: 15px;
    padding-left: 15px;
}

.about-infos-left-col figure {
    padding-right: 20px;
}

.about-infos-left-col figure:after {
    bottom: -20px;
    border-width: 4px;
}

.cmn-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.about-infos-right-col span {
    font-size: 16px;
     margin-bottom: 10px;
    line-height: 23px;
}


.about-infos-right-col {
    padding: 0px 15px;
}

.abt-infos-btn-wrap {
    margin-top: 25px;
}

.about-infos-right-col p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-infos-strip h2 {
    font-size: 60px;
}

.feature-infos-strip h3 {
    font-size: 20px;
}

.feature-infos-strip h2 sup {
    margin-top: 10px;
}

.feature-infos-row {
    padding: 35px 15px;
}

.feature-infos-sec.cmn-gap {
    padding-bottom: 0px;
}

.home-care-icon {
    width: 50px;
}

.rvw-top-item {
    font-size: 18px;
}

.rvw-top-item .cmn-rvws-wrap {
    font-size: 15px;
}

.rvw-pwd-text img {
    width: 60px;
}

.rvw-btn-wrap {
    margin-top: 15px;
}

.ft-call-wrap {
    padding: 10px;
}

.ft-call-wrap {
    flex-shrink: 0;
}

.ft-call-wrap i {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
}

.ft-call-wrap i img {
    width: 18px;
}

.ft-call-text a {
    font-size: 18px;
}
.ft-call-text {
    font-size: 16px;
}


.ft-btn-wrap a {
    min-width: 100%;
    font-size: 14px;
}

.hm-ban-btn-wrap{
    margin-top: 20px;
}
.equipment-descrp-txt h5 {
    font-size: 18px;
}
.turnkey-solution-sec .tab-cont {
    margin-top: 25px;
}
.current-job-opening .answer .extra-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 5px;
}
.current-job-opening .job-type-info {
    display: none;
}
.current-job-opening h2.cmn-title.center {
    margin-bottom: 35px;
} 
.current-job-opening .accordion-header .location-details{
    display: none;
}
.current-job-opening .accordion-header .jobtype{
    display: none;    
}    
.current-job-opening .accordion-header .button-sec{
   display: none;     
}
ul.accordion-list li .accordion-header:after {
    top: 6px;
}
.current-job-opening .ac-heading {
    width: 100%;
    padding-right: 35px;
}
.homecares-left-sec .description-text ul.underline-list {
    padding-left: 10px;
}

.home-ban-slider .item:first-child{
    padding-bottom: 70px;
}
    
    
    
  
}



@media (max-width: 767px) {
    .our-journey-section .journey-box::before{
        display: none;
    }
    .biomengineer-right-sec .apply-jobform h4 {
        font-size: 22px;
    }
.biomengineer-right-sec .apply-jobform label {
    font-size: 16px;
    padding-bottom: 6px;
}


.homecare-box .text-sec h4 {
        font-size: 20px;
        margin-bottom: 14px;
    }
a.homecare-btn {
    font-size: 15px;
}


    .turnkey-solution-sec .tab-pane-row .pic-sec {
        padding-top: 250px;
    }
.career-page-sec .career-page-row {
    flex-direction: column-reverse;
    padding-top: 15px;
}
.career-page-sec .left_sec {
    width: 100%;
    padding-right: 0px;
}
    .homecares-sec {
        padding-top: 30px;
        padding-bottom: 35px;
    }

.current-job-opening ul.accordion-list li {
    padding: 15px 15px 15px 20px;
}
.current-job-opening .ac-heading {
    font-size: 18px;
}
.career-page-sec .right_sec {
        width: 100%;
        padding-left: 0px;
        padding-bottom: 30px;
    }
    .contactform-sec .left-pic-sec .circle {
        left: 50%;
    }
    .aboutus-overview {
        padding-top: 35px;
    }
    h2.cmn-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
.home-care-sec h2 {
        font-size: 25px;
    }
        .cmn-gap {
        padding: 40px 0px;
    }
    .feature-infos-col .ftr-info-text h4 {
        font-size: 35px;
    }
    .innerpage-banner-wrapper .ban-text-area h2 {
        font-size: 30px;
    }
    .innerpage-banner-wrapper .innerpage-banner {
        height: 250px;
    }

    .journey-box .journey-box-row::before{
        display: none;
    }
    .journey-box .journey-box-row::after{
        display: none;
    }
    .journey-box .journey-box-row .box-pic-sec {
        width: 100%;
    }
    .our-journey-wrap {
        padding-top: 10px;
    }
    .journey-box .journey-box-row .box-cont-sec {
        padding-left: 0px;
        width: 100%;
        margin-top: 20px;
    }
    .journey-box .journey-box-row .txt-wrap::before{
        display: none;
    }
    .our-journey-wrap .journey-box:nth-child(even) .journey-box-row .txt-wrap::after{
        display: none;
    }
.our-journey-wrap .journey-box:nth-child(even) .box-cont-sec {
        padding-right: 0px;
    }
    .hm-ban-lt-col {
        width: 100%;
    }
    
    .hm-ban-rt-col {
        width: 20%;
    }
    
    .hm-ban-row {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .hm-ban-rt-col {
        width: 50%;
        margin-bottom: 30px;
        margin: 0 auto 30px;
    }
    
    .home-ban-slider .item {
        background-size: cover;
        background: #92ddf4;
    }
    
    .hm-ban-item-col {
        display: flex;
    }
    
    .key-infos-item {
        width: 50%;
    }
    
    .about-infos-left-col {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .about-infos-right-col {
        width: 100%;
    }
    
    .feature-infos-row {
        justify-content: center;
        flex-wrap: wrap;
        background-image: none;
    }
    
    .feature-infos-col {
        width: 50%;
    }
    
    .ft-top-col {
        width: 50%;
    }
    
    .ft-call-wrap {
        margin-top: 15px;
    }
    
    .ft-top-info li {
        font-size: 16px;
    }
    
    .ft-top-info li {
        margin-top: 0px;
    }
    
    .ft-top-info li:first-child img {
        margin-top: 0px;
    }
    
    .ft-top-info li img {
        margin-top: 7px;
    }
    .ft-nrm-links li{
        font-size: 16px;
        margin-bottom: 9px;
    }
    .ft-top-inner-wrap {
        font-size: 14px;
        margin-top: 0px;
    }
    .ft-top-inner-wrap p.btm_txt {
    font-size: 14px;
}
    .ft-nrm-links li a {
        font-size: 16px;
    }


    .ft-social-media {
        margin-top: 20px;
    }
    
    .ft-social-media li a {
        width: 36px;
        height: 36px;
    }
    
    .footer-btm {
        font-size: 12px;
    }
    
    .footer-top {
        padding: 45px 0px;
    }

    .xp-list li {
    text-align: left;
    font-size: 14px;
}

.title-xp-1 {
    font-size: 25px;
}

.title-xp-2 {
    font-size: 14px;
}

.cont-xp strong {
    font-size: 16px;
    display: block;
}

.cont-xp span {
    font-size: 16px;
}

.cont-xp {
    flex-direction: column;
}
    
    
   

}

@media (max-width: 575px) {
.journey-box .journey-pic-sec {
    padding-top: 240px;
}
.homecares-left-sec .description-text ul.underline-list li {
    font-size: 15px;
}
.homecares-left-sec .description-text ul.underline-list li span{
    font-size: 15px;
}
.homecare-box .text-sec p {
        min-height: 105px;
    }
    .homecare-box .text-sec h4 {
        font-size: 18px;
        margin-bottom: 14px;
    }
.left-side-cont .left-pic-sec {
        padding-top: 260px;
    }
    ul.blog-breadcrumbs li {
        font-size: 16px;
    }
ul.blog-breadcrumbs {
    margin-bottom: 25px;
}
.blog-details-left-sec .left-side-cont {
        padding: 20px 16px;
    }
    .blog-details-left-sec .description-text p {
        line-height: 23px;
        font-size: 15px;
    }
    .blog-details-left-sec .description-text .cmn-title-sml {
        font-size: 18px;
    }
.blog-detailspage-sec .description-text {
        padding: 20px;
    }
.blog-details-left-sec .description-text ul li {
    font-size: 16px;
}


.turnkey-solution-sec ul.tab-mnu li {
    width: 31%;
}
.turnkey-solution-sec ul.tab-mnu li h5 {
    font-size: 15px;
} 
.homecares-left-sec .description-text ul.check-list li {
    font-size: 15px;
}
.ac-cmn-btn {
    min-width: 130px;
    padding: 11px 10px;
    font-size: 15px;
}
.homecares-left-sec {
    padding: 20px 16px;
}
.homecares-left-sec .left-pic-sec {
    padding-top: 260px;
}
.homecares-sec h4.cmn-title-sml {
    margin-left: 12px;
    font-size: 21px;
}
.homecares-left-sec .description-text {
    padding: 20px;
}
.homecares-left-sec .description-text p {
    line-height: 23px;
    font-size: 15px;
}
.homecares-left-sec .description-text h6.cmt-title-underline {
    font-size: 16px;
}
.homecares-left-sec .description-text ul {
    padding-left: 5px;
}
.homecares-left-sec .description-text ul li {
    font-size: 15px;
}
.homecares-left-sec .description-text ul li::before {
    top: 9px;
}
.homecares-right-sec .contact-box .content p {
    max-width: 90%;
}


    

.ac-cmn-btn img {
    width: 17px;
}
.turnkey-solution-sec ul.tab-mnu li figure {
    height: 55px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-text {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 18px;
}
.turnkey-solution-sec .tab-pane-row .tab-pane-pic {
    width: 100%;
}
.turnkey-solution-sec .tab-pane-row .pic-sec {
    padding-top: 260px;
}
.career-page-sec .career-pic-sec {
    padding-top: 400px;
}
.current-job-opening .answer p {
        font-size: 15px;
        line-height: 23px;
    }
    .turnkey-solutions-row {
        padding-top: 10px;
    }


    
    h4.sml-cmn-title {
        font-size: 20px;
    }

.blog-box-wrap {
     width: 100%;
}
.blog-descrip {
    padding: 0px 22px 55px 22px;
}
.blog-btn-wrap {
        left: 22px;
    }
.blog-title {
    font-size: 20px;
    min-height: auto;
 }
.blog-descrip p {
    min-height: auto;
}

    .contactpage-map-sec .left_sec {
        padding: 20px;
    }
.social-media {
        margin-top: 20px;
    }
    .social-media li a {
    width: 42px;
    height: 42px;
}
    .contactpage-map-sec .map-sec {
        height: 300px;
    }
    .contactform-sec .left-pic-sec .circle {
        transform: translate(31%, -50%);
    }


.about-infos-right-col p {
    font-size: 15px;
}
h2.cmn-title {
    font-size: 22px;
}
.home-care-sec h2 {
    font-size: 22px;
}
.aboutus-overview p {
    font-size: 15px;
    line-height: 22px;
}
.home-care-solutions .solution-box p {
    font-size: 15px;
    line-height: 22px;
}
.home-care-solutions .solution-box span {
    font-size: 15px;
    line-height: 24px;
} 
.home-care-solutions .solution-box h4 {
    margin-bottom: 12px;
}
.home-care-solutions .solution-box ul li {
    font-size: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.home-care-solutions .solution-box {
    margin-bottom: 25px;
}
.innerpage-banner-wrapper .ban-text-area h2 {
    font-size: 26px;
}
.innerpage-banner-wrapper ul.breadcrumbs li {
    font-size: 16px;
}
.innerpage-banner-wrapper ul.breadcrumbs li.divider img {
    height: 12px;
}
.footer-top {
    padding: 30px 0px;
}
.getin-touch-sec ul li a .icon.email img {
        width: 35px;
    }
    .getin-touch-sec ul li a .icon.phn img {
        width: 35px;
    }
    .getin-touch-sec ul li a .icon.location img {
        width: 45px;
    }
.getin-touch-sec ul li a .icon {
    width: 55px;
    height: auto;
}
.getin-touch-sec ul.contact-details li a::before {
    width: 50px;
    height: 2px;
}
    .contactpage-map-sec {
        padding-top: 35px;
    }
.homecares-left-sec .description-text ul li {
    padding-left: 19px;
}

    

}

@media (max-width: 574px){
.why-choose-montera .solution-box .circle {
    width: 115px;
    height: 115px;
}
.biomengineer-left-sec .about-job-sec {
    justify-content: center;
    text-align: center;
}  
.biomengineer-left-sec .about-job-sec .job-box {
    padding-left: 10px;
     width: 50%;
}
    .biomengineer-left-sec .about-job-sec .job-box:last-child{
        margin-top: 22px;
    }
    .biomengineer-left-sec .about-job-sec .job-box:nth-child(2)::before{
        display: none;
    } 
.biomengineer-left-sec p {
    margin-bottom: 20px;
}


.personal-nursing-row .homecare-box {
        width: 100%;
    }
.why-choose-montera .solution-box .circle img.efficiency {
    width: 52px;
}
.why-choose-montera {
    padding-top: 20px;
    padding-bottom: 15px;
}
.turnkey-solution-sec {
    padding-top: 35px;
}
.current-job-opening .ac-heading {
    font-size: 16px;
}
ul.accordion-list li .accordion-header:after {
    top: 3px;
    background-size: 20px;
    width: 20px;
}
.career-page-sec .career-pic-sec {
    padding-top: 350px;
}
.career-page-sec .box p {
    font-size: 15px;
    line-height: 22px;
}
.career-page-sec {
    padding-bottom: 15px;
}
.current-job-opening h2.cmn-title.center {
    margin-bottom: 30px;
}
.current-job-opening .location-details {
    font-size: 15px;
}
.current-job-opening .jobtype {
    font-size: 15px;
}

.current-job-opening ul.accordion-list li {
    padding: 13px 13px 13px 16px;
}
.contactform-sec .left-pic-sec .circle {
    transform: translate(17%, -50%);
} 
    .equipment-descrp-box-row .equipment-descrp-txt {
        padding: 5px 6px 15px 16px;
    }
    .equipment-descrp-box-row .equipment-descrp-pic {
        padding-top: 220px;
    }

    .blog-listing-sec {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    ul.blg-pagination li a {
        width: 45px;
        height: 42px;
        font-size: 15px;
    }

.frm-col.frm-col-half {
    width: 100%;
}
    .submit-btn {
        font-size: 15px;
        min-width: 150px;
    }
input[type="text"], input[type="tel"], input[type="password"], input[type="email"], input[type="number"] {
        height: 44px;
    }   
        textarea {
        height: 115px;
    }
.rvw-list-inner {
    padding: 20px;
    font-size: 15px;
}
.homecare-box .text-sec p {
        min-height: auto;
    }
     
.homecare-box .text-sec h4 {
    font-size: 19px;
}
.personal-nursing-sec {
    padding-bottom: 20px;
}

    
    
    
    
}

@media (max-width: 479px) {	
   .hdr-top-left-col ul {
    margin: 0px -6px;
}
.ft-nrm-links li {
    text-align: center;
}
.ft-title {
    text-align: center;
}    
.ft-call-wrap {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    justify-content: center;
}    
.ft-social-media ul {
    justify-content: center;
}
.ft-title:after {
    left: 50%;
    transform: translateX(-50%);
} 
.ft-nrm-links li {
    text-align: center;
}    
.ft-top-inner-wrap .ft-title:after {
    right: auto;
}    
.ft-top-info li {
    justify-content: center;
}
    
    
    
.biomengineer-left-sec p {
        font-size: 15px;
        line-height: 24px;
    }
    .biomengineer-left-sec ul.check-list li {
        font-size: 15px;
    }
.biomengineer-left-sec h4 {
        font-size: 20px;
    }
    .personal-nursing-sec p.top-para {
        line-height: 23px;
        font-size: 15px;
    }

.homecares-left-sec .left-pic-sec {
        padding-top: 210px;
        border: 8px solid #fff;
    }
    .homecares-sec p.top-para {
        line-height: 24px;
        font-size: 15px;
        max-width: 100%;
    }
.homecares-left-sec {
        padding: 16px 12px;
    }
    .homecares-sec h4.cmn-title-sml {
        margin-left: 10px;
        font-size: 19px;
    }
    .homecares-left-sec .description-text {
        padding: 15px;
    }
    .homecares-right-sec .pic-gridsec .pic-box {
        padding-top: 220px;
    }
    .homecares-right-sec .contact-box .content h2 {
        font-size: 28px;
    }
    .homecares-right-sec .contact-box {
        margin-top: 12px;
    }

.why-choose-montera .solution-box {
        width: 100%;
    }
    .turnkey-solution-sec ul.tab-mnu li {
        width: 47%;
    }
.operate-box {
        width: 100%;
        margin-bottom: 22px;
    }
.equipment-descrp-box-row {
    padding: 13px;
}
.equipment-descrp-box-row .equipment-descrp-pic {
    width: 100%;
}
.career-page-sec .career-pic-sec {
        padding-top: 300px;
    }
    .equipments-box {
        padding-top: 30px;
        padding-bottom: 10px;
    }

.sml-cmn-btn {
        min-width: 150px;
    }
.equipment-descrp-box-row .equipment-descrp-txt {
        padding: 20px 2px 16px 2px;
        width: 100%;
    }
.contactpage-map-sec .left_sec {
        padding: 15px;
    }
    .contactpage-map-sec .map-sec {
        height: 260px;
    }
.contactform-sec .left-pic-sec .circle {
        transform: translate(10%, -50%);
    }

.innerpage-banner-wrapper .innerpage-banner {
    height: 210px;
}
.journey-box .journey-pic-sec {
    padding-top: 200px;
}
.our-journey-section .journey-box {
    padding-bottom: 35px;
}

.hdr-top-left-col li {
    padding: 6px;
}

.hdr-top-left-col li a {
    font-size: 10px;
}

.hdr-top-left-col li a img {
    display: none;
}

.hdr-top-right-col ul {
    margin: 0px -6px;
}
    .our-journey-wrap .journey-box:last-child {
        margin-bottom: 35px;
    }

.hdr-top-right-col li {
    padding: 4px 6px;
}
    .home-care-solutions {
        padding-top: 30px;
    }

.site-logo {
    max-width: 90px;
}

.header-nav {
    padding: 10px 0px;
}

.hdr-btn-call a {
    font-size: 12px;
    padding: 10px;
}

.btn-call-text .title-text {
    font-size: 9px;
}

.hdr-btn-call a .trin-trin {
    width: 16px;
    margin-right: 8px;
}

.hdr-top-wrap {
    align-items: center;
}

.navbar-wrap > ul {
    top: 95px;
    height: calc(100% - 95px);
}

.hm-ban-rt-col {
    width: 70%;
    margin-bottom: 30px;
}

.hm-ban-lt-col h1 span {
    font-size: 22px;
}

.hm-ban-lt-col h1 {
    font-size: 16px;
}

.hm-ban-item-col i {
    margin-right: 8px;
}

.hm-ban-item-col {
    font-size: 12px;
    justify-content: center;
}

.home-ban-slider .item {
    padding-bottom: 80px;
    text-align: center;
}

.hm-ban-item-col i {
    display: none;
}

.hm-ban-item-col i {
    font-size: 12px;
}

.hm-ban-lt-col p {
    font-size: 12px;
}

.key-infos-item span {
    font-size: 11px;
}

.key-infos-item p {
    font-size: 12px;
}

.key-infos-item {
    padding: 15px 6px;
}

.about-infos-left-col {
    width: 80%;
    margin: 0 auto 30px;
}

.about-infos-right-col {
    text-align: center;
}

.about-infos-right-col .cmn-title:after {
    right: 0;
    margin: 0 auto;
}

.feature-infos-row {
    padding: 30px 5pxpx;
}

.feature-infos-col {
    padding: 10px;
}

.feature-infos-col .ftr-info-text h4 {
    font-size: 30px;
}

.feature-infos-col .ftr-info-text p {
    font-size: 12px;
}

.feature-infos-col figure {
    width: 90px;
    height: 90px;
}

.feature-infos-col figure:after {
    width: 70px;
    height: 70px;
}

.feature-infos-col figure img {
    width: 35px;
}

.home-care-sec p {
    font-size: 16px;
}

.ft-top-col {
    width: 100%;
}
    .contactpage-map-sec .getin-touch-sec p {
        font-size: 15px;
    }
.innerpage-banner-wrapper ul.breadcrumbs li {
        font-size: 15px;
    }
.innerpage-banner-wrapper ul.breadcrumbs li.divider img {
        height: 10px;
    }
    .homecares-right-sec .pic-gridsec .pic-box {
        padding-top: 200px;
    }
.innerpage-banner-wrapper ul.breadcrumbs li a {
    font-size: 13px;
}
.innerpage-banner-wrapper ul.breadcrumbs li {
    font-size: 13px;
}
    .blog-details-right-sec .popular-post-sec h3 {
        font-size: 22px;
    }
.blog-details-left-sec .description-text ul li {
        font-size: 15px;
    }
.blog-details-left-sec .description-text .cmn-title-sml {
        font-size: 17px;
    }
    .blog-detailspage-sec h4.cmn-title-sml.left {
        margin-left: 10px;
        font-size: 20px;
        margin-bottom: 25px;
    }
.left-side-cont .left-pic-sec {
    padding-top: 210px;
    border: 8px solid #fff;
}
.blog-details-left-sec .left-side-cont {
    padding: 16px 12px;
}
ul.blog-breadcrumbs {
        margin-bottom: 20px;
}

    
    

}

@media (max-width: 414px){
.contactform-sec .left-pic-sec .circle .inner-circle span {
    font-size: 14px;
    line-height: 18px;
}
.biomengineer-left-sec .about-job-sec .job-box {
        width: 100%;
    }
.biomengineer-right-sec .apply-jobform input {
    margin-bottom: 22px;
}


.biomengineer-right-sec .apply-jobform textarea {
    height: 100px;
    margin-bottom: 20px;
}
.biomengineer-right-sec .apply-jobform {
        padding: 32px 20px;
    }
    .biomengineer-left-sec .about-job-sec .job-box:first-child{
        margin-bottom: 22px;
    }
    .biomengineer-left-sec .about-job-sec .job-box:first-child::before{
        display: none;
    }
    
    
    
.homecares-right-sec .contact-box .content p {
        max-width: 100%;
        line-height: 24px;
    }
.contactform-sec .left-pic-sec .circle .inner-circle {
        width: 125px;
        height: 125px;
    }  
.contactform-sec .left-pic-sec .circle {
        width: 145px;
        height: 145px;
    }
.blog-box a.blog-picsec {
        padding-top: 180px;
    }
    .blog-descrip {
        padding: 0px 18px 55px 18px;
    }
.blog-btn-wrap {
        left: 18px;
    }
.equipment-descrp-box-row .equipment-descrp-pic {
    padding-top: 210px;
}
.current-job-opening .answer p {
    font-size: 14px;
    line-height: 21px;
}
.current-job-opening .answer {
    padding-top: 12px;
}



    

}

@media (max-width: 413px){

.journey-box .journey-pic-sec {
    padding-top: 180px;
}
.ac-cmn-btn {
    min-width: 120px;
    padding: 11px 10px;
    font-size: 14px;
}
.homecares-sec h2.cmn-title {
    font-size: 20px;
}
    .homecares-left-sec .description-text ul {
        padding-left: 0px;
    }
    .homecares-right-sec .pic-gridsec .pic-box {
        padding-top: 180px;
    }



}



