body { 
    font-size:14px;
    overflow: auto;
    font-family: 'Inter',sans-serif;
    overflow-x: hidden;
    line-height: 23px;
    letter-spacing:0.5px;

}
@font-face {
  font-family: 'Poppins Medium';
  src: url('../css/font-awesome/fonts/poppins-medium.ttf');
  src: 
       url('../css/font-awesome/poppins-medium.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
  font-family: 'Inter';
  src: url('../css/font-awesome/fonts/Inter_28pt-Regular.ttf');
  src: 
       url('../css/font-awesome/Inter_28pt-Regular.ttf') format('truetype');
}
.rubik-font {
    font-family: 'Poppins Medium', sans-serif;
}
* {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins Medium', sans-serif;

}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}
.form-control {
    font-size: 12px;
    border-radius: 0;
}
li {
    list-style-type:none;
}
a , a:hover {
    text-decoration:none;
    cursor: pointer;
}
a:active, a:hover , a:focus{
    outline: 0 !important;
}
a:hover , a:focus {
    text-decoration: none;
}
a:focus {
    color: #555;
}
ul {
    margin:0;
    padding:0;
}
a , i , .btn , button , .about-box {
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.sitemap-sec p {
    font-size: 20px;
}
.sitemap-sec ul li a {
    color: #333;
}
.sitemap-sec ul li i {
    font-size: 5px;
    vertical-align: middle;
}
.req-class::after {
    position: absolute;
    content: "*";
    right: -10px;
    top: -9px;
    color: red;
    font-size: 25px;
}
.relative-class {
    position: relative;
}
textarea {
    resize:vertical;
    min-height: 100px;
}
.common-sec {
    padding: 50px 0;
}
.inner-common-sec {
    padding: 100px 0 50px;
}
.black-txt {
    color: #555 !important;
}
.pink-txt {
    color: #ff1a75;
}
.yellow-txt {
    color: #faaf12;
}
.white-txt {
    color: #eeeeee !important;
}
.blue-txt {
    color: #00AEEF;
}
.grey-back-sec {
    background-color: #F9F9F9;
}
.green-txt {
    color: #60C505;
}
.white-back-sec {
    background-color: #fff;
}
.blue-back-sec {
    background-color: #00AEEF;
}
.pink-back-sec {
    background-color: #ff66a3;
}
.green-back-sec {
    background-color: #60C505;
}
.orange-back-sec {
    background-color:  #ff6600;
}
.yellow-back-sec {
    background-color: #F5E706;
}
.yellow1-back-sec {
    background-color:  #ffd11a;
}
.front-class {
    position: relative;
    z-index: 9;
}
.top-margin10 {
    margin-top: 10px;
}
.top-margin20 {
    margin-top: 20px;
}
.top-margin30 {
    margin-top: 30px;
}
.top-margin40 {
    margin-top: 40px;
}
.top-margin50 {
    margin-top: 50px;
}
.top-margin60 {
    margin-top: 60px;
}
.main-desc {
    color: #777;
    letter-spacing: 1px;
    font-size: 14px;
}
.front-class {
    position: relative;
    z-index: 2;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
/*========================================main-index-sec=========================================*/
.main-index-sec .media {
    width: 80%;
    margin: 0 auto;
}
.media img {
    width: 140px;
    height: 120px;
}
.info-sec {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}
.info-sec::before {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.info-sec a:hover {
    color: white !important;
}
.info-sec a {
    color: #ee3135;
}
.info-sec h2 , .info-sec a {
    position: relative;
    z-index: 2;
}
.main-sub.white-txt {
    width: 70%;
    margin: 90px auto 0;
    font-size: 40px;
}
.email {
    margin: 60px 0 0;
    font-size: 30px;
}
/*================================================header============================================*/
.white-logo-sec {
    display: block;
}
.black-logo-sec {
    display: none;
}
.sticky-header .black-logo-sec {
    display: block;
}

.sticky-header .white-logo-sec {
    display: none;
}
.sticky-header .dash-header {
    position: fixed;
    top: 0 !important;
    left: 0;
    z-index: 11;
    width: 100%;
    animation: slide-down 0.7s;
    background-color: rgba(255,255,255);
    border-bottom: 1px solid #d3d2d2;
    box-shadow: 2px 2px 5px rgba(211, 210, 210, 0.4);
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}
.dash-header { 
    animation: slide-up 0.7s;
}
header {
   /* position: fixed;*/
    z-index: 9;
    width: 100%;
    background-color: #fcfbfb;
    border-bottom: 1px solid #d3d2d2;
    box-shadow: 2px 2px 5px rgba(211, 210, 210, 0.4);

}
.sticky-header #cssmenu > ul > li > a {
    color: #000;
}
#cssmenu,#cssmenu ul,#cssmenu ul li,#cssmenu ul li a,
#cssmenu #head-mobile{border:0;list-style:none; float:right;line-height:1;display:block;margin-top:4px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
#cssmenu:after,#cssmenu > ul:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
#cssmenu #head-mobile{display:none}
#cssmenu > ul > li{float:left;}
#cssmenu > ul > li > a {
    color: #000;
    font-size: 13px;
display: block;
padding:0px 20px;
line-height: 55px;
letter-spacing: .5px;
font-weight: 600;
text-transform: uppercase;
margin: 0px 0 0 0;
}
#cssmenu > ul > li:hover > a, #cssmenu ul li.active a {
    color: #faaf12;
}
#cssmenu > ul > li:hover,#cssmenu ul li.active:hover,#cssmenu ul li.active,#cssmenu ul li.has-sub.active:hover{;-webkit-transition:background .3s ease;-ms-transition:background .3s ease;transition:background .3s ease;}
#cssmenu > ul > li.has-sub > a{padding-right:30px}
.sticky-header #cssmenu > ul > li.has-sub > a::before {
    color: #000;
}
#cssmenu > ul > li.has-sub > a::before {
    position: absolute;
    top: 0;
    right: 14px;
    display: block;
    color: #222;
    content: '\f107' !important;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease;
    font-family: 'fontawesome';
    font-size: 18px;
}
#cssmenu > ul > li.has-sub > a::after {
    display: none;
}
#cssmenu ul ul{position:absolute;left:-9999px}
#cssmenu ul ul li{
    height:0;
    -webkit-transition:all .25s ease;
    -ms-transition:all .25s ease;
    background:#fff;
    transition:all .25s ease
}
#cssmenu ul ul li:hover{}
#cssmenu li:hover > ul{
    left:auto;
    top: 70px;
    border-left: 1px solid #ee3135;
    border-bottom: 2px solid #ee3135;
}
#cssmenu li:hover > ul > li{height:35px}
#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0 !important;
    border-left: 1px solid #ee3135;
    border-bottom: 1px solid #ee3135;
}
#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150,150,150,0.15);
  padding: 11px 15px;
  width: 190px;
  font-size: 14px;
  text-decoration: none;
  color: #555;
  font-weight: 400;
  margin: 0 0 0 5px;
}
.big-aesthetic-menu li a {
    padding: 11px 16px !important;
    width: 100% !important;
}
.big-aesthetic-menu {
    width: 240px;
}
.right-menu .fa.fa-circle {
    font-size: 7px;
    position: absolute;
    top: 15px;
    left: 5px;
}
.right-menu .fa.fa-caret-right {
    position: absolute;
    right: 10px;
}
.right-menu .fa.fa-caret-down {
    margin: 0 0 0 3px;
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
    color: #ee3135;
}
#cssmenu ul ul li:last-child > a,#cssmenu ul ul li.last-item > a{border-bottom:0}
#cssmenu ul ul li.has-sub > a::before {
    position: absolute;
    top: 13px;
    right: 12px;
    display: block;
    color: #555;
    content: '\f105' !important;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease;
    font-family: 'fontawesome';
    font-size: 14px;
}
#cssmenu ul ul li.has-sub:hover,#cssmenu ul li.has-sub ul li.has-sub ul li:hover{background:#fff;}
#cssmenu ul ul ul li.active a{border-left:1px solid #333}
#cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active> a{border-top:1px solid #333}

