/*
Created on : Jan 16, 2021
Author     : webiknows.com
Version: 1.1
*/
/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
    12. Animation
    13. FLOATING LABEL
    14. ACCORDION
========================================*/
/*-----------------
1. Global variable css
-----------------------*/
:root {
	--gradient-btn:  -webkit-linear-gradient(0deg, #394263 0%, #6373b1 100%);
    --primary-clr: #5d88bb;
    --secondary-clr: #707070;
    --text-clr: #333333;
    --accent-clr: #8f8d8d;
    --lightgrey-clr: #ededed;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}

@font-face { 
    font-family: 'rupeeregular';
    src: url('../Fonts/rupee-webfont.woff2') format('woff2'),
         url('../Fonts/rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*<span class="ruppee-f">`</span>*/
.ruppee-f {font-family: 'rupeeregular';font-weight: 600;}

/*-----------------
2. Background Color
-----------------------*/
.bg-primary {background-color: var(--primary-clr) !important;}
.bg-secondary {background: var(--secondary-clr);}
.bg-lightgrey {background: var(--lightgrey-clr);}
.bg-white {background: #fff !important;}
.bg-t {background: transparent !important;}
/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr);}
.secondary-clr {color: var(--secondary-clr);}
.white {color: #fff !important;}
.green{color:#38BC68;}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}
/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 1.6rem;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}
.f-12 {font-size: 1.2rem;}
.f-13 {font-size: 1.3rem;}
.f-14 {font-size: 1.4rem;}
.f-16 {font-size: 1.6rem;}
.f-18 {font-size: 1.8rem;}
.f-20 {font-size: 2rem;}
.f-22 {font-size: 2.2rem;}
.f-24 {font-size: 2.4rem;}
.f-26 {font-size: 2.6rem;}
.f-28 {font-size: 2.8rem;}

/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal;}
.bold-500 {font-weight: 500;}
.bold-600 {font-weight: 600;}
.bold-700 {font-weight: 700;}

/* - Text transform classes - */
.txt-upper {text-transform: uppercase;}
.txt-lower {text-transform: lowercase;}
.txt-capital {text-transform: capitalize;}
.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}

/*-----------------
5. Button  
-----------------------*/
.cus-primary-btn {
    color: #fff;
    background: var(--primary-clr);
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn:hover {
    color: var(--primary-clr);
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
.cus-primary-btn-outline {
    color: var(--primary-clr);
    background: transparent;
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn-outline:hover {
    color: #fff !important;
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
/*-----------------
6. Margins and Paddings
-----------------------*/






/*-----------------
7. Position
-----------------------*/
.top-left {position: absolute;top: 8px;left: 16px;}
.top-right {position: absolute;top: 8px;right: 16px;}
.top-center {position: absolute;top: 0;left: 50%;transform: translate(-50%, 0);}  
.bottom-right {position: absolute;bottom: 8px;right: 16px;}
.bottom-left {position: absolute;bottom: 8px;left: 16px;}
.bottom-center {position: absolute;bottom: 0;left: 50%;transform: translate(-50%, -50%);}
.middle-left {position: absolute;top: 50%;left: 50%;transform: translate(0%, -50%);}
.p-centered {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.v-center {-webkit-transform: translate(0,-50%);-o-transform: translate(0,-50%);transform: translate(0,-50%);top: 50%;margin: 0 auto;}
.modal-dialog-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: flex-end; min-height: calc(100% - 0rem);}
.modal-rounded {border-radius: 8px 8px 0 0;}

.shadow_from_bottom:after,
.shadow_from_bottom_2:before {
  content: "";
  background: linear-gradient(180deg,hsla(0,0%,71.4%,0),rgba(0,0,0,.83));
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 45px 0;
  width: 100%;
  height: 100px;
}
.shadow_from_bottom_2:before {
  z-index: 0;
}
.shadow_from_bottom:after {
  z-index: 1;
  border-radius: 0 0 5px 5px;
}
/*-----------------
8. Custom Checkbox
-----------------------*/
.cus-checkbox [type="checkbox"]:checked,
.cus-checkbox [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-checkbox [type="checkbox"]:checked + label,
.cus-checkbox [type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-checkbox [type="checkbox"]:checked + label:before,
.cus-checkbox [type="checkbox"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
}
.cus-checkbox [type="checkbox"]:checked + label:after,
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-clr);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*############custom radio start here########*/
.cus-radio [type="radio"]:checked,
.cus-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-radio [type="radio"]:checked + label,
.cus-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-radio [type="radio"]:checked + label:before,
.cus-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.cus-radio [type="radio"]:checked + label:after,
.cus-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary-clr);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cus-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.custom-select {
   background: transparent;
    background-image: url(../../assets/images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}


/*-----------------
9. Reset Css
-----------------------*/
/* body {font-size: 10px;}

@media screen and (min-width: 320px) {
  body {font-size: 10px;}
  html {font-size: 80%;}
}
@media screen and (min-width: 991px) {
  body {font-size: 14px;}
  html {font-size: 100%;}
}  */
::selection {
  background-color: var(--primary-clr);
  color: #fff;
}

/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*------------------------------
COMMON CSS
-------------------------------*/

.fancybox-button--share{display: none;}
.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.vh-48 {height: 48vh;}


.w-120px {width: 120px}
.w-250px {width: 250px}
.w-100px {width: 100px}

.h-60px {height: 60px}
.h-120px {height: 120px}
.h-130px {height: 130px}
.h-150px {height: 150px}
.h-160px {height: 160px}
.h-180px {height:180px;}
.h-200px {height: 200px;}
.h-210px {height: 210px;}
.h-230px {height: 230px;}
.h-250px {height: 250px}

.btn:hover {color: #dddddd;text-decoration: none;}
.fit-image {object-fit: cover;}

.grayscale{
    filter: grayscale(100%);
}
.shadow-light {
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}
.zoom-hover {
    transition: all .5s ease;
}
.zoom-hover:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
.img-hover-color {
      filter:grayscale(1);
      -webkit-filter: grayscale(1);
      -webkit-transition: all .8s ease-in-out;  
}
.img-hover-color:hover {
      filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}
.on_hover_show .show_div {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
    text-align: center;
    width: 100%;
    visibility: hidden;
    display: table;
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.on_hover_show:hover .show_div {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}
.rotated_180 {
    transform: rotate(180deg);
}

.opacity-1 {opacity: 1;}
.opacity-75 {opacity: 0.75;}
.opacity-50 {opacity: 0.5;}
.opacity-25 {opacity: 0.25;}

.b-r-4 {border-radius: 6px;}
.b-r-5 {border-radius: 5px;}
.b-r-6 {border-radius: 6px;}
.b-r-8 {border-radius: 8px;}
.b-r-10{border-radius: 10px;}
.b-r-50{border-radius: 50px;}

.image-upload > label {pointer-events: inherit;}
.image-upload > input {display: none;}
.image-upload img {width: 40px;cursor: pointer;}


.grid-item-2 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto;
}
.grids-3 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto;
}
.grids-4 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
}

.sec-title .divider:before {
    content: "";
    background-image: url(/images/icons/mpc_divider.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 75px;
    height: 20px;
    z-index: 9999;
    left: -15px;
}
.sec-title .divider {
    margin-top: 15px;
}
.sec-title .divider > svg {
    display: none;
}

/*
.page-title .title-outer {
  max-width: 60%;
}
*/

#navbar > .dropdown > ul {
    max-height: 75vh;
    overflow-y: auto;
}


h1, h2, h3, h4, h5, h6, .title-box h4 {
	font-family: Oswald !important;
	color: var(--primary-clr);
}


.main-menu *, .contact-list *, p, div, a, .page-breadcrumb li  {
	font-family: Kartika !important;
	font-weight: bold !important;
}
::placeholder,.form-control {
  font-size: 1.5rem;
}

.shadow_div {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgb(148 149 149 / 49%);
	position: relative;
	margin-bottom: 20px;
}

.page-breadcrumb {
    display: none;
}

/*------------------------------
New Font Oswald
-------------------------------*/
@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-SemiBold.woff2') format('woff2'),
        url('/fonts/Oswald-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-Medium.woff2') format('woff2'),
        url('/fonts/Oswald-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-Regular.woff2') format('woff2'),
        url('/fonts/Oswald-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-Light.woff2') format('woff2'),
        url('/fonts/Oswald-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-ExtraLight.woff2') format('woff2'),
        url('/fonts/Oswald-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-Bold.woff2') format('woff2'),
        url('/fonts/Oswald-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*------------------------------
New Font Kartika
-------------------------------*/
@font-face {
    font-family: 'Kartika';
    src: url('/fonts/Kartika-Bold.woff2') format('woff2'),
        url('/fonts/Kartika-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kartika';
    src: url('/fonts/Kartika.woff2') format('woff2'),
        url('/fonts/Kartika.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}









/*------------------------------
Header 
-------------------------------*/
.search-popup .form-group button{
  background-color: var(--primary-clr) !important;
}


.main-menu .navigation > li.current > span, .main-menu .navigation > li.current > span, .nav-outer .mobile-nav-toggler{
  color: var(--primary-clr) !important;
}
.main-menu .navigation > li.current.dropdown > span:after, .main-menu .navigation > li > ul > li.current > a, .main-menu .navigation > li li > a:hover{
  color: var(--primary-clr) !important;
}
.btn-style-three, .btn-style-one{
  background-color: white !important;
}
.team-block {
  margin-bottom: 25px !important;
}

.main-header .header-lower {
background: var(--primary-clr);
}

.header-top-three {background-color: #fff !important;}
.header-top-three .top-left .contact-list li,
.header-top-three .top-left .contact-list li i,
.social-icon-one.light li a {
  color:var(--text-clr);
}
.main-menu .navigation > li > span, .main-menu .navigation > li > a,.main-menu .navigation > li.dropdown > span:after {
  color: #fff;
}

.fixed-header .sticky-header {
  background: var(--primary-clr);
}
.logo a > img {
  max-height: 70px;
}
.main-header .logo-box {
  margin-right: 25px;
}
.main-menu .navigation > li {
  margin-right: 14px;
}


/*------------------------------
Footer
-------------------------------*/
.main-footer .widgets-section:before, .main-footer .footer-bottom{
  background-color: var(--primary-clr) !important;
}

/*------------------------------
Homepage
-------------------------------*/
.appointment-section:after {
    background-color: transparent;
}
.top-features .feature-block .inner-box {
  height: 280px;
}
.news-block .lower-content .text {
    color: #4c4c4d;
    margin-top: 8px;
    min-height: 65px;
    line-height: 1.5;
    font-size: 14px;
}
.news-block .image-box {
  position: relative;
  backdrop-filter: blur(40px) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.news-block .image img {
  height: 270px;
  width: auto;
  margin: auto;
  object-fit: cover;
}
.blurImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(8px);
}

.homepageGategoryGrid .card.shadow_from_bottom {
    box-shadow: 0px 0px 9px 0px #8c8c8c;
    transition: all 0.3s ease-in;
}
.homepageGategoryGrid .card img {
    width: 100%;
	height: 250px;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 6px;
}
.homepageGategoryGrid .card.shadow_from_bottom .bottom-center {
    width: 100%;
    text-align: center;
    z-index: 9;
}
.homepageGategoryGrid .card p {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    width: 90%;
    text-transform: uppercase;
    margin: auto;
}
.shadow_from_bottom:after {
    content: "";
    background: linear-gradient(180deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 45px 0px;
    z-index: 1;
    width: 100%;
    border-radius: 0px 0px 5px 5px;
    height: 100px;
}
.homepageGategoryGrid .card.shadow_from_bottom:hover {
    transform: scale(1.02);
}
.homepageGategoryGrid .bottom-center {
    transform: translate(-50%, -15%);
}

.feature-block .hmpg_icon > img {
    height: 95px;
}
.feature-block .hmpg_icon > img.white_icon, .feature-block .hmpg_icon:hover > img.blue_icon {
    display: none;
}
.feature-block .hmpg_icon:hover > img.white_icon {
    display: initial;
}
.hmpg_icon > p {
    text-align: justify;
}


/*------------------------------
About Our Team
-------------------------------*/
.page-title h1{
  color: var(--primary-clr) !important;
  font-size: 34px;
  line-height: 1.3em;
  text-transform: capitalize;
}
.blog-section {
  padding: 60px 0 60px !important;
}
.team-block-two .inner-box:before{
  background-color: var(--primary-clr) !important;
}

.team-desc ul > li {
    font-size: 14px;
    padding-top: 5px;
    line-height: 22px;
    list-style: disc;
	color: #555555;
}

/*------------------------------
BLOGS
-------------------------------*/

.news-block .lower-content h4 {
  font-size: 18px;
}
.imgBlogDetail {
    max-height: 350px !important;
    height: auto !important;
    width: auto !important;
    display: initial !important;
    float: left;
    margin: 30px 20px 20px 0px;
}



/*--------------------------------------
service
-------------------------------------------*/

.about-section-two:before{
  background-color: white !important; 
}
.service-block .icon{
  color: var(--primary-clr) !important;
}
.service-block .inner-box:hover{
  border-color: var(--primary-clr) !important;
}


.fas, .far{
  color: var(--primary-clr);
}
/*--------------------------------------
TESTIMONIAL
-------------------------------------------*/

.testimonial {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3d5a80;
  color: #3d5a80;
}
.testimonial-slide {
  padding: 40px 20px;
}
.testimonial_box-top {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 5px 5px 20px rgb(148 149 149 / 49%);
}
.testimonial_box-icon {
  padding: 10px 0;
}
.testimonial_box-icon i {
  font-size: 25px;
  color: #14213d;
}
.testimonial_box-text {
  padding: 10px 0;
}
.testimonial_box-text p {
  color: #293241;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.testimonial_box-img {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
}
.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}
.testimonial_box-name {
  padding-top: 10px;
}
.testimonial_box-name h4 {
  font-size: 20px;
  line-height: 25px;
  color: #293241;
  margin-bottom: 0;
}
.testimonial_box-job p {
  color: #293241;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}







/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
  .page-title h1 {
    font-size: 18px;
}
.page-title .title-outer {
  max-width: 100%;
}
.page-breadcrumb li {
  font-size: 14px !important;
}
h4 {
  font-size: 18px;
}
.team-block-two .info-box {
  padding: 15px 10px 15px !important; 
}
.team-block-two .info-box .name {
  font-size: 16px;
}
.sec-title h2 {
  font-size: 28px !important;
}

.blog-section {
  padding: 30px 0 15px !important;
}
.banner-section-one .content-box h2 {
  font-size: 24px !important;
}
.banner-section-one .content-box .text {
  font-size: 13px !important;
} 
.feature-block .inner-box {
  text-align: center;
}
.sec-bottom-text a{
  color: var(--primary-clr) !important;
}
.mobile-header,.mobile-header.sticky {
  background-color: var(--primary-clr);
}
.mm-menu {
  background-color: var(--primary-clr);
  background: var(--primary-clr);
}
.visionBannerText {
  width: 90% !important;
  line-height: 1.3;
  font-size: 80%;
  margin-bottom: -5px !important;
}

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

} 

/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) {


/*background*/
.lg-bg-primary {background: var(--primary-clr) !important;}
.lg-bg-secondary {background: var(--secondary-clr) !important;}
.lg-bg-white {background: #fff !important;}
.lg-bg-greylight {background: #f3f3f3 !important;}
.lg-bg-t {background: transparent !important;}  


}  
    


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1299px) {
  .main-menu .navigation > li {
    margin-right: 30px;
  }
}

.services_text * {
    font-size: 14px !important;
    line-height: 18px;
}
.news-block .lower-content h4 a {
    font-size: 21px;
    font-family: "Oswald" !important;
}

.clients-carousel .owl-item > li {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgb(148 149 149 / 49%);
    position: relative;
    margin-bottom: 20px;
    height: 120px;
    display: table-cell;
    vertical-align: middle;
}

.clients-carousel .owl-stage {
    margin: 20px !important;
}