/* @font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato-Regular'), url(image/Lato-Regular.ttf) format('truetype');
} */
@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&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{ margin:0; padding:0; font-family: Lato, Arial, sans-serif; font-size: 15px; font-weight: normal; color: #222; line-height: 24px; background:#fff;}


*{ font-family: Lato !important;}

.fa{ font-family: fontawesome !important;}

.ft-sol{position: relative;}
.fa-angle-right:before {
    content: "\f105";
    color: #fff;
}
 .bg-1 {
      background-color: #2e2e38;
      color: #fff;
    }

    .service-card {
      background-color: #fff;
      color: #000;
      border-radius: 10px;
      text-align: center;
      transition:all 0.3s; 
      height: 100%;
      padding: 35px 25px 35px 20px;
    border-style: solid;
    border-width: 10px;
    border-color: #fff;
    border-radius: 10px 10px 10px 10px;
    }

    .service-card:hover {
      /* transform: translateY(-10px); */
      /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
      transform: scale(1.1);
      padding: 35px 25px;
    border-style: solid;
    border-width: 10px;
    border-color: #f6e51c;
    border-radius: 10px 10px 10px 10px;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 40px;
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #f6e51c;
    }
.service-card h5{ min-height: 60px;}
    .read-more { margin: 30px 0;
      margin-top: 15px;
      font-size: 0.875rem;
      color: #2e2e38;
      font-weight: 600;
    }
    .help-card{position: relative; overflow: auto;
    background-color: #fff;
    color: #000; border: 1px solid #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;}
  .help-card:hover{background-color: transparent;}
   .help-card .help-icon,.help-card h5,.help-card p{z-index: 1;position: relative; color: #000;}
  .help-card:hover .help-icon,.help-card:hover h5,.help-card:hover p{z-index: 1;position: relative; color: #fff;}
  .help-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: -101%;
    height: 100%;
    width: 100%;
    -webkit-transition: .6s;
    transition: all .6s ease;
    background-size: 101% 101%;
    left: 0;
    top: -100%;
}
.help-card:hover::before {
    background-color: transparent;
    background-image: linear-gradient(0deg, #2e2e38 0, #f6e51c 100%);
    z-index: 0;
    top: 0;
}
    /*services*/

  /*why us*/
   .why-section {
      padding: 60px 0;
    }

    .circle-wrapper {
      position: relative;
      width: 320px;
      height: 320px;
      margin: auto;
      display: flex;
    align-items: center;
    justify-content: center;
    }

    /* Background circular ring */
    .circle-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 2px dashed #ccc;
      border-radius: 50%;
      z-index: 0;
    }

    .circle-center-point {
      width: 90px;
      height: 90px;
      background-color: #2e2e38;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: bold;
      z-index: 1;
    }

    .orbit-item {
      position: absolute;
      top: 30%;
      left: 33%;
      width: 100px;
      height: 100px;
      background-color: #2e2e38;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle)));
      text-align: center;
      padding: 10px;
      z-index: 1;
    }

    .info-box {
      background-color: #2e2e38;
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px; text-align: center;
    }

    @media (max-width: 768px) {
      .circle-wrapper {
        width: 250px;
        height: 250px;
      }

      .circle-wrapper::before {
        border-width: 1px;
      }

      .orbit-item {
        transition: .5s;
        width: 80px;
        height: 80px;
        font-size: 12px;
        transform: rotate(var(--angle)) translate(115px) rotate(calc(-1 * var(--angle)));
      }

      .circle-center-point {
        width: 70px;
        height: 70px;
        font-size: 12px;
      }
    }

 .orbit-item:nth-child(1){
  --angle: 0deg;
  animation: fadeInUp 400ms;
}
.orbit-item:nth-child(2){--angle: 60deg;
  animation: fadeInUp 600ms;
}
.orbit-item:nth-child(3){--angle: 120deg;
  animation: fadeInUp 800ms;
}
.orbit-item:nth-child(4){--angle: 180deg;
  animation: fadeInUp 1000ms;
}
.orbit-item:nth-child(5){--angle: 240deg;
  animation: fadeInUp 1200ms;
}
.orbit-item:nth-child(6){--angle: 300deg;
  animation: fadeInUp 1400ms;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.why-section .hm-head:after{margin: 0 auto;  left: 0;  right: 0;}
.bg-1.pb-5 .hm-head:after{ margin: 0 auto;  left: 0;  right: 0; background-color: #f6e51c;}
.bg-1.pb-5 .hm-head{  color: #fff;}
 /*why us*/
a{ text-decoration:none;}

p{ font-size:15px; font-family: Lato, Arial, sans-serif; line-height:23px; text-align:justify; margin-bottom: 10px;}

ul li{ font-size:15px; font-family: Lato, Arial, sans-serif; line-height:23px; text-align:left;}

img{ max-width:100% !important}

/*header*/
header{ text-align: center; padding: 10px;}
header img{}

/*header*/

.banner-hm{}
.banner-hm .carousel-caption{ text-align:inherit; width:600px; right:10%; top: 30%; left: inherit;}
.banner-hm .carousel-caption h2{ font-size:40px; font-weight:bold; color:#fff; text-align:left;}
.banner-hm .carousel-caption p{ font-size:22px; color:#fff; text-align:left;}

.red-m{ margin-top:30px;}
.red-m a{ background:#2e2e38;  font-size:14px; color:#fff; border-radius:6px; padding:15px 25px; text-transform: uppercase;}
.red-m a:hover{ color:#fff;}

.hm-head { font-size: 40px; text-align:left; color: #2e2e38; font-weight: 700; margin-bottom: 30px; margin-top: 20px; position:relative;
}

.hm-head:after{ content:""; width:100px; height:3px; position:absolute; left:1%; background: #f6e51c;  top: -20px;}
.hm-head span { font-weight: 800; color: #1b83e8;}

.hm-abt{background-color:#f7f7f7;padding: 15px 10px;}

.hm-abt .red-m{ margin-top:30px;}

.aboutbox{ position:relative;}
.aboutbox .tp-year{ width:280px; position: absolute; left:-10px; top:-30px; background:#fff; font-size: 20px; text-align:left; color: #2e2e38; font-weight: 700; padding:30px; display: flex; border-radius:6px;}
.aboutbox .tp-year span{margin-top: 10px; font-size: 50px; font-weight: 900; text-align:left; margin-right:20px;}
.aboutbox img{ width:450px; margin-left:50px;}


/*bnr-btm-sec*/
.hm-abt .btm-bx{ position:relative; overflow:hidden; padding:20px; border-radius: 10px; margin-bottom:40px; border:1px #ddd solid;}

.hm-abt .btm-bx:hover{ background: #2e2e38;}
.hm-abt .btm-bx .icn{ position:relative; text-align:center;float: left; }
.hm-abt .btm-bx .icn .fa{ position:relative; width:100px; height:100px;  color:#f6e51c; font-size:50px; line-height:90px;}
.hm-abt .btm-bx .icn:before {content: ""; z-index: 0; position: absolute; left:10px; top:5px; height: 80px; width: 80px; padding: 0; transition: all .3s; background: #fff; border-radius: 50px; }
.modal-backdrop.show {  display: none;}
.hm-abt .btm-bx:hover .icn:before { background: #f6e51c; }
.hm-abt .btm-bx:hover .fa{ color: #fff;}
.hm-abt .btm-bx:hover h4{ color: #fff;}
.hm-abt .btm-bx:hover p{ color: #fff;}
.btm-bx-cont{ width: 80%; float: right;}

.home-serv{ background: #2e2e38; padding:50px 20px 150px; }
.home-serv .hm-head{ text-align:center; color:#fff;}
.home-serv .hm-head::after{ left:0; right:0; margin: 0 auto; background: #fff;}
.home-serv p{ text-align:center; color:#fff;}
.ser-bx{ padding:10px 10px;}
.ser-bx:hover{ border-radius:5px; background:#305a7f;}
.ser-bx h3{ text-align:left; color:#fff; font-size: 19px; font-weight: 700;}
.ser-bx p{ text-align:left;}
.ser-bx img{ margin-bottom:10px; border-radius: 10px 10px;}

.book-appointment{ background:#fff;/* margin-top:-130px;*/ position: relative; z-index:2; border-radius: 20px;}
.book-appointment img{ border-radius: 20px 0 0 20px;}
.book-appointment .hm-head{ color:#2e2e38; font-size:36px; text-align:left;}
.book-appointmen .hm-head::after{ left:0; right:0; margin: 0 auto; background: #f6e51c;}
.book-appointment .icons{ width:70px; height:70px; background: #eee; border-radius: 50px; padding:20px; float:left; margin-right:10px;}
.book-appointment .icons .fa{ color:#2e2e38; font-size:36px; font-weight: 700;}
.book-appointment h4{ text-align:left; color:#2e2e38; font-size: 25px; font-weight: 700;}
.book-appointment h4 span{ display:block; font-size:16px; color:#888;}

.meet-expert{ margin-top:50px;}
.meet-expert .hm-head{ color:#2e2e38; font-size:36px; text-align:center;}
.meet-expert .hm-head::after{ left:0; right:0; margin: 0 auto; background: #f6e51c;}
.meet-expert p{ text-align:center;}
.meet-bx{ position:relative; background-color: #2e2e38; padding-bottom: 60px; padding: 40px;}
.meet-bx img{  min-height: 150px; border-radius: 50%; border:3px solid #fff;  margin-bottom: 50px;}
.name-bx{ width:90%; left:5%; position: absolute; background: #fff; bottom:-30px; z-index:99; padding:10px; text-align:center; border-radius: 16px;  }
.name-bx h4{ font-size:17px; color:#000; text-align:center; font-weight: 700;}
.name-bx h4 span{ display:block; font-size:14px; color:#888;}
.name-bx i{background: #2e2e38; padding:10px; line-height:10px; width:30px; height:30px; border-radius:100%;}
.name-bx .fa{ color:#fff; font-size:17px; font-weight: 400;}

.frequently-asked{ background:#f7f7f7; padding:50px 20px;}
.frequently-asked .accordion-item{ margin-bottom:15px;}


/*------------------- Customers review------------------*/

.customers-review{ background:#f7f7f7; padding:30px 20px;}
.customers-review h5{ font-size:17px; font-weight: 400; color:#364a68; text-align:center;}
.feedback-bx{width:100%; background:#fff; padding:20px; border-radius:8px; margin-top:20px; margin-bottom:30px;}
.feed-icon{ float:left; margin-right:20px;}

.feed-icon img{ width:70px; border-radius:50%; border:1px #ccc solid;}
.feed-text{ /* display:flex; */font-size:15px; font-weight: 400; color:#666; text-align:left; line-height:20px;}
.feed-text b{ font-weight: 600;}

.blue-bg{ width:110%; background:#2e2e38 !important; position:relative; left:-10%;}
.blue-bg .feed-text{ color:#fff;}


.testimonial-inner .feed-icon{ margin-bottom:70px;}
.testimonial-inner .feedback-bx{ min-height:180px;}


.progress {
  width: 150px;
  height: 150px !important;
  float: left; 
  line-height: 150px;
  background: none;
  margin: 20px;
  box-shadow: none;
  position: relative;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
  animation: loading-1 1.8s linear forwards;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}
.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #eee;
  font-size: 30px;
  color: #f05550;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}

.progress.blue .progress-bar {
  border-color: #364a68;
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}



.progress.orange .progress-bar {
  border-color: #364a68;
}
.progress.orange .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards 1.8s;
}

/*
.progress.yellow .progress-left .progress-bar {
  animation: none;
}*/

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}


@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(230deg);
    transform: rotate(230deg);
  }
}




/*------------------- customers-review End------------------*/


/*footer*/	

	
	
/*footer*/

/*--------home-clients-----------*/

.home-clients{ }
.home-clients h2{font-size:30px; font-weight:bold; color:#2e2e38; text-align:center;}
.home-clients .carousel-indicators{ bottom: -70px;}
.home-clients .carousel-indicators [data-bs-target]{ background-color: #f05550;}
.home-clients .bg-transparent{ background-color: #ccc !important; height: 50px; top: 40%;}
.home-clients .card{ border:0;}


/*--------home-clients-----------*/

.about-inner{ background:#eee; padding:40px 20px; clear:both; overflow:hidden;}

.abt-inbox{ background-color: #364a68; padding: 40px 20px; border-radius: 8px; text-align:center;  min-height:360px;}
.abt-inbox h3{ color: #fff; font-weight: 600; font-size:24px; }
.abt-inbox p{ color: #fff; font-weight: 400; text-align:center;}
.abt-inbox-bg{ background-color: #f05550 !important;}

.info-box-icon{ margin: 0 0 25px; height: 90px; width: 90px; box-shadow: 0px 0px 15px 0px rgba(0,0,0,.05); transform: rotate(0deg); background-color: #fff; border-radius: 100%; display: inline-block;}

.info-box-icon .fa{ color: #000; font-weight: 600; font-size:40px; line-height: 90px;}

.team-work p{ font-size:15px; color: #333; font-weight: 600; text-align:center;}

.head-tm-4{ font-size:28px; color: #f05550; font-weight: 700; text-align:center;}


.abt-bnr-tp{ margin-top:0; position:relative; margin-bottom:0;}
.abt-bnr-tp .tp-img { position: relative; padding:0; height:350px; width:100%;}
.abt-bnr-tp .tp-img img{ height:100%; width:100%;}
.abt-bnr-tp .innr-pg{  position: absolute;  color: #fff; top: 30%; z-index: 9; left:0; right:0; padding:20px; margin:0 auto;}

.abt-bnr-tp .innr-pg h2{ color: #fff; font-weight: 600; font-size: 45px; text-transform: uppercase; text-align: center;}


.whatsnew{ text-align: center;}
.whatsnew a{width: 33%;display: inline-block;background: #2e2e38;color: #fff;text-align: center;/* font-weight: 600; */padding: 12px 14px;font-size: 16px;margin: 30px 0 0 0;}
.whatsnew a:hover{ background: #f05550;}
.whatsnew a:first-child{border-radius:6px 0 0 6px;margin-right:-2px;}
.whatsnew a:last-child{ border-radius:0 6px 6px 0; margin-left:-2px;}


.cont-page{}
.contus-bx{width:100%; background:#fff; padding:20px; border-radius:6px; margin-top:20px; margin-bottom:30px; border:1px #eee solid;}
.cont-icon{ float:left; margin-right:20px;  border-radius:50px; padding:10px;}
.cont-icon i{ width:50px; height:50px; line-height:50px; text-align:center;}
.cont-icon .fa{ color:#666; font-size:30px;}
.cont-text{ font-size:15px; font-weight: 400; color:#333; text-align:left; line-height:22px;}
.cont-text h4{ font-size:20px; font-weight: 600; color:#222;}

.service-inner{}
.headserv-left-bdr1{ font-size:30px; color: #f05550; font-weight: 700; text-align:left; border-left-width:10px; border-left-style: double; border-left-color: #f05550; padding-left:10px;}

.service-inner h3{ font-size:17px; font-weight: 600; color:#222; text-align:left;}
.service-inner ul{ padding-left:15px;}
.service-inner ul li{ font-size:15px; font-weight: 400; color:#444; text-align:left; line-height:22px;}

.box-grey{ background:#2e2e38; padding:20px; text-align:right; position:relative;}
.box-orange{ background:#f05550; padding:20px; text-align:right; position:relative;}
.box-grey a, .box-orange a{ color:#fff; border:1px #ccc solid; padding:5px 10px; border-radius:4px; position:absolute; bottom:10px; right:10px;}

.box-grey h3, .box-orange h3{color:#fff;}
.box-grey p, .box-orange p{color:#fff;}
.box-grey ul li, .box-orange ul li{color:#fff;}


.clients-inner{}
.clients-inner .card-inn{ border:1px #eee solid; margin-bottom:10px; margin-top:15px; text-align:center; padding:20px; border-radius:10px;}
.clients-inner .card-inn h4{ font-size: 20px; text-align:center; font-weight:700; margin-top:10px;}

.otherpagecss #RadDockZone1.container{max-width: 100%;}
.otherpagecss #RadDockZone1.container #HomepagecontentControl_C table{margin-top:0 !important;}
.testimonial-inner{}
.testimonial-inner .blue-bg{ width:100%; left: inherit;}

.team-inner{ background:#2e2e38; padding:20px;}
.box-white{margin-bottom: 100px;background:#fff;text-align:center;padding:20px;margin-top:50px;border-radius:16px;}
.box-white h3{ font-size: 20px; text-align:center; font-weight:700;}
.box-white h4{ font-size: 17px; text-align:center;}
.box-white p{ text-align:center;}
.box-white img{ border-radius:50px; margin-top:-120px; margin-bottom:20px; border:7px #eee solid;background: #fff;}

.box-white a{ color:#222;}

.team-inner1{ background:#fff; padding:20px;}
.team-inner1 .box-white{ background:#f7f7f7; margin-top:10px; border-radius:20px;}
.team-inner1 .box-white img{ margin-top:0; border-radius:10px; border:3px #eee solid;}
/*tm-bx*/
.tm-bx-cont ul, .tm-bx-cont p{ display: none;}
.modal .tm-bx-cont ul, .modal .tm-bx-cont p{display: block;}
.modal .modal-body{background-color:#fefefe;}
.modal.show{background: rgba(0, 0, 0, .85); top: 0px; }
.modal.show img{padding: 20px; padding-top: 0;}
.modal.show .tm-bx-cont{padding-top: 20px;text-align: justify;}
.modal.show .tm-bx-cont h4{font-size: 22px;line-height: 30px;}
.modal.show .tm-bx-cont h4 span{font-size: 18px; display: block; color: #6db4b9;}
.tm-bx h4{font-size: 18px; line-height: 30px; color: #000; text-align: center;}
.tm-bx h4 span{display: block; font-size: 16px;  line-height: 25px; color: #555;}
.btn-close{position: absolute; right: 10px; z-index: 9; opacity: 1;top: 30px;}
.otherpagecss #RadDockZone1.container { z-index: 999 !important; position: relative;}
.otherpagecss #RadDockZone2{ z-index: 9999 !important;}
/*tm-bx*/
.team-inner .hm-head:after{margin: 0 auto; left: 0; right: 0;}
/*contact-form*/
.contact-form{}
.contact-form .form-control {
    font-family: Lato !important;
	margin-top: 5px;
    margin-bottom: 15px;
	border-radius: 4px;
	 border: solid 1px #eee;	 
}

.btn-1{ cursor: pointer; font-size: 16px; color: #fff; background: #f05550; padding: 10px 30px; line-height: 23px; border: 1px solid #0e3b84; border-radius: 6px;}
 

/* Footer
================================================== */
/*- Footer common */

footer{ }
footer p{ color: #fff;}
footer ul li{ color: #fff;}

footer .footer-main{ padding: 80px 0 60px; background-color: #2e2e38;}

.list-unstyled li a{ color: #000;}

footer .widget-title{
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 30px;
  text-transform: uppercase;
  color: #fff;
}

/* Links */

.footer-widget ul.list-arrow{  padding-left:10px;}
.footer-widget ul.list-arrow li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 0;
  list-style:none;
}
.footer-widget ul.list-arrow li i{ margin-right:10px;}

.footer-widget ul.list-arrow li a,
.footer-widget ul.list-arrow li:before {
  color: #fff;
}

.footer-widget ul.list-arrow li:hover a,
.footer-widget ul.list-arrow li:hover {
  color: #f05550;
}

.copyright-info{ font-size: 15px; color: #fff;}
.copyright-info a{  color: #fff;}


/*-- Copyright --*/
.copyright {
  background: #000;
  color: #fff;
  padding: 25px 0 15px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 14px;
}

.footer-menu ul li {
  display: inline-block;
  line-height: 12px;
  padding-left: 15px;
}

.footer-menu ul.nav li a {
  background: none;
  color: #fff;
  padding: 0;
}

.footer-menu ul li a:hover {
  color: #fff;
}


.top{
    position: fixed;
    right: 10px;
    bottom: 30px;
    text-align: center;
    color: #fff;
    background: #000;
    padding: 10px 10px;
    z-index: 9;
    border-radius: 50%;
    border: 2px solid #ffb600;
    cursor: pointer;
    opacity: 0;
    transition: ease-in 0.5s;
}

.top.scll-top {
    opacity: 1;
    transition: ease-in 0.5s;
    bottom: 50px;
}

.top .fa {
    display: block !important;
}



@media(max-width:1000px){

}

@media(max-width:991px){
    

}

@media(max-width:769px){

}

@media(max-width:767px){
    .box-white {height: auto;}

.banner-hm .carousel-caption h2{ font-size: 22px !important;}	

.hm-head{ font-size: 30px !important;}
.btm-bx-cont{ float: inherit !important;}
.book-appointment{ padding: 15px !important;}
.book-appointment .hm-head{ font-size: 22px !important;}

.meet-expert .mb-3{ margin-bottom: 3rem !important;}
.meet-bx{ left: 10% !important;}
.red-m{ margin-bottom: 30px; margin-top: 10px;}
.name-bx{ width: 300px; left: 8% !important;}
.progress{ float: inherit !important; margin: 20px auto !important;}
	
.banner-hm .carousel-caption p{ margin-bottom: 30px;}	
.aboutbox{ top: 50px;}
.ser-bx{ margin-bottom: 30px;}




}
	
@media(max-width:736px){

}
	
@media(max-width:667px){
	
}
	
@media(max-width:568px){
.banner-hm .carousel-caption{ width: 100%; right: 0; left: 20px; top: 10% !important;}	
.banner-hm .carousel-caption h2{ font-size: 16px !important;}
.home-clients .col-sm-3{ width:24% !important;}	
.abt-inbox{ margin-bottom: 20px;}
.box-white{ margin-top: 0; margin-bottom: 20px;}
.box-white img{ margin-top: 0;}
.team-inner .py-5{ padding-top: 0 !important; padding-bottom: 0 !important;}
}
	

footer ul.socialmedia{list-style:none; margin:0; padding:0;}
footer ul.socialmedia li {  display: inline-block;  padding: 4px; float: left;}
footer ul.socialmedia li a {
    /* padding: 10px; */
    line-height: 40px;
    width: 40px;
    height: 40px;
    background:  #f6e51c;
    color: #000;
    border-radius: 100%;
    float: left;
    text-align: center;
    transition: all 300ms ease-in-out;
}
footer ul.socialmedia li a:hover {
    background: #364a68;
    color: #fff;
    transition: all 300ms ease-in-out;
}

 .callus {
    width: 100%;
    margin: 15px 0 0 0;
    text-align: right;
    position: absolute;
    top: -34px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 99999;
  }  
 

  .callus .callusL {
    width: 38px;
    height: 38px;
    font-size: 11px;
    border-radius: 100%;
    text-align: center;
    line-height: 38px;
    display: inline-block;
    float: right;
    background: #eb1d39;
    color: #fff;
    margin: 0 12px 0 0;
    -webkit-box-shadow: 0px 0px 0px 7px #dc3545;
    -moz-box-shadow: 0px 0px 0px 7px rgba(232, 154, 17, 0.25);
    box-shadow: 0px 0px 0px 7px #dc354536;
    -webkit-animation: tada 1.25s infinite alternate-reverse;
    -moz-animation: tada 1.25s infinite alternate-reverse;
    -ms-animation: tada 1.25s infinite alternate-reverse;
    animation: tada 1.25s infinite alternate-reverse;
  }

.inner-icon-ul a { color: #181818 !important;}


.whatsapp_btn {
    position: absolute;
    top: -90px;
    right: 40px;
    width: 45px;
    height: 45px;
    z-index: 9999;
  }
  .whatsapp_btn .icon_logo {
    position: relative;
    z-index: 100;
    padding: 5px;
  }

  .whatsapp_btn .icon_logo > a > img {
    width: 100%;
  }

  .whatsapp_btn .circle_waves {
    border-radius: 50%;
    background-color: #3cc04e;
    width: 45px;
    height: 45px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
  }

  @keyframes waves {
    from {
      transform: scale(0.55, 0.55);
      opacity: 0.6;
    }
    to {
      transform: scale(1.8, 1.8);
      opacity: 0;
    }
  }