@media screen and (max-width:1000px){
.logo{position:absolute;top:0;left: 0;width:100%;height:46px;text-align:center;padding:10px 0 0 0 ;float:none}
.logo2{display:none}
nav{width:100%;}
#cssmenu{width:100%}
.right-menu li a {
    line-height: 45px !important;
}
#cssmenu ul {
    width: 100%;
    display: none;
    top: 0;
    z-index: 5000;
    height: auto;
}
#cssmenu ul li{width:100%;border-top:1px solid #444}
#cssmenu ul li:hover{background:#fff;}
#cssmenu ul ul li,#cssmenu li:hover > ul > li{height:auto}
#cssmenu ul li a,#cssmenu ul ul li a{width:100%;border-bottom:0}
#cssmenu > ul > li{float:left}
#cssmenu ul ul li a{padding-left:25px}
#cssmenu ul ul li{background:#fff!important;}
#cssmenu ul ul li:hover{background:#fff!important}
#cssmenu ul ul ul li a{padding-left:35px}
#cssmenu ul ul li a {
    color: #353535;
    background: none;
    line-height: 12px !important;
}
#cssmenu ul ul li:hover > a,#cssmenu ul ul li.active > a{color:#353535}
#cssmenu ul ul, #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    height: auto;
}
.right-menu > li:last-child {
    border-bottom: 1px solid #444 !important;
}
#cssmenu > ul > li.has-sub > a:after,#cssmenu > ul > li.has-sub > a:before,#cssmenu ul ul > li.has-sub > a:after,#cssmenu ul ul > li.has-sub > a:before{display:none}
#cssmenu #head-mobile{display:block;padding:23px;color:#ddd;font-size:12px;font-weight:700}
.button{width:55px;height:46px;position:absolute;right:0;top:20px;cursor:pointer;z-index: 12399994;}
.button::after {
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    border-top: 1px solid #faaf12;
    border-bottom: 2px solid #faaf12;
    content: '';
}
.button::before {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    top: 13px;
    right: 20px;
    display: block;
    height: 9px;
    width: 20px;
    background-color: #fff;
    content: '';
    border: 3px solid #faaf12;
    border-right: none;
    border-left: none;
}
.button.menu-opened::after {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    top: 22px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #faaf12;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 14px;
}
.button.menu-opened::before {
    top: 21px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: none;
    border-top: 2px solid #faaf12;
}
#cssmenu > ul > li.has-sub > a {
    padding-right: 30px;
}
#cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid;
    height: 37px;
    width: 46px;
    cursor: pointer;
}
#cssmenu .submenu-button.submenu-opened{background:#262626}
#cssmenu ul ul .submenu-button{height:34px;width:34px}
#cssmenu .submenu-button::after {
    position: absolute;
    top: 18px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #353535;
    content: '';
}
#cssmenu ul ul .submenu-button:after{top:15px;right:13px}
#cssmenu .submenu-button.submenu-opened:after{background:#fff}
#cssmenu .submenu-button::before {
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #353535;
    content: '';
}
#cssmenu ul ul .submenu-button:before{top:12px;right:16px}
#cssmenu .submenu-button.submenu-opened:before{display:none}
#cssmenu ul ul ul li.active a{border-left:none}
#cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active > a{border-top:none}
}
.right-menu.open {
    top: 36px;
}
header img {
    width: 100%;
    height: auto;
    margin: 0px 0 0px 0px;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn-primary {
  color: #faaf12;
  background-color: #000;
  border-color: #000;
}
.btn-primary a:hover {
  color: #000;
  background-color: #faaf12;
  border-color: #faaf12;
}
.btn-primary1 {
  color: #faaf12;
  background-color: #000;
  border:1px solid #000;
  font-size: 15px;
padding: 10px;
}
.btn-primary1:hover {
  color: #000;
  background-color: #faaf12;
  border:1px solid #000;
  font-size: 15px;
padding: 10px;
}
.btn-primary2 {
  color: #000;
  background-color: #faaf12;
  border:1px solid #faaf12;
  font-size: 15px;
padding: 10px;
}
.btn-primary2:hover {
  color: #faaf12;
  background-color: #000;
  border:1px solid #000;
  font-size: 15px;
padding: 10px;
}
.btn.focus, .btn:focus {
  color: #faaf12;
  text-decoration: none;
}
.btn:hover {
  color: #000;
  background-color: #faaf12;
  border-color: #faaf12;
  text-decoration: none;
}
.btn-primary:focus {
  color: #faaf12 !importat;
  background-color: #000;
  border-color: #000;
}
.menu{position: relative; margin-right: 1%;}
.btn-link{position: relative;}
.navbar-btn{
position: absolute;
right: 4%;
top: 17px;
}
.text-uppercase{text-transform: uppercase;}
.callus {
  color: #000;
background-color: #faaf12;
border-color: #faaf12;
border: none;
border-radius: 25px;
padding: 7px 15px 7px 47px;
margin: 5px 0 5px 20%;
text-align: left;
position: relative;
font-size: 15px !important;
font-weight: 600;
}
.callus a{color: #000}
.callus a:hover{color: #faaf12;}
.callus:hover {
  color: #faaf12;
  background-color: #000 !important;
  border-color: #000;
  border: none;

}
.callus.focus, .callus:focus {
  color: #faaf12;
  text-decoration: none;
}
.callus::before{height: 40px; width: 40px; float: left; position: absolute; left: 8px; top: 11px; 
    content:'';     background-image: url(../images/phone-call.png); background-repeat: no-repeat;}
.callus:hover::before{height: 40px; width: 40px; float: left; position: absolute; left: 8px; top: 11px; 
    content:'';     background-image: url(../images/phone-call1.png); background-repeat: no-repeat; 
}
.right-menu{
    text-align: right;
float: right;
margin-right: -10%;
}
.callus span{padding-left: 10px;}
/*==============================================banner-slider-sec============================*/
.banner-slider-sec{
   margin-top: 0px; 
   background-position:top center;
   background-size: cover;
   background-attachment: fixed;
   position: relative;
   background-image: url(../images/banner.png);
   background-repeat: no-repeat;
   width: 100%;
   height:650px ;

}

.slider-ttl {
    font-weight:500;
    margin: 0 0 20px;
    font-size:35px;
}
.banner-slider-sec .slider-txt {
   padding-top: 12%;
padding-left: 0%; width: 50%;
}
.banner-slider-sec .slider-txt h2 {
margin: 0 0 0px 0;
font-size: 40px;
font-weight: 600;
font-style: normal;
line-height: 50px;

}
.banner-slider-sec .slider-txt p {
    margin:20px 0 14px;
    color: #eee;
    font-size: 14px;
}

.slider-txt h4{font-size: 15px; font-weight: normal; margin-bottom: 40px; line-height: 25px;}
/*===============================================aboutus-sec=================================*/
.aboutin{
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 20px 0px;
    width: 100%;
    margin: 0px 0px;
}
.aboutright img{width: 100%; border-radius: 15px; position: relative; height: 100%;}
.serviceright img{width: 100%; border-radius: 15px; position: relative; height: 764px;}
.aboutin h2{font-weight: bold; font-size: 14px; text-transform: uppercase; margin: 0px 0 8px; padding: 0px;}
.aboutin p{line-height: 20px;}
.lft-img{float: left; width: 11%; }
.lft-img img{
    width:60px; height: 60px; float: left;border: 1px solid #faaf12; border-radius:50% ;
}
.rgt-txt{
    float: right;
width:70%;
margin: 0px;
padding:0px 0 0 0;
}
.servicesttl{padding-left: 12px;}
.servicesin .rgt-txt{
    float: left;
width:88%;
margin: 0px;
padding:8px 0 0 5%;
}
.rgt-txt .small-ttl{margin: 0px; padding: 0px; }
.aboutus-sec ul li {
    display: inline-block;
    width: 20.08%;
    margin: 0px 0 0 -4px;
}
.small-ttl {
    font-size:15px !important;
    letter-spacing: 1px;
    font-weight: bolder !important;
    position: relative;
    margin: 0 0 30px;
    text-transform: uppercase;
}
.main-ttl {
    font-size:25px;
    letter-spacing: 1px;
    font-weight: bolder;
    position: relative;
    margin:10px 0 10px;
    text-transform: uppercase;
}
.main-sec-ttl{
    font-size:25px;
    letter-spacing: 1px;
    font-weight: bolder;
    position: relative;
    margin: 0 0 30px;
    text-transform: uppercase;
}
.main-sec-ttl::after {
    bottom: -10px;
    right: 50%;
    width: 80px;
    height: 2px;
    background-color: #faaf12;
    position: absolute;
    content: "";
}
.main-sec-ttl::before {
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 2px;
    background-color: #000;
    position: absolute;
    content: "";
}
.main-sec-desc {
    color: #999;
    font-size: 13px;
    width: 60%;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 20px;
}
.main-sec-desc1 {
    color: #999;
    font-size: 13px;
    margin: 0;
    letter-spacing: 1px;
    line-height: 20px;
}
.box-ttl {
    font-size: 26px;
    font-weight: bold;
    color: #000;
}
.box-desc {
    color: #fff;
    letter-spacing: 1px;
    font-size: 13px;
    margin: 30px 0 0;
}
.about-box i {
    font-size: 50px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    position: relative;
    z-index: 9;
    color: #fff;
    border-radius: 50%;
    margin: 0 0 10px;
}
.about-box:hover i {
    color: #fff;
}
.about-box {
    height: 400px;
    padding: 40px 20px;
}
.about-box.top-margin50 {
    margin-top: 50px;
}

.promis{
    width: 33%;
background-color: #fff;
color: #222;
padding: 20px;
position: absolute;
right: 33px;
bottom: 18px;
z-index: 1;
border-radius: 15px;
}

.promis ul li{position: relative; padding: 0 0 0 10px;}
.promis ul li::before{
    content: '\f00c';
position: absolute;
left: -5px;
top: 0px;
font-size: 10px;
font-family: 'FontAwesome';
color: #faaf12;
}
.aboutus-sec .container{padding-right:15px;
padding-left: 0px !important;}
/*==================================================aboutus-info-sec================================*/
.main-sec-ttl1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 30px;   
}

.services-sec{
    width: 100%; margin-left:0%;
}
.servbox{
border: 1px solid #ccc;
border-radius: 20px;
padding: 20px 10px;
width: 23%;
margin: 0px 24px 0 0;  
min-height: 288px;
}
.servbox .small-ttl{margin: 0 0 11px}
.servbox h2{font-weight: bold; font-size: 16px; text-transform: uppercase; line-height: 28px;}
.servbox:last-child{margin-right: 0px;}
.servbox img{width: 100px; height: 100px;}
/*==============================================whyus-sec=============================*/
.whyus-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    padding:50px; margin: 0px 0 50px 0;
    background-image: url(../images/Home-page.png);
    position: relative;
}
.whyus-sec::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding:00px;
    margin: 0px;
    top: 0px;
    left: 0px;
}

