/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
table,
td,
th {
  border: 1px solid #ddd;
  text-align: left;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 15px;
}
@media screen and (orientation: landscape) {
  .carousel img {
    height: 100vh;
    width: 100%;
  }
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}

.content-homepgae .fst-italic {
  text-align: justify;
}
.content-homepgae p {
  text-align: justify;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #005ca1;
  height: 40px;
  font-size: 12px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  text-transform: uppercase;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #106eea;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #106eea;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.logo_navbar a img {
  width: 60%;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.heading_bottom_line {
  width: 100px;
  height: 3px;
  background-color: #106eea;
  margin: auto;
  margin-top: 20px;
}
.hero_heading_content h1 {
  font-size: 27px;
  font-family: "Poppins", sans-serif;
}
.hero_heading_content h2 {
  font-size: 45px;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.hero_heading_content .hero_btn {
  margin-top: 30px;
}
.hero_heading_content .hero_btn:hover {
  background-color: #106eea !important;
  color: #fff;
}
#hero11 {
  width: 100%;
  height: 75vh;
  background: url("../images/roller-blinds-11.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero1 {
  width: 100%;
  height: 75vh;
  background: url("../images/wooden-blinds.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero2 {
  width: 100%;
  height: 75vh;
  background: url("../images/triple.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero3 {
  width: 100%;
  height: 75vh;
  background: url("../images/combi-1.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero4 {
  width: 100%;
  height: 75vh;
  background: url("../images/rolller.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero11:before {
  content: "";
  background: rgba(254, 254, 254, 0.14);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero11 .container {
  position: relative;
  text-align: center;
}

#hero1:before {
  content: "";
  background: rgba(254, 254, 254, 0.14);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero1 .container {
  position: relative;
  text-align: center;
}

#hero2:before {
  content: "";
  background: rgba(254, 254, 254, 0.14);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero2 .container {
  position: relative;
  text-align: center;
}
#hero3:before {
  content: "";
  background: rgba(254, 254, 254, 0.14);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero3 .container {
  position: relative;
  text-align: center;
}
#hero4:before {
  content: "";
  background: rgba(254, 254, 254, 0.14);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero4 .container {
  position: relative;
  text-align: center;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #005ca1;
  font-family: "Poppins", sans-serif;
  text-align: left;
  text-transform: uppercase;
}

.hero h1 span {
  color: #da251c;
}

.hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #005ca1;
}

.hero .btn-get-started:hover {
  background: #247cf0;
}

/* .hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
} */

.hero .btn-watch-video:hover {
  color: #106eea;
}

.hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 0vh;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.top_bottom_gap {
  padding: 0px 0px 50px !important;
}
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #005ca1;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.section-title h3 span {
  color: #da251c;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #005ca1;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #005ca1;
  transition: all 0.3s ease-in-out;
}
.install_a {
  text-align: center;
  margin-top: 65px;
}
.install_a a {
  font-family: "Manrope", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #00437a;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  padding: 20px 25px 20px 25px;
}
.install_a1 {
  margin-top: 15px;
}
.install_a1 a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #00437a;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  padding: 15px 25px 15px 25px;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

.about .content ul {
  list-style: none;
  margin: 0px;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
}

.about .content ul li:first-child {
  margin-top: 10 px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #005ca1;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #005ca1;
  font-weight: 600;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #005ca1;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 60px 0px 40px;
  text-align: center;
}

.clients img {
  /*max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;*/

  max-width: 85%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  border: 1px solid #106eea;
  padding: 17px;
  margin-top: 10px;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  background-color: #f6f9fe;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
/*-----------------portfolio------------------*/
.box {
  font-family: "Raleway", sans-serif;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.box:before {
  content: "";
  background: #005ca1;
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  top: 0;
  transition: all 0.5s ease 0s;
}
.box:hover:before {
  left: 0;
  right: 0;
}
.box img {
  width: 100%;
  height: auto;
  transition: 0.5s ease 0s;
}
.box:hover img {
  opacity: 0.3;
}
.box-content {
  color: #fff;
  background: #005ca1;
  width: 100%;
  padding: 12px 12px 11px;
  position: absolute;
  bottom: 10px;
  left: 0;
  transition: all 0.5s ease 0s;
}
.box:hover .box-content {
  color: #005ca1;
  background: rgba(255, 255, 255, 0.9);
}
.box .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 3px;
}
.box .post {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: block;
}
.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.box:hover .icon {
  opacity: 1;
}
.box .icon li {
  margin: 0 3px;
  display: inline-block;
}
.box .icon li a {
  color: #005ca1;
  background: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  height: 35px;
  width: 35px;
  display: block;
  transition: all 0.3s ease 0s;
}
.box .icon li a:hover {
  color: #005ca1;
  background: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 12px #005ca1;
}
.box_top {
  margin-top: 40px;
}
@media only screen and (max-width: 990px) {
  .box {
    margin: 0 0 30px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  /* border-bottom: 1px solid #d4e5fc; */
  margin-bottom: 20px;
  /* padding-bottom: 20px; */
  border: 1px solid #e3e3e3ed;

  padding: 10px 0px;
  background-color: #fff;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 10px;
  color: #da251c;
}
/* position: absolute;
  left: 0;
  top: -2px; */
.margin_left_text {
  padding: 15px 0px 0px 35px !important;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #005ca1;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
  background-color: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background-color: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-contact a img {
  width: 70%;
  padding-bottom: 22px;
}
#footer {
  background: #fff;
  /*    padding: 0 0 15px 0;*/
  color: #444444;
  font-size: 14px;
  background: #d9e7f1;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #cacbcc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #323131;
  text-align: justify;
  margin-top: 40px;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #323131;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}
#footer .footer-top h4:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #323131;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  margin-left: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}
.footer-links p strong {
  color: #000;
  line-height: 30px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.footer-links .address-widget > .list_addressa1 {
  padding: 0px 0px 5px 35px !important;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.footer-links .address-widget li i {
  color: #bb0b0b;
  position: absolute;
  left: 0px;
}
.footer-links .address-widget li .desc {
  color: #323131;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #323131;
  font-size: 15px;
  /* line-height: 1; */
  padding-top: 4px;
}

#footer .footer-top .footer-links ul li {
  padding: 3px 0;
  /*display: flex;
  align-items: center;*/
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #323131;
  /*transition: 0.3s;
  display: inline-block;
  line-height: 1;*/
}
#footer .footer-top .footer-links ul .footer_number {
  color: #323131;
  /*transition: 0.3s;
  display: inline-block;
  line-height: 1;*/
  line-height: 10px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #4c4d4f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  /*float: left;*/
  padding: 20px 0px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.hero_bgcolor {
  text-align: center;
  padding: 150px 0px;
}
.section1 {
  overflow: hidden;
}
.copy_right {
  background-color: #4c4d4f;
  padding: 15px 0px;
}
.copyright {
  text-align: center;
  color: #fff;
}
.social_mediacontact span a {
  border-radius: 50px 50px 50px 50px;
  background-color: #ffffff;
  width: 65px;
  height: 65px;
  border: 2px dotted #000;
  /* padding: 8px 10px; */
  align-items: center;
  text-align: center;
  margin: 0px;
  display: inline-block;
  align-items: center;
  display: inline-grid;
}
.social_mediacontact span a i {
  font-size: 40px;
  color: #005ca1;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

@media (max-width: 768px) {
  .hero_heading_content h2 {
    font-size: 19px;
    margin-top: 2px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  .social_mediacontact span a {
    width: 50px;
    height: 50px;
  }
  .social_mediacontact span a i {
    font-size: 25px;
    color: #005ca1;
  }
  .hero_bgcolor {
    text-align: center;
    padding: 100px 0px;
  }
}

.card_body_jhonson {
  padding: 20px 0px 10px;
}
.card_body_jhonson a {
  padding: 13px 39px;
  display: inline-block;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to right, #015ca3 0, #2680c7 100%);
  text-align: center;
  margin: auto;
  display: table;
}
.card_service {
  /*  margin: 0px 8px;*/
  background-color: #fff;
  padding: 15px 15px 15px 15px;
  /* border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
  box-shadow: 1px 2px 4px #ccc;
}
.card_service img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  width: 100%;
}
.card_body_jhonson h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 23px;
  text-align: center;
}
/*.card_body {
    --space: 10px;
    display: grid;
    align-content: center;
    margin-top: 20px;
    font-weight: 300;
    width: 100%;
    font-family: "Corben", system-ui, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
}*/
.card_body p {
  font-weight: 400;
  color: #8f8d8d;
  font-size: 16px;
}
.card_body a {
  font-size: 15px;
  font-weight: 600;
}
.card_service_top {
  margin-top: 30px;
}

.testimonial {
  text-align: center;
  padding: 85px 50px 45px 70px;
  margin: 100px 15px 35px;
  background: #eaeaea;
  border-radius: 8px;
  position: relative;
}
.testimonial .pic {
  width: 120px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  margin: 0 auto;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}
.testimonial .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.testimonial .description {
  font-size: 15px;
  color: #757575;
  line-height: 27px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial .description:before {
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 32px;
  color: #0395d8;
  position: absolute;
  top: -15px;
  left: -35px;
}
.testimonial .description:after {
  content: "\f10e";
  font-family: "FontAwesome";
  font-size: 32px;
  color: #0395d8;
  position: absolute;
  bottom: -42px;
  right: -20px;
}
.testimonial .testimonial-profile {
  position: relative;
  margin: 20px 0 10px 0;
}
.testimonial .testimonial-profile:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #77a9dd;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
.testimonial .title {
  display: inline-block;
  font-size: 18px;
  color: #0395d8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.testimonial .post {
  display: inline-block;
  font-size: 15px;
  color: #757575;
  text-transform: capitalize;
}

.arix_review {
  background-color: #f7f7f7;
  padding: 50px 0px;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 45px !important;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*-----------------gallery-popup---------------*/
.section_gallery {
  padding: 60px 0px 0px;
}
.container__img-holder {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-left: 16px;
  cursor: pointer;
  padding: 15px 15px 15px 15px;
    box-shadow: 1px 2px 4px #ccc;
    border: 1px solid #5f98c3;
}
.container__img-holder:hover img{
  -webkit-transform: scale(1.3);
  transform: scale(.9);
}

.container .container__img-holder:nth-child(3n + 1) {
  margin-left: 0;
}

.container__img-holder img {
  width: 100%;
  /*height: 220px;
  display: block;*/
}

/* Popup Styling */
.img-popup {
  position: fixed;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 9999;
}

.img-popup img {
  max-width: 700px;
  width: 100%;
  opacity: 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  box-shadow: 1px 2px 4px #989595;
    padding: 15px 15px 15px 15px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #2c6cc9;
}

.close-btn {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close-btn .bar {
  height: 4px;
  background: #fff;
}

.close-btn .bar:nth-child(1) {
  transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.opened {
  display: flex;
}

.opened img {
  animation: animatepopup 1s ease-in-out 0.8s;
  -webkit-animation: animatepopup 0.3s ease-in-out forwards;
}

@keyframes animatepopup {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
/*-----------------gallery-popup---------------*/

/*-----------------About-us---------------*/

.about_innerpage_heading {
  background-image: url(../images/rb-pattern-group.jpg);
  position: relative;
  padding: 100px 0px 80px;
  height: 500p;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-title h1 {
  position: relative;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.page-title h1 {
  position: relative;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.page-title h1:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 80px;
  height: 4px;
  background-color: #005ca1;
}

.about-us-page{
  text-align: justify;
  font-size: 13px;

}

  
.about-us-page ul li{
  list-style: none;
}
.about-us-page ul li i{
  font-size: 9px;
  padding-right: 6px;
}

.about-us-page h2 {
  font-size: 35px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
  color: #000;
}
.about-us-page h3 {
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  padding: 0px 0px;
  line-height: 44px;
}
.about-us-page1 h3 {
  color: #565252;
  text-transform: uppercase;

  font-weight: 400;
  font-size: 16px;
  padding: 0px 0px;
  line-height: 44px;
}
.about-us-page1 h2 {
  font-size: 35px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
  color: #fff;
}
.about-us-page1 p {
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
  color: #565252;
  text-align: justify;
  font-size: 13px;
}
.about_iconss {
  padding: 60px 0px 30px;
}
.icon_about_bgcolor i {
  background-color: #005ca1;
  padding: 23px;
  color: #ffff;
  border-radius: 50%;
  font-size: 49px;
}
.icon_about_bgcolor {
  text-align: center;
  border: 1px solid #005ca1;
  padding: 7px 10px;
}
.icon_about_bgcolor p {
  margin: 0px;
}
.icon_about_bgcolor h2 {
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  padding-top: 20px;
}
.page-title .page-breadcrumb {
  position: relative;
  margin-top: 25px;
}
.page-title .page-breadcrumb li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.page-title .page-breadcrumb li a {
  color: #fff !important;
  font-weight: 500;
}
.about_second {
  background-image: url(../images/dealership/benefits.jpg);
}
.img_about_rp img {
  width: 100%;
}


/*----------------------*/

.about_inner_image{
  width: 100%;
    padding-top: 60px;
    padding-bottom: 0px;
    border-radius: 5px;
    padding: 15px 15px 15px 15px;
    box-shadow: 1px 2px 4px #ccc;
    margin-top: 30px;
    border: 1px solid #005ca1;
}

.about_inner_image:hover img{
  -webkit-transform: scale(1.3);
  transform: scale(1.1);
  cursor: pointer;
}
.about_inner_image h1{
      font-size: 16px;
    text-align: center;
    padding: 20px 0px 00px 0px;
    background: #fff;
    color: #005ca1;
    font-weight: 600;
}














/*-----------------Contact---------------*/
.let_talk {
  background-color: #fff;
  border-radius: 0px 0px 0px 0px;
  box-shadow: 1px 2px 4px #ccc;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 70px 54px 70px 54px;
}
.width_bordermargin {
  border-right: 1px solid #e3e0e0;
  padding: 0px 20px 0px 5px;
}
.title-wrap .section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #585656;
  font-size: 20px;
  text-align: left;
  margin: 20px 0px 0px 0px;
  margin-top: 0px;
}
.contact_formclick2pro {
  padding-left: 15px;
}
.width_margin p {
  width: 100%;
}
.contact_input_form {
  position: relative;
}
.contact_us_media i {
  /*background-color: #005ca1;*/
  padding: 8px;
  font-size: 13px;
  color: #514c4ce6;
  /*border-radius: 50px;*/
  width: 30px;
  text-align: center;
}
.contact_us_media {
  margin-bottom: 15px;

}
.form_control_input_feild1 {
  width: 100%;
  background: rgb(131 133 234 / 11%);
  border-radius: 10px;
  font-size: 15px;
  border: 0;
  height: 50px;
  padding: 0 15px 0 15px !important;
  margin-bottom: 15px;
}
.contact_us_media a span {
  margin-left: 45px;
}
.contact_us_media_top_bottom {
  margin: 10px 0px;
}
.contact_us_media a {
  margin-left: 10px;

}
.map_width {
  padding: 0px 0px 0px;
}
.contact_bgcolor {
  padding: 60px 0px 0px;
}
.map_width iframe {
  width: 100%;
  height: 400px;
}
.width_margin p .contact_input_form .form_control_input_feild {
  width: 100%;
  background: rgb(131 133 234 / 11%);
  border-radius: 10px;
  font-size: 15px;
  border: 0;
  height: 50px;
  padding: 0 15px 0 15px !important;
}
.width_margin p .contact_input_form .input_feild_text {
  height: 130px;
}
input[type="submit"] {
  width: 100%;
  background-color: #005ca1;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/*-----------------faq---------------*/
.collapse111 {
  padding: 0px 0px 0px 35px;
}
.collapse111 h2 {
  font-size: 20px;
  padding-top: 20px;
  font-weight: 600;
}
.collapse111 h4 {
  padding-top: 20px;
  font-weight: 600;
  font-size: 22px;
}
.collapse111 .determining {
  padding-bottom: 30px !important;
}
.collapse111 h6 {
  list-style: disc;
  margin-bottom: 16px;
  font-weight: 400;
}
/*-----------------product---------------*/
.grid_gap_right_left {
  padding: 0px !important;
}
.right_text_btoon_line {
  width: 80px;
  height: 4px;
  background-color: #005ca1;
}
.right_list h1 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding-bottom: 8px;
}
.right_list {
  background-color: #f6f9fe;
  padding: 30px 20px;
}
.right_list ul {
  margin: 0px;
  padding: 30px 0px 0px;
}
.right_list ul li {
  list-style: none;
  padding: 0px 0px 12px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 12px;
}
.zebra_left img {
  width: 100%;
  margin: auto;
  display: block;
}
.zebra_bline_content1 {
  margin-top: 50px;
}
.zebra_bline_content {
  padding-left: 34px;
}
.zebra_bline_content h1 {
  font-size: 25px;
  font-weight: 600;
  padding: 30px 0px 10px;
}
.zebra_bline_content p {
  font-family: "Poppins", sans-serif;
  text-align: justify;
}
.right_list ul li a {
  color: #000;
  font-size: 14px;
}
.right_list ul li a .fa-angle-double-right {
  color: #005ca1;
  margin-right: 4px;
}
/* -------------zebra-blind-gallery--------------- */
.gallery {
  display: flex;
  position: relative;
  width: 100%;
  /* height: 337px; */
  background: #7e7f9a;
  border: 3px solid #f9f9f8;
  border-radius: 5px;
  overflow: hidden;
}
.main-image-section {
  width: 100%;
}

.main-view {
  width: 100%;
  opacity: 0;
  cursor: pointer;

  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/* .caption-container {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100px;
  bottom: -100px;
  opacity: 0;

  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
} */

.main-image-section:hover .caption-container {
  bottom: 0;
  opacity: 1;
}

#caption {
  font-size: 42px;
  color: #fff;
  padding: 10px;
}

#info {
  padding: 0 10px;
  color: #ccc;
}

.thumbnails {
  width: 100%;
  padding: 5px;
  overflow-y: auto;
  display: flex;
}

.thumbnails img {
  width: 18%;
  /* opacity: 0.7; */
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  padding: 0px 4px 2px;
}

.thumbnails img:hover {
  opacity: 1;
}

.thumbnails img:focus {
  opacity: 1;
}
/* -------------zebra-blind-gallery--------------- */

.zebra_bline_content1 h1 {
  font-size: 25px;
  font-weight: 600;
  padding: 5px 0px 10px;
}
.zebra_bline_content1 p {
  font-family: "Poppins", sans-serif;
  text-align: justify;
}
.zebra_bline_content1 h2 {
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  padding: 0px 0px;
}
.zebra_bline_content1 a {
  padding: 13px 39px;
  display: inline-block;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to right, #015ca3 0, #2680c7 100%);
  text-align: center;
  /* margin: auto; */
  /* display: table; */
  margin-top: 32px;
}
.zerbra_blind_bg {
  background-color: #f6f9fe;
  margin-top: 60px;
}
.zebra_bgcolor_grid {
  background-color: #fff;
  padding: 10px;
}
.zebra_window_top_gap {
  margin-bottom: 60px;
}
/*-------------------product-----------------------*/
.intro {
  padding: 5rem 0;
  background: linear-gradient(-225deg, #f1f1f1 0%, #fbfbfb 100%);
  border-bottom: 1px solid #e0e0e0;
}

.intro__container {
  width: 95%;
  max-width: 600px;
  margin: 0 auto;
}

.intro__container p {
  text-align: center;
}

.intro__container p a {
  color: #000;
  text-underline-offset: 5px;
}

/* GENERAL TAB STYLES */

.tab-group__title {
  text-align: center;
  margin: 0 0 4rem;
  color: #fff;
  mix-blend-mode: soft-light;
}

/*.tab-group {
  padding: 5rem 0;
  overflow-x: hidden;
}*/

.hb-tabs {
  width: 100%;

  box-shadow: var(--tab-group-bs);
  background-color: #fff;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;*/
}

.hb-tabs__nav {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hb-tabs__nav-list-item {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: normal;
  text-align: center;
}

.hb-tabs__nav-list-link {
  color: var(--tab-panel-c);
  padding-bottom: 10px;
  display: block;
  background-color: #fff;
  text-align: left;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
.hb-tabs__nav-list-link:hover {
  text-decoration: none;
}
.hb-tabs__nav [aria-selected="true"] {
  position: relative;
}

.hb-tabs__nav [aria-selected="true"] {
  color: #000;
  font-weight: 700;
  background-color: #fff;
}

.hb-tabs__panel {
  /*padding: 2rem 3rem;*/
  display: block;
}

.hb-tabs__panel[aria-hidden="true"] {
  display: none;
}

.hb-tabs__panel p {
  color: var(--tab-panel-c);
}

/* TAB GROUP 0 */

.tab-group--0 .tab-group__title {
  color: #ddd;
  mix-blend-mode: multiply;
  
}

.tab-group--0{
  padding-top: 60px;
  padding-bottom: 50px;
}

/*.tab-group--0 .hb-tabs {
  border-bottom: 3px solid #555;
}
*/
.tab-group--0 .hb-tabs__nav {
  gap: 0;
  background-color: #eee;
  position: relative;
  width: 70%;
  border-bottom: 1px solid #acacac;
  margin-bottom: 25px;
}
.media-body-left-sdie {
  padding-left: 30px;
}
.media-body-left-sdie h4 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 25px;
}
.media-body-left-sdie p {
  font-family: "Poppins", sans-serif;
}
.mediaoperating {
  margin-top: 30px;
}
.tab_bttom_pra {
  margin-top: 20px;
}



.tab_bttom_pra p {
  text-align: justify;
}
.right_img_sec_1t1 h2 {
  font-weight: 600;
  font-size: 20px;
  padding: 20px 0px 20px;
  margin: 0px;
  text-align: center;
}
.jb-btn:hover {
  background: #005ca1;
  color: #fff;
}
.jb-btn {
  padding: 0 19px;
  background: #005ca1;
  position: relative;
  display: inline-block;
  border: none;
  line-height: 39px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  border-radius: 23px;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 22px;
}
.jb-btn1:hover {
  background: #005ca1;
  color: #fff;
}
.tab_bttom_pra h2 {
  /* font-size: 24px;
    font-weight: 600;
    padding-bottom: 8px;
    color: #005ca1;*/

  font-size: 25px;
  font-weight: 700;
  color: #005ca1;
  text-transform: uppercase;
}
.tab_bttom_pra p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.jb-btn1 {
  padding: 0 19px;
  background: #005ca1;
  position: relative;
  display: inline-block;
  border: none;
  line-height: 39px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  border-radius: 23px;
  width: 100%;
  text-align: center;
}
.right_four_img_top {
  margin-top: 20px;
}
.right_four_img img {
  width: 100%;
}
.tab-group--0 .hb-tabs__nav-list-item {
  flex-grow: 1;
  position: relative;
}

/*.tab-group--0 .hb-tabs__nav-list-item::before {
  content: "";
  width: 100%;
  height: 3px;
  postion: absolute;
  top: 0;
  left: 0;

  transform: scaleY(0);
  background-color: #555;
  z-index: 10;    text-align: left;
  display: block;
}*/

.tab-group--0 .hb-tabs__nav-list-item:has([aria-selected="true"])::before {
  transform: scaleY(1);
  transition: transform 0.65s ease;
}

.tab-group--0 .hb-tabs__nav {
}

/* TAB GROUP 1 */

.tab-group--1 {
  background: linear-gradient(-225deg, #22e1ff 0%, #1d8fe1 48%, #625eb1 100%);
}

.tab-group--1 .hb-tabs {
  border-radius: 1rem;
  position: relative;
}

.tab-group--1 .hb-tabs::before {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, #22e1ff 0%, #1d8fe1 48%, #625eb1 100%);
  top: -0.25rem;
  left: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  border-radius: 1.15rem;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 1;
}

.tab-group--1 .hb-tabs__nav {
  gap: 3rem;
  justify-content: center;
  border-bottom: 3px solid #eee;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 20%,
    rgba(244, 244, 244, 1) 80%
  );
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.tab-group--1 .hb-tabs__panel {
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 20%,
    rgba(244, 244, 244, 1) 80%
  );
}

.tab-group--1 .hb-tabs__nav-list-link {
  padding: 1.5rem 0;
  letter-spacing: 0.4px;
}

.tab-group--1 .hb-tabs__nav [aria-selected="true"] {
  color: #625eb1;
  font-weight: 700;
  background-color: transparent;
}

.tab-group--1 .hb-tabs__nav [aria-selected="true"]::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #625eb1;
  left: 0;
  bottom: -3px;
  right: 0;
}

/* TAB GROUP 2 */

.tab-group--2 {
  background: linear-gradient(135deg, #79f1a4 10%, #0e5cad 100%);
}

.tab-group--2 .hb-tabs {
  padding-top: 2rem;
  border-radius: 0.5rem;
}

.tab-group--2 .hb-tabs__nav {
  gap: 0;
  border-bottom: 0;
  justify-content: space-around;
  padding: 0.5rem 0.25rem;
  background-color: #f1f1f1;
  border-radius: 9999px;
  margin: 0 3rem;
}

.tab-group--2 .hb-tabs__nav .hb-tabs__nav-list-link {
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 400;
  color: #666;
}

.tab-group--2 .hb-tabs__nav [aria-selected="true"] {
  font-weight: 600;
  color: #000;
  background-color: #79f1a4;
}

/* TAB GROUP 3 */

.tab-group--3 {
  background-color: #efefef;
}

.tab-group--3 .tab-group__title {
  color: #ccc;
  mix-blend-mode: normal;
}

.tab-group--3 .hb-tabs {
  padding: 2rem;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: var(--shadow-elevation-high);
  font-weight: 300;
  outline: 0.25rem solid rgba(0, 0, 0, 0.15);
}

.tab-group--3 .hb-tabs__nav {
  padding: 0;
  gap: 0;
  justify-content: center;
  border-bottom: 0;
}

.tab-group--3 .hb-tabs__nav [aria-selected="true"] {
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-color: #111;
  position: relative;
  background: rgb(17, 17, 17);
}

.tab-group--3 .hb-tabs__nav-list-item {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium",
    "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
}

.tab-group--3 .hb-tabs__nav-list-item:has([aria-selected="true"]) {
  position: relative;
}

.tab-group--3 .hb-tabs__nav-list-item:has([aria-selected="true"])::before,
.tab-group--3 .hb-tabs__nav-list-item:has([aria-selected="true"])::after,
.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::before,
.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}

.tab-group--3 .hb-tabs__nav-list-item:has([aria-selected="true"])::before {
  left: 0;
  transform: translateX(-100%);
  background-color: #111;
}

.tab-group--3 .hb-tabs__nav-list-item:has([aria-selected="true"])::after {
  right: 0;
  transform: translateX(100%);
  background-color: #111;
}

.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::before,
.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::after {
  background-color: #fff;
}

.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::before {
  left: 0;
  transform: translateX(-100%);
  border-bottom-right-radius: 1rem;
}

.tab-group--3 .hb-tabs__nav-list-item [aria-selected="true"]::after {
  right: 0;
  transform: translateX(100%);
  z-index: 1;
  border-bottom-left-radius: 1rem;
}

.tab-group--3 .hb-tabs__nav-list-link {
  padding: 0.65rem 1.25rem 1rem;
  color: #000;
}

.tab-group--3 .hb-tabs__panel {
  padding: 2rem 2.5rem;
  background: rgb(17, 17, 17);
  background: linear-gradient(
    140deg,
    rgba(17, 17, 17, 1) 42%,
    rgba(85, 85, 85, 1) 75%
  );
  border-radius: 1rem;
  color: #fff;
}

.tab-group--3 .hb-tabs__panel h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium",
    "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 1rem;
}

.tab-group--3 .hb-tabs__panel * {
  color: #fff;
}

/* TAB GROUP 4 */

.tab-group--4 {
  background-image: linear-gradient(to top, #cc208e 0%, #6713d2 100%);
}

.tab-group--4 .hb-tabs {
  background-color: transparent;
  box-shadow: none;
}

.tab-group--4 .hb-tabs__nav {
  border-radius: 9999px;
  border-bottom: 0;
  padding: 0.5rem;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(
      304deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.14) 50%
    ),
    rgba(255, 255, 255, 0.04) 100%;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-link {
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 300;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-item {
  flex-grow: 1;
  letter-spacing: 0.5px;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-item [aria-selected="true"] {
  border-radius: 9999px;
  color: #6713d2;
  font-weight: 500;
}

.tab-group--4 .hb-tabs__panel[aria-hidden="true"] {
}

.tab-group--4 .hb-tabs__panel {
  padding: 2rem 3rem;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.tab-group--4 .hb-tabs__panel * {
  color: #fff;
}

/* TAB GROUP 5 */

.tab-group--5 {
  background: linear-gradient(to top, green 0%, black 100%);
  position: relative;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas,
    "DejaVu Sans Mono", monospace;
}

.tab-group--5::after {
  content: "";

  position: absolute;
  height: 100%;
  width: 120%;
  inset: 0;
  transform-origin: center;
  background: linear-gradient(to bottom, #000, #000 60%, #ccc 60%, #ccc);
  background-color: black;
  background-size: 100% 4px;
  background-position-y: 0px;
  mix-blend-mode: screen;
  opacity: 0.1;
  pointer-events: none;
}

.tab-group--5 .tab-group__title {
  margin-bottom: 4rem;
}

.tab-group--5 .hb-tabs {
  padding: 1rem;
  border: 3px solid green;
  background-color: transparent;
  position: relative;
}

.tab-group--5 .hb-tabs__nav {
  gap: 0;
  margin-bottom: 0.5rem;
}

.tab-group--5 .hb-tabs__nav-list-item {
  flex-grow: 1;
  background-color: green;
  padding: 0.25rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.tab-group--5 .hb-tabs__nav-list-link {
  color: yellow;
  padding: 1rem 0.5rem;
  clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
  background: linear-gradient(to top, green -20%, black 100%);
}

.tab-group--5 .hb-tabs__nav [aria-selected="true"] {
  color: #fff;
  background: linear-gradient(to top, green 0%, black 100%);
}

.tab-group--5 .hb-tabs__panel {
  clip-path: polygon(8% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 8%);
  positive: relative;
}

.tab-group--5 .hb-tabs__panel::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: green;
}

.tab-group--5 .hb-tabs__panel * {
  color: yellow;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.75);
}

.tab-group--5 .hb-tabs__panel h3 {
  position: absolute;
  font-size: 10rem;
  bottom: 0rem;
  left: 1rem;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  opacity: 0.1;
  margin: 0;
  text-shadow: none;
}

.tab-group--5 .extra-1::before {
  content: "///// HBID: 13849039919203 Section 16 ///// 11277046047 ///////////////////////////////";
  display: block;
  opacity: 0.6;
  margin: 1rem 0 0;
  font-size: 0.45rem;
  color: yellow;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.tab-group--5 .extra-3 {
  width: 10vh;
  height: 40vh;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-left: 6px solid green;
  border-bottom: 6px solid green;
  transform: translate(-25px, 25px);
  opacity: 0.5;
}

.tab-group--5 .extra-4 {
  width: 10vh;
  height: 40vh;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-right: 6px solid green;
  border-top: 6px solid green;
  transform: translate(25px, -25px);
  opacity: 0.25;
}

/* TAB GROUP 6 */

.tab-group--6 {
}

.tab-group--6 .tab-group__title {
  color: #efefef;
  mix-blend-mode: normal;
}

.tab-group--6 .hb-tabs {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  font-family: Didot, "Bodoni MT", "Noto Serif Display", "URW Palladio L", P052,
    Sylfaen, serif;
  font-weight: 100;
  outline: 1px solid #efefef;
  outline-offset: -0.5rem;
  padding: 3rem 0 2rem;
  background-color: #ffffff;
  opacity: 1;
}

.tab-group--6 .hb-tabs__nav {
  justify-content: center;
}

.tab-group--6 .hb-tabs__nav-list-item {
  letter-spacing: 3px;
  font-size: 1.05rem;
  text-transform: lowercase;
  font-variant: small-caps;
  flex-grow: 0;
  font-weight: normal;
}

.tab-group--6 .hb-tabs__nav-list-link {
  padding: 0 1rem;
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.tab-group--6
  .hb-tabs__nav-list-item:last-child
  .hb-tabs__nav-list-link::after {
  display: none;
}

.tab-group--6 .hb-tabs__nav [aria-selected="true"] {
  font-weight: normal;
  color: #000;
}

.tab-group--6 .hb-tabs__nav .hb-tabs__nav-list-link::before {
  content: "";
  width: 0.5rem;
  height: 50px;
  background-color: #ddd;
  display: block;
  position: absolute;
  transform: rotate(33deg) scaleY(0);
  transition: transform 0.5s ease, opacity 1s ease;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0;
}

.tab-group--6 .hb-tabs__nav [aria-selected="true"]::before {
  opacity: 0.75;
  transform: rotate(33deg) scaleY(1);
}

.tab-group--6 .hb-tabs__panel h3 {
  display: none;
}

.tab-group--6 .hb-tabs__panel p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem;
  font-family: Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro,
    sans-serif;
  font-weight: 100;
  color: #999;
  letter-spacing: 0.25px;
}

.tab-group--6 .hb-tabs__panel p:last-of-type {
  margin-bottom: 0;
}

/* TAB GROUP 7 */

.tab-group--7 {
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffac 2%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
}

.tab-group--7 .tab-group__title {
  color: #fff;
  opacity: 0.25;
}

.tab-group--7 .hb-tabs {
  background: transparent;
  padding: 0rem 4rem 2rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: none;
  border: 1px solid #fedb3756;
  outline: 1px solid #5d4a1f65;
}

.tab-group--7 .hb-tabs__nav {
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-group--7 .hb-tabs__nav-list-item {
  font-size: 1.5rem;
  flex-grow: 0;
  font-family: Optima, Candara, "Noto Sans", source-sans-pro, sans-serif;
  font-weight: 100;
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2rem;
}

.tab-group--7 .hb-tabs__nav-list-link {
  color: #fff;
  padding: 0 0.75rem;
  mix-blend-mode: overlay;
  opacity: 0.65;
  position: relative;
  z-ined: 2;
}

.tab-group--7 .hb-tabs__panel {
  padding: 0;
}

.tab-group--7 .hb-tabs__panel h3 {
  display: none;
}

.tab-group--7 .hb-tabs__panel * {
  color: #fff;
  mix-blend-mode: screen;
  opacity: 0.75;
  margin: 1.2rem 0;
  line-height: 1.6;
}

.tab-group--7 .hb-tabs__nav [aria-selected="true"] {
  color: #fff;
  opacity: 1;
  font-weight: normal;
  background-color: transparent;
}

.tab-group--7 .hb-tabs__nav [aria-selected="true"]::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: #fedb37;
  mix-blend-mode: screen;
  transform: translate(-50%, 0.5rem);
}

.tab-group--7 .hb-tabs__nav-list-item::after {
  content: "";
  background: radial-gradient(
    circle,
    rgba(255, 255, 172, 1) 0%,
    rgba(255, 255, 172, 0) 70%
  );
  filter: blur(5px);
  mix-blend-more: screen;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 60%;
  left: 50%;
  display: block;
  opacity: 0;
  transition: opacity 0.65s ease, trasform 0.65s ease;
  transform: translate(-50%, -50%) scaleY(0.5);
  z-index: 0;
  pointer-events: none;
}

.tab-group--7 .hb-tabs__nav-list-item:has([aria-selected="true"])::after {
  opacity: 0.25;
  transform: translate(-50%, -50%) scaleY(1.25);
}

/* TAB GROUP 8 */

.tab-group--8 {
  background-color: #d1c2ad;
  position: relative;
}

.tab-group--8 .tab-group__title {
  color: #000;
  opacity: 0.5;
}

.tab-group--8 .hb-tabs {
  background-color: transparent;
  box-shadow: none;
  max-width: 900px;
  display: flex;
  position: relative;
  align-items: flex-start;
}

.tab-group--8 .hb-tabs__nav {
  flex-direction: column;
  width: 40%;
  top: 0;
  padding-top: 4rem;
  position: absolute;
  z-index: 99;
  border-right: 2px solid #8b8173;
  min-height: 100%;
  justify-content: flex-start;
}

.tab-group--8 .hb-tabs__nav-list-item {
  font-size: clamp(2rem, 0.125rem + 6vw, 3.5rem);
  font-weight: 100;
  text-align: left;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -2px;
  flex-grow: 0;
  /*   counter-increment: hb-counter-2;
  display: flex; */
}

.tab-group--8 .hb-tabs__nav-list-item::before {
  /*   content: counter(hb-counter-2); */
  font-size: 12px;
  color: #111;
  margin-right: 0.2rem;
}

.tab-group--8 .hb-tabs__nav-list-link {
  padding: 0;
  color: #111;
}

.tab-group--8 .hb-tabs__nav [aria-selected="true"] {
  background-color: transparent;
  font-style: italic;
  font-weight: normal;
}

.tab-group--8 .hb-tabs__panel {
  margin-left: 8%;
  color: #000;
  padding: 2rem 3rem 2rem 23rem;
  border-radius: 2rem;
  background-color: #413d3650;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.tab-group--8 .hb-tabs__panel h3 {
  opacity: 0.5;
  font-size: 24rem;
  line-height: 1cap;
  padding: 0;
  margin: 0;
  left: -1rem;
  text-align: left;
  font-style: italic;
  position: absolute;
  top: 33%;
  text-transform: uppercase;
  z-index: 0;
  color: #8b8173;
  mix-blend-mode: multiply;
  word-break: break-all;
  width: 100%;
  opacity: 0.15;
}

.tab-group--8 .hb-tabs__panel p {
  color: #000;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.tab-group--8 .hb-tabs__nav [aria-selected="true"] {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.tab-group--8 .hb-tabs__nav [aria-selected="true"]::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8b8173;
  display: block;
  order: 2;
  margin: 0 0 0 1rem;
  justify-self: flex-end;
}

.tab-group--8 .hb-tabs__nav [aria-selected="true"]::after {
  content: "";
  min-width: 1.5rem;
  height: 1.5rem;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-color: #8b8173;
  display: block;
  transform: translateX(calc(50% + 1px));
  order: 3;
}

/* TAB GROUP 9 */

.tab-group--9 {
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
  background-image: radial-gradient(
      49% 81% at 45% 47%,
      #ffe20345 0%,
      #073aff00 100%
    ),
    radial-gradient(113% 91% at 17% -2%, #ae09a6ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at 83% 7%, #ff23f2ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at -6% 74%, #e400d3ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at 111% 84%, #ffcd00ff 0%, #ff0000ff 100%);

  font-family: Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans",
    Arial, sans-serif;
  font-weight: 100;
  position: relative;
  height: 80vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-group--9 .tab-group__title {
  display: none;
}

.tab-group--9 .hb-tabs {
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 9999;
  max-width: 100% !important;
  background-color: transparent;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  margin: 0;
}

.tab-group--9 .hb-tabs__nav {
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0;
}

.tab-group--9 .hb-tabs__nav-list-item {
  font-size: clamp(2rem, 1.3466rem + 2.0909vw, 3.4375rem);
  font-weight: 200;
  line-height: 1;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  counter-increment: hb-counter;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-group--9 .hb-tabs__nav-list-link::before {
  content: counter(hb-counter);
  font-size: 1rem;
  margin-right: 1rem;
}

.tab-group--9 .hb-tabs__nav-list-item:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0rem;
  width: 50%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
}

.tab-group--9 .hb-tabs__nav-list-item:nth-child(2) {
  position: absolute;
  top: 0;
  width: 50%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  right: 0;
  text-align: center;
}

.tab-group--9 .hb-tabs__nav-list-item:nth-child(3) {
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  bottom: 0;
  transform: rotate(-90deg) translateX(100%);
  width: 80vh;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  justify-content: center;
}

.tab-group--9 .hb-tabs__nav-list-item:nth-child(4) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.tab-group--9 .hb-tabs__nav-list-item:nth-child(5) {
  position: absolute;
  transform-origin: bottom left;
  left: 0;
  bottom: 0;
  width: 80vh;
  transform: rotate(-90deg) translateY(100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.tab-group--9 .hb-tabs__nav-list-item:has([aria-selected="true"]) {
  z-index: 999;
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
  background-image: radial-gradient(
      49% 81% at 45% 47%,
      #ffe20345 0%,
      #073aff00 100%
    ),
    radial-gradient(113% 91% at 17% -2%, #ae09a6ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at 83% 7%, #ff23f2ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at -6% 74%, #e400d3ff 1%, #ff000000 99%),
    radial-gradient(142% 91% at 111% 84%, #ffcd00ff 0%, #ff0000ff 100%);
  mix-blend-mode: overlay;
}

.tab-group--9 .hb-tabs__nav [aria-selected="true"] {
  background-color: transparent;
  font-weight: 200;
}

.tab-group--9 .hb-tabs__nav-list-link {
  color: #fff;
  padding: 1rem 0;
  margin: 0;
  justify-content: center;
  flex-grow: 1;
  dsplay: flex !important;
  align-items: center;
}

.tab-group--9 .hb-tabs__panel {
  max-width: 900px;
  width: 80%;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-weight: 100;
  columns: 2;
  padding: 0;
  gap: 2rem;
}

.tab-group--9 .hb-tabs__panel h3 {
  display: none;
}

.tab-group--9 .hb-tabs__panel p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .hb-tabs__nav-list-link {
    font-size: 12px;
  }

  .tab-group--0 .hb-tabs__nav {
    width: 100%;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 10px;
  }
  .container .container__img-holder:nth-child(3n + 1) {
    margin-left: 0px;
  }
  .hero_heading_content h2 {
    font-size: 19px;
    margin-top: 2px;
  }
  .hero_heading_content h1 {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
  }

  .hero_heading_content .hero_btn {
    margin-top: 8px;
    padding: 6px 15px !important;
  }
  .section-title h3 {
    margin: 0px 10px 0 10px;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
  }
  .testimonial .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .testimonial .pic {
    width: 100px;
  }
  .testimonial {
    text-align: center;
    padding: 85px 15px 63px 15px;
    margin: 100px 15px 35px;
    background: #eaeaea;
    border-radius: 8px;
    position: relative;
  }
  .testimonial .description:after {
    content: "\f10e";
    font-family: "FontAwesome";
    font-size: 25px;
    color: #0395d8;
    position: absolute;
    bottom: -85px;
    right: 12px;
  }
  .testimonial .description:before {
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 25px;
    color: #0395d8;
    position: absolute;
    top: -31px;
    left: 10px;
  }
}

.tab_bttom_pra iframe {
  width: 100%;
  height: 300px;
}

/*-------------------our-servcie----------------------*/
.container11 {
  max-width: 1240px !important;
}
.our_service_bgcolor {
  background-attachment: fixed;
  background-image: url(./assets/images/service-bg.jpg);
  padding: 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.our_serice_heading .apbc-subtitle h2 {
  display: inline-block;
  position: relative;
  color: #0307cb;
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}
.our_serice_heading .apbc-subtitle h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #0307cb;
  bottom: 8px;
  left: calc(100% + 6px);
}
.heading_our h1 {
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 0;
  color: #000625;
  font-weight: 700;
}
.service-secondry-btn {
  text-align: right;
}
.post-slide {
  margin: 0 15px;
  border-bottom: 1px solid #dadada;
  box-shadow: 0 0 5px rgba(167, 197, 167, 0.8);
  transition: all 0.4s ease-in-out 0s;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
}
.post-slide .post-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.4s linear 0s;
}
.post-slide:hover .post-img:before {
  background: rgba(0, 0, 0, 0.6);
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
}
.post-slide .category {
  width: 20%;
  font-size: 16px;
  color: #fff;
  line-height: 11px;
  text-align: center;

  padding: 11px 0;
  background: #0307cb;
  position: absolute;
  bottom: 0;
  left: -50%;
  transition: all 0.5s ease-in-out 0s;
}
.post-slide:hover .category {
  left: 0;
}
.post-slide .post-review {
  padding: 25px 20px;
  background: #fff;
  position: relative;
}
.post-slide .post-title {
  margin: 0;
}
.post-slide .post-title a {
  display: inline-block;
  font-size: 18px;
  color: #0307cb;
  font-weight: bold;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
  margin-bottom: 12px;
  transition: all 0.3s linear 0s;
  font-family: "Poppins", sans-serif;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #555;
}
.post-slide .post-description {
  font-size: 15px;
  color: #555;
  line-height: 26px;
}
.post-review .post-bar {
  margin-top: 20px;
}
.post-bar span {
  display: inline-block;
  font-size: 14px;
}
.post-bar span i {
  margin-right: 5px;
  color: #999;
}
.post-bar span a {
  color: #999;
  text-transform: uppercase;
}
.post-bar span a:hover {
  text-decoration: none;
  color: #ff9412;
}
.post-bar span.comments {
  float: right;
}
.carousel_card_top_gap {
  margin-top: 30px;
}
.readmore a span i {
  font-size: 13px;
  margin-left: 2px;
}
.readmore {
  margin-top: 25px;
}
.readmore a {
  background-color: #0307cb;
  padding: 7px 15px;
  border-radius: 50px;
  color: #fff;
  margin-top: 30px;
  text-decoration: none;
}
/* @media only screen and (max-width: 359px) {
  .post-slide .category {
    font-size: 13px;
  }
} */

.icon_home h3 a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.icon_home {
  text-align: center;
  border: 1px solid #e4e4e4;
  padding: 20px;
  border-radius: 4px;
}
.icon_home img {
  width: 35%;
  padding-bottom: 5px;
}
.banking_gap {
  padding: 70px;
}
.icon_home_gap {
  margin-top: 30px;
}
.card_body_jhonson1 h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-top: 25px;
}
.card_body_jhonson1 p {
  padding: 0px;
  margin: 0px;
  color: #000;
}
.card_body_jhonson1 a {
  padding: 13px 39px;
  display: inline-block;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to right, #015ca3 0, #2680c7 100%);
  text-decoration: none;
  margin-top: 16px;
}
.card_body_jhonson1 a:hover {
  color: #fff;
  text-decoration: none;
}
.card_service_tops {
  margin-top: 30px;
}
.product_page_card_section {
  padding-bottom: 60px;
}
.banner_img img {
  width: 100%;
  margin-top: 60px;
  box-shadow: 1px 2px 4px #005ca180;
}
.about-us-page1 h6 {
  color: #fff;
}
.clinet_ul_list ul li a {
  color: #000;
}
.bpadding_top {
  margin-top: 60px;
}
.about_page_img img {
  padding-bottom: 10px;
  width: 100%;
}
.banner_inner_page img {
  width: 100%;
  margin-top: 60px;
}
/* .slick-next {
  right: 50px !important;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  padding: 6px;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #005ca0;
}
.slick-prev {
  left: -25px;
} */
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 30px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-next:before {
  content: "❯" !important;
}
.slick-prev {
  left: 20px !important;
  z-index: 99999;
}
.slick-prev:before {
  content: "❮" !important;
}
.slick-next {
  right: 20px;
  z-index: 99999;
}



.project_order{
  font-size: 20px;
  color: #323131;
  font-weight: 600;
}


.contact_us_media1{
  font-size: 14px;
}
.contact_us_media1 a{
 font-size: 13px;
 color: #514c4ce6;
 
}

.heading_category{
  font-size: 23px;
  text-align: center;
}
.heading_category p{
  color: #6e6f73;
}

.contact_heading{
      font-size: 20px;
    color: #4f4e4e;
    padding: 2px 0px 2px 0px;
}

.color-img-padding{
  padding-top: 30px;
}

.container__img-holder h1{
  font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 600;
    color: #005ca1;
    background: white;
    margin-top: 10px;
    border-block-color: red;
    border-radius: 5px solid;

}

.tab_bttom_pra ul{
      list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-left: 14px;

}

.tab_bttom_pra ul li{
  padding-left: 15px;
  font-weight: 499;
  color: #494747;
      position: relative;
}

.tab_bttom_pra ul li i{
       position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
    margin-left: -11px;    

}

 .tab_bttom_pra ul li i::before{
  padding-right: 15px;
  font-size: 15px;
  color: #005ca1;
}


}