.whyus-left p{font-size: 14px; letter-spacing: 1.3px;}
.whyus-left ul{
 margin: 25px 0 0 0; padding: 0px; color: #eee;
}
.whyus-left ul li{
    position: relative; margin: 0px; padding: 3px 0 0px 30px;
}
.whyus-left ul li h3{
margin-bottom: 5px; font-size: 20px; font-weight: normal;
font-style: normal;
}
.whyus-left ul li::before{
    position: absolute;
    content:'\f058';
    font-family: FontAwesome;
    font-size: 16px;
    color: #faaf12;
    left:0px ;
    top: 24px;
}
.whyus-rgt{
    background-color: #fff;
border-radius: 20px;
margin-right: 6%;
padding: 20px;
color: #000;
width: 28%;
float: right;
}
.box1{
    border-top: 1px solid #dedede; padding-top: 13px;
}
.btn-sub {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    padding: 3px 10px;
    font-weight: bold;
    background-color: #faaf12;
}
.btn-sub:hover {
    background-color: #fff;
}
.whyus-rgt .main-sec-ttl::before,.whyus-rgt .main-sec-ttl::after{display: none;}
.whyus-rgt .main-sec-ttl{margin: 0 0 11px}
.whyus-rgt p{margin-bottom: 10px;}
.whychooseus-sec img{width: 100px; height: 100px;}
.whychooseus-sec h4{font-weight: bold;}
.whychooseus-sec .small-ttl{margin: 0 0 15px}
.whychooseusin-sec{background-color: #222; color: #fff; padding:50px 20px; border-radius: 25px;}
/*=================================================contacttag-sec======================================*/
.contact-call{
    position: relative; margin: 0px; padding: 0px;
}

.contact-tag{
    background-color: #faaf12;
    color: #000;
    border-radius: 25px;
   
    margin: 0 auto;
    padding: 10px;
}
.contact-tag img{ margin-top: 0px; }
.contact-tag button{
    float: right !important;}
ul.breadcrumb li:nth-child(2)::before {
  
  display: none;
}

.breadcrumb {
  background-color: transparent !important; padding:0px !important;
}
ul.breadcrumb li {
  position: relative;
  padding-right: 30px !important;
  
}
ul.breadcrumb li a{
  
  color: #000 !important;
}
ul.breadcrumb li a:hover{
  
  color: #faaf12 !important;
}
ul.breadcrumb li:first-child::before {
  position: absolute;
  left: 57px !important;
  top: 0px;
  font-size: 14px;
  font-weight: bold;
  content: '\f101';
  font-family: 'FontAwesome';
  color: #faaf12;
}
ul.breadcrumb li:nth-child(2)::before {
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 14px;
  font-weight: bold;
  content: '\f101';
  font-family: 'FontAwesome';
  color: #000;
}
.channel ul.breadcrumb li:last-child::before {
  
  display: none; padding-right: 0px; padding-left: 0px;
}
.channel ul.breadcrumb li:nth-child(2)::before {
  
  display: block; color:#faaf12;
}
.channel .breadcrumb > li + li::before{padding: 0px}
.aboutpgin .main-sec-ttl::after, .aboutpgin .main-sec-ttl::before{display: none;}

.aboutpgin h3{line-height: 35px; margin-top: 0px}
.aboutus img{width: 100%; height: 370px; border-radius: 15px;}
/*=================================================footer======================================*/
footer {
    background-color: #222;
    padding: 80px 0px;
}

.foot-social-menu li a i {
    height: 30px;
    width: 30px;
    border-radius: 3px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
}
.fb a i {
    background-color: #3b5998;
}
.li a i {
    background-color: #007bb5;
}
.tw a i {
    background-color: #1da1f2;
}
.youtube a i {
    background-color: #25D366;
}
.fb a i:hover {
    background-color: transparent;
    color: #fff !important;
}
.li a i:hover {
    background-color: transparent;
    color:#fff !important;
}
.tw a i:hover {
    background-color: transparent;
    color: #fff !important;
}
.youtube a i:hover {
    background-color: transparent;
    color: #fff !important;
}
footer p i {
    margin: 0 8px 0 0;
}
.foot-social-menu li {
    margin: 0 8px;
}
footer ul li , .foot-social-menu li {
    display: inline-block;
}
footer ul .fb a:hover i {
    background-color: #3b5998;
}
footer ul .li a:hover i {
    background-color: #007bb5;
}
footer ul .tw a:hover i {
    background-color: #1da1f2;
}
footer ul .youtube a:hover i {
    background-color: #65bc54;
}
footer ul li a:hover i {
    color: #fff !important;
}
.foot-social-menu li a i {
    height: 30px;
    width: 30px;
    border-radius: 20px;
    line-height: 30px;
    font-size: 20px;
    background-color: #fff;
    color: #002e5b;
    text-align: center;
}
.foot-name {
    font-weight: bold;
    font-size: 16px;
}
footer p i {
    margin: 0 8px 0 0;
}
.foot-social-menu li {
    margin: 0 10px 0 0;
}
.team-sec img {
    width: 100%;
    height: 250px;
}
.team-box {
    width: 50%;
    margin: 0 auto;
}
.foot-desc span{float: left;
width: 25px;
height: 25px;}
.foot-desc i {
    text-align: center;
    font-family: 'FontAwesome';
    font-size: 20px;
}
.foot-desc {
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 0 0 0px;
}
.footer-line {
    margin: 20px 0 0;
    border-top: 1px solid #556766;
    padding: 20px 0 0;
}
ul.quick-links{
    position: relative; width: 100%;
}
ul.quick-links li{
    position: relative; color: #fff; padding-bottom:0px; letter-spacing: 1.1px; 
     padding-left:10px; width: 100%; float: left;
}
ul.quick-links li a{color: #fff;}
ul.quick-links li::before{
    content: '\f111';
position: absolute;
left: 0px;
top: 0px;
font-size: 5px;
font-family: 'FontAwesome';
color: #faaf12;
disaply: none;
}

.bor-left, .bor-left1{border-right: 1px solid #faaf12; min-height: 165px;}
.bor-left1{padding: 0 0 0 60px}
.foot-head{font-size:14px; font-weight: bold; }
.bor-left img{width: 50px; height: 50px;}

img.cta-headset{width: 110px; height: 110px; }


/*=======================================sticky-contact-us=======================================*/
/*.sticky-enquiry {
    position: fixed;
    right: 0;
    bottom: 8px;
    z-index: 999;
    text-align: center;
    cursor: pointer;
}*/
.sticky-enquiry{
    position:fixed;
    right:-8%;
    bottom:23%;
    transform:rotate(-90deg);
    color:#fff;
    padding:12px 25px;
    cursor:pointer;
    font-weight:bold;
    border-radius:8px 8px 0 0;
    z-index:2;


}
.sticky-enquiry a {
    font-size: 15px;
    color: #faaf12;
    background-color: #222;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1.3px;
    
}
#stickymodal .main-sec-ttl {
    margin: 0;
}
.modal-header h2{float: left; margin-top: 0px;}
.modal-header .close{margin-top: 0px;}
.modal-body form{padding: 20px 50px;}
.modal{background-color: #000;}
/*==========================================getintouch-sec=====================================*/
.getintouch-sec .media-ttl {
    font-weight: bold;
}
.getintouch-sec .media i {
    font-size: 22px;
    width: 30px;
}
.getintouch-sec .media-left {
    padding: 0 20px 0 0;
    text-align: center;
}
.getintouch-sec {
    padding: 50px 0 100px;
    background-size: cover;
    background-attachment: fixed;
}
.getintouch-sec::after {
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
}
/*=================================================counter-sec===================================*/
.counter-sec {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
   margin:50px 3% 0 2.5%;
    padding:50px 30px;
}
.counter-in{
    
}
.counter-sec .big-ttl {
    margin: 10px 0;
    font-size: 28px;
    font-weight: bold;
    position: relative;
}

.counter-sec .big-ttl::before {
    position: absolute;
    right:30%;
    top: 0px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'FontAwesome';
    content: '\f067';
    color: #fff;
}
.counter-name {
    font-weight: bold;
    margin: 0;
}
.pink-box {
    border: 4px solid #EC008C;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
}
.blue-box {
    border: 4px solid #00AEEF;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
}
.yellow-box {
    border: 4px solid #F5E706;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
}
.green-box {
    border: 4px solid #60C505;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
}


/*=================================================ourwork==================================*/
figure img {
    width: 250px;
    height: 220px;
    position: relative;
    margin: 0 20px;
}
.filter ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.foliobox {
    margin: 20px 0px;
}

.filter ul li a {
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 10px;
    letter-spacing: 2px;
    background-color: #fff;
}
.filter ul li a:hover , .filter ul li a.selected {
    background-color: #faaf12;
    color: #000;
}
#foliowrap {
    margin: 40px 0 0;
}

/*==========================left sectio=============================*/
.searchbox{
    width: 100%;
    float: left;
border: 1px solid #ddd;
padding:0px 20px 20px;
margin-bottom: 20px;
background-color: #fff;
position: relative;
}
.title{
    color: #333;
    font-size: 15px;
font-weight: 600;
margin-bottom: 13px;
}
   .progrid01leftbox1 {
  width: 100%;
  height: auto;
  float: left;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
}

.progrid01leftbox1 h3 {
  margin: 0px;
    margin-bottom: 0px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 13px;
}
.profiltlst {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
}

.profiltlst form {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  margin-bottom: 10px;
}
.profiltlst form input[type="text"] {
  width: 100%;
  height: 36px;
  float: left;
  outline: 0;
  position: relative;
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 14px;
  background-color: #fff;
}
.profiltlst form a {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 36px;
  text-align: center;
  padding-top: 9px;
  padding-right: 6px;
}
.profiltlst01 {
  width: 100%;
  height: auto;
  float: left;
  margin: 0px;
  padding: 0px;
  list-style: none;
  max-height: 200px;
  overflow: hidden;
    overflow-y: hidden;
  overflow-y: scroll;
}

.profiltlst01 li {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 4px;
}
.profiltlst01 li label {
  width: 100%;
  height: auto;
  float: left;
  font-size: 14px;
  font-weight: 400;
}
.profiltlst01 li label input[type="checkbox"] {
  vertical-align: text-top;
  margin-right: 5px;
}


.listprobx01 {
  border: 1px solid #ddd;
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.08);
  transition: transform .2s;
}
.listprobx01img {
  float: left;
  width: 16%;
  height: auto;
  margin-right: 2%;
}
.listprobx01img img {
  max-width: 100%;
  height: 87px;
  object-fit: contain;
}
.listprobx01txt01 {
  float: left;
  width: 26%;
  height: auto;
  margin-top: 7px;
  margin-right: 1%;
}
.listprobx01txt01 h3 {
  font-size: 16px;
  color: #3a3939;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 5px;
}
.listprobx01txt01 h4 {
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  margin-bottom: 9px;
  margin-top: 0px;
}
.listprobx01txt01 h4 span {
  min-width: 110px;
  float: left;
  color: #e32129;
}
.listprobx01txt02 {
  float: left;
  width: 40%;
  margin-bottom: 0;
  margin-top: 20px;
}
.listprobx01txt02 ul {
  width: 100%;
  height: auto;
  float: left;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.listprobx01txt02 ul li {
  float: left;
  width: 38%;
  margin-right: 7%;
  border-right: 1px solid rgba(177, 177, 177, 0.52);
  padding-right: 0;
}
.listprobx01txt02 ul li:nth-child(2) {
  border-right: 0px;
  margin-right: 0px;
  width: 55%;
}
.listprobx01txt03 {
  float: right;
  width: auto;
  padding-top: 29px;
  padding-right: 3px;
}

.listprobx01txt03 a {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  padding: 10px;
}
.effect {
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  font-size: 12px;
  cursor: pointer;
}
.effect.effect-viewcart::before {
  content: "\f06e";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 30px;
  background-color: rgba(227,33,41,0.5);
  border-radius: 0 50% 50% 0;
  transform: scale(0,1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.effect.effect-viewcart {
  transition: all 0.2s linear 0s;
  position: relative;
  background-color: #e32129;
}

.heading01 {
  margin: 0px;
  padding: 12px 23px;
  background-color: #e32129;
  position: relative;
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}




.pagination {
    text-align: center;
    margin-top: 2rem;
    margin-left: 20%;
}

.pagination a {
    color:#000;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #faaf12;
    border: 1px solid #000;
    margin: 0 5px;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #000;
    border: 1px solid #faaf12;
    color: white;
}

.pagination .active {
    background-color: #000;
    color: #fff;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.08);
  transition: transform .2s;
}
.card:hover {
  -ms-transform: scale(1.03);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    margin-top: 22px;
}



#page-numbers {
    margin-top: 20px;
    font-size: 16px;
}


/*================================process-sec=========================*/
.process-lgt{ border:1px solid #f1f1f1; border-radius: 15px; position: relative; 
    margin-bottom:20px ; padding: 10px; margin-right: 50px; float: left; min-height: 140px;
animation-duration: 0.2s;}
.process-rgt{ border:1px solid #f1f1f1; border-radius: 15px; position: relative; 
    margin-bottom:20px ; padding: 10px; margin-left: 50px; float: right; min-height: 140px;
animation-duration: 0.2s;}
.process-lgt::before{
    content: '\f111';
    right:-8px;
    top:40%;
    font-size: 15px;
    color: #faaf12;
    position: absolute;
     font-family: 'FontAwesome';
}
.process-lgt::after{
content: '';
right: -125px;
top: 48%;
position: absolute;
background-color: #faaf12;
height: 1px;
width: 25%;
    
}
.process-rgt::before{
content: '\f111';
left: -8px;
top: 39%;
font-size: 15px;
color: #faaf12;
position: absolute;
font-family: 'FontAwesome';
}     
.number{
background-color: #faaf12;
color: #000;
border-radius: 50px;
font-size: 20px;
padding: 5px 13px;
float: left;
width: 35px;
margin: 20px 14px 0 20px;
}
.process-lgt-img, .process-rgt-img{float: left;}
.process-lgt-img img, .process-rgt-img img{width: 80px; height: 80px; float: left;}
.process-txt{float: left; width:67%   }
.process-txt .small-ttl{margin: 9px 0 10px}
.blogbox{
border: 1px solid #ccc;
border-radius: 20px;
padding: 20px 10px;
width:22%;
margin: 0px 24px 0 0;  
min-height: 312px;
}
.blogbox:last-child{margin-right: 0px;}
.blogbox img{width: 100%;}
.blogbox h2 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 28px;
}



.ourwork-bg{
    background-image: url(../images/blog-bg.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center top;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 0%;
  right: 0%;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect */
.whatsapp-sticky:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #25D366;
 
}



.Amplife{margin-top: 16px;}



/* ================= Radio catalogue filters ================= */
.mobile-filter-toggle {
    display: none;
}
.filter-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    margin-bottom: 14px;
    color: #fff;
    background: #171717;
}
.filter-summary > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.filter-summary h3 {
    margin: 0;
    font-size: 16px;
}
.filter-summary span {
    color: #d7d7d7;
    font-size: 11px;
}
.filter-summary .clear-filter {
    color: #fff;
    font-size: 11px;
    text-decoration: underline;
}
.filter-group {
    float: none;
    overflow: hidden;
}
.filter-group h3 .fa {
    width: 20px;
    color: #e32129;
}
.filter-search {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.filter-search input {
    width: 100%;
    height: 38px;
    padding: 8px 36px 8px 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 13px;
}
.filter-search input:focus {
    border-color: #e32129;
    box-shadow: 0 0 0 2px rgba(227, 33, 41, 0.09);
}
.filter-search .fa {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #777;
}
.filter-group .profiltlst01 li label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 3px 4px;
    margin: 0;
    cursor: pointer;
}
.filter-group .profiltlst01 li label:hover {
    color: #e32129;
    background: #fafafa;
}
.filter-group .profiltlst01 li label input[type="checkbox"] {
    margin: 0;
}
.filter-group .profiltlst01 li label span {
    flex: 1;
}
.filter-group .profiltlst01 li label small {
    min-width: 22px;
    padding: 0 5px;
    color: #666;
    background: #f0f0f0;
    border-radius: 10px;
    text-align: center;
}
.apply-filter {
    width: 100%;
    margin: 0 0 20px;
    padding: 12px 14px;
    border: 0;
    color: #fff;
    background: #e32129;
    font-weight: 600;
    letter-spacing: .5px;
}
.apply-filter:hover,
.apply-filter:focus {
    background: #b9171e;
}
.result-heading .heading01 span {
    font-size: 15px;
    font-weight: 400;
}
.filter-note {
    margin: -8px 0 18px;
    color: #666;
}
.progrid01right .listprobx01 {
    margin-right: 0;
    margin-left: 0;
    padding: 14px 8px;
}
.no-results {
    padding: 60px 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
}
.no-results .fa {
    color: #e32129;
    font-size: 34px;
}
.no-results h3 {
    margin: 14px 0 5px;
}
.no-results a {
    display: inline-block;
    margin-top: 10px;
    color: #e32129;
    font-weight: 600;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
/*.pagination a {
    margin: 0;
    color: #e32129;
    border-color: #e32129;
}
.pagination a:hover,
.pagination a.active {
    color: #fff;
    background: #e32129;
}*/
.callback-alert {
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 18px;
}
.callback-alert-success {
    color: #245c2e;
    border-color: #b9ddc0;
    background: #eaf7ed;
}
.callback-alert-error {
    color: #8b1d24;
    border-color: #edbdc0;
    background: #fff0f1;
}
.callback-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
#request_callback_form textarea.form-control {
    min-height: 74px;
}
.callback-submit {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    background: #171717;
    font-weight: 600;
}
.callback-submit:hover,
.callback-submit:focus {
    background: #e32129;
}

@media (max-width: 991px) {
    .listprobx01txt01 {
        width: 42%;
    }
    .listprobx01txt02 {
        width: 35%;
    }
    .listprobx01txt03 {
        float: left;
        clear: both;
        padding: 12px 0 4px 18%;
    }
}

@media (max-width: 767px) {
    .common-sec {
        padding-top: 25px;
    }
    .right-side {
        margin-top: 25px;
    }
    .listprobx01img,
    .listprobx01txt01,
    .listprobx01txt02 {
        width: 100%;
        float: none;
        margin: 0;
    }
    .listprobx01img img {
        display: block;
        margin: 0 auto 10px;
    }
    .listprobx01txt01 h4 span {
        min-width: 100px;
    }
    .listprobx01txt02 {
        overflow: hidden;
        margin-top: 12px;
    }
    .listprobx01txt03 {
        float: none;
        padding: 16px 0 8px;
    }
}

.card-rate{color: red; }
.fmbg{
    background-image: url(../images/details-bg.jpg);
    background-repeat: no-repeat;
    background-color: #c5292d;
    color: #fff;
    padding:20px 0px;
    margin: 0px;
}
.fmbg .listprobx01txt02{width: 45%}
.fmbg .main-sec-ttl::after, .fmbg .main-sec-ttl::before,
.fminfo .main-sec-ttl::after, .fminfo .main-sec-ttl::before {
  display: none;
}
.fminfo{padding:50px 15px 0px;}
.showtime {
  border: 1px solid #ccc;
  width: 100%;
  margin: 0px;
}
.showtime td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
.showtime tr:nth-child(even) {
  background-color: #dddddd;
}
table.showtime  tr th {
  border: 1px solid #dddddd;
  background-color: #e32129;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
}
.fminfo h3, .irsdata h3{
    font-size: 18px !important;
letter-spacing: 1px;
font-weight: 600 !important;
position: relative;
margin: 20px 0 10px;
text-transform: uppercase;
}

.fminfo ul li{position: relative; padding-left: 30px;}
.fminfo ul li::before{
    content: '\f111';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 5px;
    left: 10px ;
    top: 0px;
    color: #676767;
}

.breadcrumbs-custom{text-align: center;}
