
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none; 
}
ul{
  padding-left: 0;
  list-style: none;
}
p{
  margin-bottom: 0;
}
:root{
  --dark-blue: #064472;
  --blue: #206eb1;
  --red: #f83636;
  --gray: #e3e3e3;
  --light-gray: #f3f3f3;
  --dark-gray: #ababab;
  --black: #000000;
}
  

/* sweet alert */
  .swal-footer{
    text-align: center !important;
  }
  .swal-button{
    background-color: #064472 !important;
  }


  .error{
      color: red;
      font-weight: 600;
   }


   .zero-img{
    height: 150px;
   }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2194f7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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 var(--blue);
  border-top-color: var(--dark-blue);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.owa_top{
  background: var(--red);
  color: #fff;
  width: 100%;
  height: 40px;
  padding-right: 100px;
  position: relative;
}
.owa_top marquee{
  font-weight: 600;
}
.owa_top button{
  width: 20px;
  height: 20px;
  background: #fff;
  color: var(--red);
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}


#topbar {
  height: 90px;
  width: 100%;
  padding: 0;
  color: #fff;
  z-index: 996;
  padding: 0 30px;
  border-bottom: 2px solid var(--gray);
  display: none !important;
  top: 40px;
}
#topbar.topbar-scrolled {
  top: -60px;
}
.topb_scl{
  position: relative;
}
.topb_scl_lnk{
  width: 30px;
/*  width: 20px;*/
/*  height: 20px;*/
  height: 30px;
  margin-right: 3px;
}
.topb_scl1{
  position: absolute;
  top: 0;
  left: 0;
}
.topb_scl2{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
/*.topb_scl_lnk:hover .topb_scl2{
  opacity: 1;
}
.topb_scl_lnk:hover .topb_scl1{
  opacity: 0;
}*/
.tsb{
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tsb input{
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
/*  box-shadow: 0px 3px 4px 0px inset #b8b5b5;*/
  box-shadow: 1px 1px 0px 0px inset #b8b5b5;
  padding-left: 15px;
  border-radius: 50px;
  font-weight: 600;
}
.tsb button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-gray);
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.tsb button i{
  font-size: 25px;
}
.ci_icon a i{
  margin-right: 10px;
  font-size: 20px;
  font-weight: 600;
}
.contact-info p a{
  color: var(--dark-blue);
  font-size: 14px;
}
.contact-info p a:hover{
  color: var(--dark-blue);
}
.tci_link{
  background: var(--dark-blue);
  color: var(--white);
  height: 50px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  border-radius: 50px;
}
.tci_link:hover{
  background: var(--red);
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  height: 90px;
/*  top: 90px;*/
/*  top: 130px;*/
  top: 40px;
  padding: 0 30px;
  background: #fff;
}
#header.header-scrolled {
  background: #fff;
  top: 0;
}
#header .logo img {
  /*width: 250px;*/
  width: 23rem;
  /*width: 77px;*/
  height: auto;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-transform: capitalize;
/*  padding: 10px 0 10px 30px;*/
  padding: 10px 15px 10px 15px;
}
.navbar a i, .navbar a:focus i {
  font-size: 20px;
  font-weight: 500;
  line-height: 0;
  margin-left: 4px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
/*  color: var(--dark-blue);*/
  color: var(--red);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-radius: 8px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul h6{
  padding-left: 20px;
  padding-bottom: 0;
  color: var(--blue);
}
.navbar .dropdown ul a {
  padding: 4px 20px 0 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--black);
}
.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: var(--dark-blue);
}
.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;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--black);
  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: var(--blue);
  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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--black);
}
.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: var(--dark-blue);
}
.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: var(--dark-blue);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.hdr_bcl_link{
  background: var(--dark-blue);
  color: #fff;
  height: 50px;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 50px;
}
.hdr_bcl_link:hover{
  color: #fff;
  background: var(--red);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
/*  background: url("../img/home/banner-image.jpg");*/
/*  background-position: center;*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
  z-index: 99;
/*  transition: 0.3s;*/
/*  margin-top: 179px;*/
/*  margin-top: 219px;*/
  margin-top: 85px;
}
#hero:before {
  content: "";
/*  background-color: #206eb1b0;*/
/*  background-color: #206eb182;*/
background: #206eb1ad;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.hero_video video[poster]{
  height:100%;
  width:100%;
}
.homehero_txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 1;
  width: 60%;
}
/*#hero .carousel-container {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
}*/
#hero h1 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 2px 4px 10px #3d3d3d;
}
#hero h2 {
  /*font-size: 40px;
  font-weight: 600;*/
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  text-shadow: 2px 4px 10px #3d3d3d;
}
#hero h3{
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  margin-bottom: 20px;
}
#hero p{
  font-weight: 500;
  line-height: 1.5;
}
/*#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}*/
.ldyp_link{
  background: var(--dark-blue);
  color: #fff;
  height: 50px;
/*  width: 25%;*/
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 30px;
  border-radius: 50px;
}
.ldyp_link:hover{
  color: #fff;
  background: var(--red);
}
/*@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}*/

/*--------------------------------------------------------------
# Main Start
--------------------------------------------------------------*/
#HomeSrvc{
/*  margin: 80px 0;*/
  margin: 50px 0;
/*  overflow-x: hidden;*/
}
.hm_srvc_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.hm_srvc_sbhding{
  font-size: 35px;
  margin: 20px 0;
}
.hm_srvc_km_lnk{
  background: var(--dark-blue);
  color: #fff;
  width: 250px;
  height: 50px;
/*  padding: 10px 40px;*/
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm_srvc_km_lnk:hover{
  color: #fff;
  background: var(--red);
}
/*---------------- Our Goal -------------*/
.our_goal_row{
  margin-top: 50px;
}
.ogb_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.ogb_sbhding{
  font-size: 35px;
  margin: 10px 0 30px 0;
}
.ogb_txt{
  line-height: 2;
}
.our_goal_img img{
  width: 100%;
  height: 100%;
}
/*--------- Our Mission -------*/
#HomOurMsn{
  padding: 110px 0;
  background: linear-gradient(#206eb1cc, #206eb1cc),
              url(../img/home/Our-Mission.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wam_hding{
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 2px 4px 5px #3d3d3d;
  text-align: center;
}
.wam_txt{
  color: #fff;
  font-size: 35px;
  margin: 10px 0 80px 0;
  text-shadow: 2px 4px 5px #3d3d3d;
  text-align: center;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .8;
    transition: opacity .6s ease;
    border-radius: 50%;
}
.carousel-indicators .active {
    background-color: var(--dark-blue);
    opacity: 1;
}

#HomOurMsn .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: #fff;
    opacity: 1;
}
#HomOurMsn .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--dark-blue);
}
/*------- Product Category --------*/
#HomPrdCtgr{
  margin: 50px 0;
/*  overflow-x: hidden;*/
}
.hpcb_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.hpcb_sbhding{
  font-size: 35px;
  margin: 10px 0 30px 0;
}
.hpcb_txt{
  margin-bottom: 20px;
  text-align: center;
}

.hpc_img{
/*  border-radius: 50%;*/
  border-radius: 12%;
  box-shadow: 3px 2px 4px #cacaca;
  width: 150px;
  height: 150px;
  margin: 20px 0 20px 0;
}
.hpc_img img{
  width: 100px;
  height: 100px;
}
.hpc_nme{
  text-align: center;
  font-weight: 600;
  color: var(--black);
}
.hom_prd_row{
  justify-content: space-evenly;
  margin-top: 30px;
}
.hom_prd{
  background: var(--light-gray);
  padding: 20px 20px;
}
/*.hom_prd:hover {
    box-shadow: 4px 4px 10px darkgray;
    border: 0;
}*/

/*.hom_prd_img{
  width: 90%;
  height: auto;
  margin-bottom: 15px;
}*/
.hom_prd_nam{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.hom_prd_rdmor_lnk{
  color: var(--blue);
  font-weight: 600;
}
.hom_prd_rdmor_lnk i{
  font-weight: 700;
  margin-left: 10px;
}
/*Product Owl-carousel*/
.owl-prev {
  position: absolute;
  left: 0px;
  top: 37%;
  transform: translateY(-50%);
  background-color: white !important;
  width: 20px;
  height: 20px;
  border-radius: 100% !important;
  color: #000 !important;
  opacity: 0;
}
.owl-next {
  position: absolute;
  right: 0px;
  top: 37%;
  transform: translateY(-50%);
  background-color: white !important;
  width: 20px;
  height: 20px;
  border-radius: 100% !important;
  color: #000 !important;
  opacity: 0;
}
.owl-dots {
  display: none;
}
.item {
  display: flex;
  justify-content: center;
}
.item li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  border-radius: 100%;
  flex-wrap: wrap;
  text-align: center;
  text-decoration: none;
  padding-bottom: 20px;
  font-size: 20px;
}
/*.item li.active a .hpc_img {
  color: #fff;
      box-shadow: 2px 4px 10px var(--blue);
}*/
.item li.active a .hpc_nme{
  color: var(--blue);
}
.item li a:hover .hpc_nme{
  color: var(--blue);
}

.owl-carousel .owl-item img {
  display: block;
   width: 100px;
   height: 100px;
   margin-bottom: 10px;
}
.hpc_nme{
  font-size: 18px;
}
.tab-content {
  padding: 20px;
  background-color: #fff;
  font-size: 17px;
  text-align: center;
  line-height: 25px;
  margin-top: 30px;
  border-radius: 19px;
}
.hom_prd_img {
  /*width: 80%;*/
/*  width: 100%;
  height: 100%;*/
/*  height: 21rem;*/
  height: 17rem;
  width: 21rem;
  margin-bottom: 7px;
}
.hom_prd_row {
  justify-content: space-evenly;
  margin-top: -10px;
  padding: 0 50px;
}
.hom_prd {
  background: var(--light-gray);
/*  padding: 40px 20px;*/
  padding: 20px 20px;
/*  margin: 10px 10px;*/
border: 15px solid #fff;
}

.home_all_prdct_link a{
    background: var(--dark-blue);
    color: #fff;
    width: 250px;
    height: 50px;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_all_prdct_link a:hover{
  background: var(--red);
}
/*------- Cusromer Experience -------*/
#CstExp{
/*  padding: 60px 60px;*/
  padding: 0 60px;
/*  overflow-x: hidden;*/
}
.cst_exp_cont{
  padding: 110px 0;
  background: linear-gradient(#206eb1cc, #206eb1cc),
              url(../img/home/Customer-Experiences.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cst_exp_hding{
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 2px 4px 5px #3d3d3d;
}
.cst_exp_txt{
  color: #fff;
  font-size: 45px;
  margin: 10px 0 30px 0;
  text-shadow: 2px 4px 5px #3d3d3d;
}
.cst_exp_str i{
  color: #ffce09;
  font-size: 18px;
  margin-left: 5px;
}
.cst_exp_str{
  margin-bottom: 20px;
}
/* ------ Certified div start ------*/
#EXCLCEFT{
  background: var(--light-gray);
/*  margin: 50px 50px 0 50px;*/
  margin: 50px 50px 35px 50px;
  padding: 80px 50px;
}
.exlnc_crtf_row{
  margin-top: 30px;
}
.exct_img{
  width: 30%;
  height: auto;
}
.exct_img img{
  width: 100%;
  height: auto;
}
.exct_brf{
  width: 68%;
  height: auto;
}

/* ------ Counter div start ------*/
#Contr{
/*  padding: 10px 60px 60px 60px;*/
  padding: 50px 60px 50px 60px;
/*  overflow-x: hidden;*/
}
.contr_prj{
  background: var(--light-gray);
  padding: 40px 20px;
  width: 95%;
}
.contr_prj_lnk,
.contr_prj_lnk:hover{
  color: var(--black);
}
.contr_prj_lnk img{
  width: 40px;
  height: auto;
  margin-bottom: 20px;
}
.contr_prj_lnk h4{
  font-size: 26px;
  font-weight: 500;
/*  margin-bottom: 20px;*/
}
.contr_prj_lnk h5{
  font-weight: 600;
  text-align: center;
}
/*------ Home News Section -----*/
#HomLtstNws{
  margin-bottom: 50px;
}
.hln_col{
  margin-top: 10px;
}
.hln{
  background: var(--light-gray);
  padding: 20px 20px;
  cursor: pointer;
}
.hln:hover{
  box-shadow: 4px 4px 10px var(--gray);
}

.hln_img{
  width: 100%;
  height: 150px;
}
.hln_dt{
  background: #69939a;
  border-radius: 50px;
  padding: 5px 10px;
  width: 80%;
  height: 40px;
  margin-top: -20px;
  position: relative;
  z-index: 9;
  font-weight: 600;
  color: #fff;
}

.hln_byw{
  margin: 20px 0 20px 0;
}
.hln_byw p{
  font-weight: 500;
  margin-right: 20px;
}
.hln_byw p i{
  color: #69939a;
  margin-right: 5px;
  font-weight: 600;
}
.hln_hding{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--black);
}
.hln_hding:hover{
  color: var(--blue);
}
.hln_rdmr{
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 25px;
}
.hln_rdmr i{
  margin-right: 10px;
  font-weight: 700;
}
/*------ Collaboration Chronicles -----*/
#HomColChro{
  margin: 0 0 50px 0;
  padding: 70px 50px;
  background: var(--light-gray);
}
.hcch_hding {
  font-size: 20px;
  color: #69939a;
  margin-bottom: 0;
}
.hcch_shding {
  font-size: 35px;
  margin: 10px 0 30px 0;
}
.hcc {
  margin-top: 25px;
}
.hcc a{
/*  width: 98%;*/
  width: 230px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 10px #d9d6d6;
  padding: 30px 20px;
  margin-bottom: 10px;
}
.hcc a img{
  width: 95%;
  height: auto;
}
/*------ Home Page Contact Section -----*/
#HomCntc{
  margin: 0 0 50px 0;
}
.hcgit_hding {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.hcgit_sbhding{
  font-size: 35px;
  margin: 10px 0 30px 0;
}
.hcgit_txt{
/*  margin-bottom: 20px;*/
  text-align: center;
}
.hci{
  background: var(--blue);
  padding: 50px 50px;
  color: #fff;
}
.hci_hding{
  font-weight: 600;
  margin-bottom: 30px;
}
.hci_txt{
  margin-bottom: 30px;
}
.hci_loc{
  padding-left: 0;
}
.hci_loc li{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.hci_loc_img{
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hci_loc li img{
  width: 25px;
  height: auto;
}
.hci_loc li p{
  width: 80%;
}
.hcsm{
  margin-top: 35px;
}
.hcsm_lnk a{
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.hcsm_lnk i{
  color: var(--blue);
}
.hcsm_lnk a:hover .hcsm_icon {
  color: var(--red);
}


.hci_form{
/*  box-shadow: 5px 0px 20px #dbdbdb;*/
  box-shadow: 12px 0px 15px #eeeeee;
  padding: 50px 30px 60px 30px;
}
.hcif_hding{
  font-weight: 600;
  margin-bottom: 30px;
}
.hci_form form{
  width: 100%;
}
.hci_form form input,
.hci_form form select{
  background: var(--light-gray);
  padding-left: 15px;
  border-radius: 50px;
/*  box-shadow: 0px 3px 4px 0px inset #b8b5b5;*/
  box-shadow: 1px 1px 0px 0px inset #b8b5b5;
  color: var(--dark-gray);
  font-weight: 500;
  border: none;
  margin-bottom: 15px;
  width: 49%;
  height: 60px;
  outline: none;
}
.hci_form form textarea{
  background: var(--light-gray);
  padding-top: 20px;
  padding-left: 15px;
  border-radius: 20px;
/*  box-shadow: 0px 3px 4px 0px inset #b8b5b5;*/
  box-shadow: 1px 1px 0px 0px inset #b8b5b5;
  color: var(--dark-gray);
  font-weight: 500;
  outline: none;
  border: none;
  margin-bottom: 15px;
  width: 100%;
}
.hci_form form button{
  background: var(--dark-blue);
  color: #fff;
  width: 100%;
  height: 50px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
}
.hci_form form button:hover{
  background: var(--red);
}
/* ---------------- old Footer ------------- */
/*#footer{
  padding: 50px 0;
  background: var(--light-gray);
}
#footer h4{
  font-weight: 600;
  margin-bottom: 30px;
}
.ftr_abt_ru{
  margin-top: 30px;
  margin-bottom: 10px;
}
.ftr_abt_ru_txt span{
  font-weight: 800;
  color: var(--blue);
}
.footer_links ul li,
.footer_socl_link ul li{
  margin-bottom: 5px;
}
.ftr_pc{
  color: var(--light-gray);
}
.footer_about ul li a,
.footer_links ul li a,
.footer_socl_link ul li a{
  color: var(--black);
  transition: 0.3s;
}
.footer_about ul li a:hover,
.footer_links ul li a:hover,
.footer_socl_link ul li a:hover{
  color: var(--blue);
}*/

/* ----------------- Copy Right -------------- */
/*#copyRight{
  border-top: 1px solid var(--gray);
  padding: 20px 0;
}
.copy_right p,
.copy_right a{
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
}
.copy_right a:hover{
  color: var(--blue);
}*/

/* ---------------- Footer ------------- */
#footer{
  padding-top: 50px;
/*  background: var(--light-gray);*/
/*  background: linear-gradient(#206eb1ed, #206eb1ed),*/
  background: linear-gradient(#206eb1e3, #206eb1e3),
              url('../img/home/footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.footer_about{
  padding-left: 30px;
}
#footer h4{
  font-weight: 600;
  margin-bottom: 30px;
}
.ftr_lgo{
  width: 90%;
  height: auto;
  margin-bottom: 40px;
  margin-top: 10px;
}
.ftr_abt_txt{
  line-height: 2;
}
.ftr_abt_ru_txt span{
  font-weight: 800;
}
.ftr_abt_ru_txt span i{
  font-size: 18px;
  margin-right: 10px;
}
.footer_links ul li,
.footer_socl_link ul li{
  margin-bottom: 5px;
}
.ftr_pc{
  opacity: 0;
/*  color: var(--light-gray);*/
}
.footer_about ul li a,
.footer_links ul li a,
.footer_socl_link ul li a{
  color: #fff;
  transition: 0.3s;
/*  font-weight: 500;*/
}
.footer_about ul li a:hover,
.footer_links ul li a:hover,
.footer_socl_link ul li a:hover{
  color: var(--red);
}
.ftr_abt_ru {
  margin-top: 30px;
  margin-bottom: 10px !important;
}
.ftr_hcsm_lnk a{
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-top: 20px;
}
.hcsm_lnk i{
  color: var(--blue);
/*  font-size: 22px;*/
  font-size: 18px;
  font-weight: 500;
}
.ftr_hcsm_lnk a:hover{
  color: var(--red);
}
/* ----------------- Copy Right -------------- */
#copyRight{
  padding: 20px 0;
  background: #12558eeb;
  margin-top: 50px;
}
.copy_right p,
.copy_right a{
  margin-bottom: 0;
  font-size: 14px;
/*  font-weight: 600;*/
  color: #fff;
}
.copy_right a:hover{
  color: var(--red);
}

/*---------------------------------------------------------------
About Us
----------------------------------------------------------------*/
#Abouthero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(#206eb1b0, #206eb1b0),
              url("../img/home/banner-image.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 99;
  transition: 0.3s;
/*  margin-top: 179px;*/
/*  margin-top: 219px;*/
  margin-top: 85px;
}
#Abouthero h1{
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  padding-left: 50px;
}
.abt_mp{
  font-weight: 700;
}
/*---------------------------------------------------------------
Contact Us
----------------------------------------------------------------*/
.cnct_loc_map_row{
  justify-content: space-evenly;
  margin-top: 30px;
}
.cnct_loc_map{
  width: 280px;
  height: 280px;
  border-radius: 12%;
/*  box-shadow: 1px 2px 7px #d8d8d8;*/
  box-shadow: 3px 3px 3px #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.cnct_loc_map iframe{
/*  border-radius: 50%;*/
  border-radius: 12%;
  width: 270px;
  height: 270px;
  border: 3px solid #fff;
}
.cnct_loc_dhing{
  font-weight: 600;
  margin-bottom: 15px;
}
/*---------------------------------------------------------------
All Product Page
----------------------------------------------------------------*/
.nav-pills .nav-link {
    background: var(--light-gray);
    border: 0;
    border-radius: 50px;
    color: var(--black);
    padding: 10px 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--blue);
}
/*---------------------------------------------------------------
Product Detail Page
----------------------------------------------------------------*/ 
.vmt_prd_dtl_row{
  padding: 40px 60px;
} 
.vpd_hding{
  font-weight: 600;
  margin-bottom: 20px;
}
.vmt_prd_dtl ul li{
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 10px;
}
.vmt_prd_dtl ul li span{
  margin-right: 15px;
  font-size: 20px;
  color: var(--blue);
}
.vmt_prd_img img{
  width: 100%;
  height: 100%;
}

.vmt_prd_tbl table{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.vmt_prd_tbl table thead{
  color: #fff;
  background: var(--blue);
}
.vmt_prd_tbl table thead td{
  padding: 20px 5px;
  font-size: 18px;
  font-weight: 500;
}
.vmt_prd_tbl table tbody{
}
.vmt_prd_tbl table tbody tr{
  box-shadow: 0px 2px 5px var(--dark-gray);
}
.vmt_prd_tbl table tbody tr td{
  padding: 20px 0;
}

/*---------------------------------------------------------------
Collaborations Page
----------------------------------------------------------------*/
#Colbr{
  margin: 50px 15px;
}
.colbrt_hding {
    font-size: 20px;
    color: #69939a;
    margin-bottom: 0;
}
.colbrt_sbhding {
  font-size: 35px;
  margin: 10px 0 30px 0;
}

.clb_brf_row{
  margin-top: 50px;
}
.clb_brf1{
  padding-right: 40px;
}
.clb_brf2{
  padding-left: 40px;
}
.clb_brf_hding {
    font-size: 20px;
    color: #69939a;
    margin-bottom: 0;
}
.clb_brf_sbhding {
  font-size: 35px;
  margin: 10px 0 30px 0;
}
.clb_knw_mor {
    background: var(--dark-blue);
    color: #fff;
    width: 250px;
    height: 50px;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clb_knw_mor:hover{
  color: #fff;
  background: var(--red);
}

.clb_img{
  background: var(--light-gray);
}
.clb_img img{
  padding: 20px 40px;
}

@media screen and (max-width: 991px){
  .clb_brf_hding {
    font-size: 18px;
  }
  .clb_brf_sbhding {
    font-size: 25px;
  }
}

@media screen and (max-width: 767px){
  .clb_img{
    margin: 20px 0;
  }
}
@media screen and (max-width: 480px){
  .clb_brf_hding {
    font-size: 16px;
  }
  .clb_brf_sbhding {
    font-size: 21px;
  }
}


/*============ Popup Modal ============*/
@media (min-width: 576px){
  .modal-dialog {
    max-width: 80%;
    margin: 7.75rem auto;
  }
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 2rem;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem 0 4rem;
/*  border-bottom: 1px solid #dee2e6;*/
  border-bottom: 0;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: 1rem -0.5rem -0.5rem auto;
  background: #044752;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.iccb{
  font-size: 33px;
  font-weight: 600;
}

.modl_isi_bsi{
  padding: 20px 0;
}
.msb_brf_txt{
  color: var(--red);
  font-weight: 600;
  font-size: 20px;
}
.msb_brf_txt span{
  color: #69939a;
}

.modl_alrt{
  background: var(--red);
  padding: 15px 15px;
  margin-bottom: 20px;
}
.modl_alrt_hd{
  font-weight: 600;
}

.mdl_top_bdr{
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 10px;
  background: var(--blue);
}
.mdl_botm_bdr{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95%;
  height: 10px;
  background: var(--blue);
}

@media screen and (max-width: 992px){
  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: .5rem;
  }
  .iccb {
    font-size: 30px;
    font-weight: 600;
  }
  .msb_brf_txt {
    font-weight: 600;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px){
  .iccb {
    margin-top: 15px;
  }
  .modl_isi_bsi {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }
}


@media screen and (max-width: 580px){
  .modal-header {
    padding: 1rem 1rem 0 1rem;
  }
  .iccb {
    font-size: 25px;
  }
  .msb_brf_txt {
    font-size: 16px;
  }
}

/*=====================================*/

/*---------------------------------------------------------------
Responsiveness
----------------------------------------------------------------*/
@media screen and (max-width: 1024px){
  .footer_about{
    padding-left: 10px;
  }
}
/*---------------------------------------------------------------
Responsiveness
----------------------------------------------------------------*/
@media screen and (max-width: 991px){
  /*section{
    overflow-x: hidden;
  }*/
  .contact-info p a{
    font-size: 14px;
  }
  .contact-info p a i{
    display: none;
  }
  #header .logo img {
    /*width: 205px;*/
    width: 17rem;
    height: auto;
  }
  .hdr_bcl_link {
    height: 50px;
    width: 22%;
  }
  /* baner video */
  #hero {
    width: 100%;
    height: auto;
  }
  .homehero_txt {
    top: 50%;
    left: 50%;
    line-height: 1;
    width: 95%;
  }
/*  #hero p {
    width: 98%;
  }*/
/*  .ldyp_link{
    width: 40%;
  }*/
  .hm_srvc_sbhding {
    font-size: 30px;
  }
  #hero h1 {
    font-size: 40px;
    font-weight: 700;
  }
  #hero h2 {
/*    font-size: 33px;*/
/*    font-weight: 600;*/
    font-size: 43px;
  }
  .hm_srvc_hding,
  .ogb_hding,
  .wam_hding,
  .hpcb_hding,
  .cst_exp_hding,
  .hcgit_hding {
    font-size: 18px;
  }
  .hm_srvc_sbhding,
  .ogb_sbhding,
  .wam_txt,
  .hpcb_sbhding,
  .hcgit_sbhding{
    font-size: 25px;
  }
  .ogb_txt {
    line-height: 1.3;
  }
  .hpc_nme {
    font-weight: 500;
  }
  .hom_prd{
    border: 10px solid #fff;
  }
  .hom_prd_img {
    width: 250px;
    height: 160px;
    margin-bottom: 10px;
  }
  .cst_exp_txt {
    font-size: 30px;
  }
  /* ------ Counter div start ------*/
  #EXCLCEFT {
    background: var(--light-gray);
    margin: 0 20px 50px 20px;
    padding: 80px 20px;
  }

  /* ----------------------------- */
  .contr_prj {
    padding: 40px 15px;
    width: 100%;
    text-align: center;
  }
  .contr_prj_lnk h5 {
    font-weight: 600;
    font-size: 16px;
  }
  .hci {
    padding: 50px 25px;
  }
  .hci_loc_img {
    width: 40px;
    height: 40px;
  }
  .hci_loc li img {
    width: 20px;
    height: auto;
  }
  .hcc {
    padding: 15px 15px;
  }
  .hcch_hding {
    font-size: 18px;
  }
  .hcch_shding {
    font-size: 25px;
  }
  .hcc a {
    width: 210px;
    height: 210px;
  }
  #footer{
    overflow-x: hidden;
  }
  /* ============= About Us ============ */
  #Abouthero {
    width: 100%;
    height: 250px;
  }
  #Abouthero h1 {
    font-size: 35px;
    font-weight: 600;
    padding-left: 25px;
  }
  /* ============= Contact Us ============ */
  .cnct_ofc_loc {
    justify-content: start !important;
    text-align: center;
  }
  .cnct_loc_map {
    width: 180px;
    height: 180px;
  }
  .cnct_loc_map iframe {
/*    border-radius: 50%;*/
    width: 170px;
    height: 170px;
  }
  .cnct_loc_dhing {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
  }
  /* ============= Product Detail page ============ */
  .tab-content {
    padding: 11px;
  }
  .vmt_prd_dtl_row {
    padding: 40px 20px;
  }
  .vmt_prd_img {
    align-items: start !important;
  }
  .vmt_prd_img img {
    width: 100%;
    height: auto;
  }
  .home_prd_ctg {
    padding-right: 0rem!important;
    padding-left: 0rem!important;
  }
}

/*---------------------------------------------------------------
Responsiveness for Large Screen Mobile 
----------------------------------------------------------------*/
@media screen and (max-width: 767px){
  .owa_top {
    padding-right: 20px;
  }
  #topbar {
    height: 155px;
    width: 100%;
    padding: 0 10px;
    background: #fff;
  }
  .cta{
    justify-content: center;
    margin-bottom: 10px;
  }
  .top_srch_bar{
    margin-bottom: 5px;
  }
  .contact-info{
    align-items: center !important;
  }
  #header{
/*    top: 154px;*/
/*    top: 194px;*/
    height: 98px;
    padding: 0 10px;
  }
  #header .logo img {
    width: 130px;
    height: auto;
  }
  .hdr_bcl_link {
    height: 50px;
    width: 33%;
  }
  #hero{
    width: 100%;
/*    height: 450px;*/
/*    margin-top: 97px;*/
/*    margin-top: 249px;*/
  }
  #hero h1 {
/*    font-size: 35px;*/
    font-size: 29px;
    font-weight: 700;
  }
  #hero h2 {
/*    font-size: 30px;*/
    font-size: 33px;
    font-weight: 600;
  }
/*  #hero p {
    width: 95%;
  }*/
  .ldyp_link {
    width: 80%;
    font-weight: 500;
  }
  .our_goal_img{
    margin: 20px 0;
  }
  .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .hom_prd_row {
    justify-content: space-evenly;
    margin-top: 30px;
    margin: 30px 10px 0 10px;
  }
  .hom_prd {
    border: 0;
    margin-top: 15px;
  }
  #CstExp {
    padding: 60px 10px;
    overflow-x: hidden;
  }
    .hcc a{
/*  width: 98%;*/
    width: 150px;
    height: 150px;
  }
    /* ------ Counter div start ------*/
  #EXCLCEFT {
    margin: 0 20px 50px 20px;
    padding: 50px 20px;
  }
  .exlnc_crtf{
    margin-top: 20px;
  }

  .contr_prj_div{
    margin-top: 15px;
  }
  .ftr_pc{
    display: none;
  }
  #footer {
    text-align: center;
/*    padding: 20px 0 50px 0;*/
  }
  #footer h4 {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .footer_links ul li {
    margin-bottom: 4px;
  }
  .ftr_hcsm_lnk{
    justify-content: center;
  }
  /* ======== About Us ========== */
  #Abouthero {
    width: 100%;
    height: 210px;
/*    margin-top: 97px;*/
/*    margin-top: 249px;*/
  }
  /* ======== Contact Us ========== */
  .cnct_ofc_loc {
    margin-top: 20px;
  }
  .cnct_loc_dhing {
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 20px;
  }
  /* ======== Product Detail Page ========== */
  .vmt_prd_dtl_row {
    padding: 40px 10px;
  }
  .vmt_prd_img img{
    margin-top: 20px;
  }
  .vmt_prd_tbl table thead td {
    padding: 15px 5px;
    font-size: 16px;
    font-weight: 500;
  }
}


/* privacy policy */

    .p-inforeq{
      font-weight: 700;
    }

    .shareinfo{
      margin-top: 30px;
      margin-bottom: 30px;
    }

    .changetoprivacy{
      margin-top: 30px;
      margin-bottom: 30px;
    }

    #prvcy-polcy{
      margin-top: 20px;
      margin-bottom: 40px;
      line-height: 30px;
    }
    #prvcy-polcy .vmt-pp{
      margin-top: 40px;
      margin-bottom: 40px;
      font-size: 16px;
      font-weight: 600;
      color: #69939a;
    }
    #prvcy-polcy .pp-desgn{
      margin-top: 30px;
      margin-bottom: 30px;
    }
    #prvcy-polcy h3{
      margin-bottom: 20px;
      text-transform: capitalize;
    }
    #prvcy-polcy .prsnl-info{
      margin-bottom: 20px;
      color:#69939a;
      padding-top: 10px;
      font-size: 15px;
    }
    #prvcy-polcy .p-info{
    font-weight: 700;

    }
    #prvcy-polcy span{
      color: #69939a;
    }
    #prvcy-polcy h5{
    line-height: 30px;
    }

/* privacy policy ends here  */





/*==============================================================
Mobile View
===============================================================*/
@media screen and (max-width: 480px){
    
  .owa_top marquee {
    font-weight: 500;
    font-size: 14px;
  }

  .zero-img{
    height: 50px;
   }
   .four-img{
    height: 50px;
   }

   .four-2-img{
    height: 50px;
   }

   .nf-hd{
    margin-top: 35px;
   }




  .error {
    margin-bottom: 15px;
}


  .tsb input{
    font-size: 14px;
  }
  .tci_link {
    background: var(--red);
    color: var(--white);
    height: 40px;
    font-size: 14px;
  }
  #header .logo img {
    /*width: 120px;*/
    width: 12rem;
    height: auto;
  }
  .hdr_bcl_link {
    height: 40px;
    font-size: 14px;
    /*width: 39%;*/
    width: 7rem;
  }
  #hero h1 {
    font-size: 23px;
    font-weight: 600;
  }
  #hero h2 {
    font-size: 20px;
/*    font-weight: 500;*/
  }
  #hero p {
    display: none;
  }
  .ldyp_link {
    width: 99%;
    font-weight: 500;
    font-size: 14px;
  }
  .hm_srvc_hding, .ogb_hding, .wam_hding, .hpcb_hding, .cst_exp_hding, .hcgit_hding {
    font-size: 16px;
  }
  .hm_srvc_sbhding, .ogb_sbhding, .wam_txt, .hpcb_sbhding, .hcgit_sbhding {
    font-size: 21px;
  }
  .hm_srvc_km_lnk{
    font-size: 14px;
    height: 40px;
    width: 190px;
  }
  .our_goal_img img{
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .home_all_prdct_link a{
    font-size: 14px;
    height: 40px;
  }
  .cst_exp_cont {
    padding: 80px 0;
  }
  .cst_exp_txt {
    font-size: 19px;
  }
    /* ------ Counter div start ------*/
  .exlnc_crtf_row {
    margin-top: 0;
  }
  .exlnc_crtf{
    flex-direction: column;
  }
  .exct_img {
    width: 60%;
    height: auto;
    margin-bottom: 10px;
  }
  .exct_brf {
    width: 98%;
    height: auto;
  }

  #HomColChro {
    padding: 50px 20px;
  }
  .hcch_hding {
    font-size: 16px;
  }
  .hcch_shding {
    font-size: 21px;
  }
  
  .hcsm {
    margin-top: 35px;
    flex-direction: column;
  }
  .hcif_row {
    flex-direction: column;
  }
  .hci_form form input, .hci_form form select{
    width: 100%;
    font-size: 14px;
    height: 40px;
  }
  .hci_form form textarea{
    font-size: 14px;
  }
  .hci_form form button{
    font-size: 14px;
    height: 40px;
  }
    .hcch_hding {
    font-size: 16px;
  }
  .hcch_shding {
    font-size: 21px;
  }
/*  .hcc a {
    width: 110px;
    height: 110px;
  }*/
  .copy_right {
    flex-direction: column;
  }

  /* ======== About Us ============= */
  #Abouthero {
    width: 100%;
    height: 190px;
/*    margin-top: 248px;*/
  }
  #Abouthero h1 {
    font-size: 25px;
    font-weight: 600;
    padding-left: 10px;
  }
}

/*----- Product 2nd Option page ------*/
#PRD2 .prd_prd_ctg_hd{
  font-weight: 600;
  margin: 25px 0;
}
#PRD2 .accordion{
  width: 450px;
  height: auto;
  position: relative;
}
#PRD2 .accordion-item {
  background-color: var(--light-gray);
  border: none;
/*  padding: 10px 20px;*/
  padding: 10px 10px;
}
#PRD2 .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 50px;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
#PRD2 .accordion-item:first-of-type .accordion-button{
     border-top-left-radius: 50px; 
     border-top-right-radius: 50px; 
}
#PRD2 .accordion-item:last-of-type .accordion-button.collapsed {
     border-bottom-right-radius: 50px; 
     border-bottom-left-radius: 50px; 
     margin-bottom: 50px;
}
#PRD2 .accordion-button:not(.collapsed) {
  color: var(--black);
  background-color: #fff;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
#PRD2 .accordion-button::after {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-left: auto;
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-size: 10px;
    transition: transform .2s ease-in-out;
}
#PRD2 .accordion-flush .accordion-item .accordion-button {
     border-radius: 50px; 
}
#PRD2 .nav-pills .nav-link.active, #PRD2 .nav-pills .show>.nav-link {
    color: var(--black);
    background-color: transparent;
}
#PRD2 .nav-pills .nav-link {
    background: var(--light-gray);
    border: 0;
    border-radius: 50px;
    color: var(--black);
    padding: 10px 10px; 
    margin-right: 10px;
    text-align: left;
}


#PRD2 .tab-content {
    font-size: 17px;
    text-align: center;
    position: absolute;
    line-height: 25px;
    margin-top: 30px;
    border-radius: 19px;
    top: -50px;
    left: 470px;
    width: calc(305% - 460px);
    width: 800px;
    height: 100%;
}
#PRD2 .prd_prd{
  width: 370px;
  height: auto;
  padding: 20px;
  background: var(--light-gray);
  margin: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#PRD2 .prd_prd_img {
    width: 90%;
    height: auto;
    margin-bottom: 10px;
}
#PRD2 .prd_prd_hding {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}
#PRD2 .prd_prd_lnk {
    color: var(--blue);
    font-weight: 600;
}

@media screen and (max-width: 1024px){
  #PRD2 .accordion{
    width: 260px;
    height: auto;
    position: relative;
  }
  #PRD2 .prd_prd{
    width: 260px;
    height: auto;
  }
  #PRD2 .tab-content{
    left: 260px;
    width: 600px;
  }
  #PRD2 .home_prd_ctg {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 992px){
  #PRD2 .home_prd_ctg{
    padding: 0 10px !important;
  }
  #PRD2 .accordion {
      width: 215px;
      height: auto;
  }
  #PRD2 .nav-pills .nav-link {
    font-size: 14px;
  }
  #PRD2 .tab-content {
      font-size: 16px;
      line-height: 15px;
      border-radius: 19px;
      top: -50px;
      left: 215px;
      width: 505px;
      height: 100%;
  }
  #PRD2 .prd_prd {
    width: 230px;
    height: auto;
  }
}


@media screen and (max-width: 767px){
  #PRD2 .accordion {
    width: 100%;
    height: auto;
  }
  #PRD2 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    font-weight: 600;
    color: var(--red);
  }
  #PRD2 .tab-content {
      font-size: 14px;
      line-height: 15px;
      border-radius: 19px;
      top: 0;
      left: 0;
      width: 100%;
      position: relative;
      height: 100%;
  }
}

@media screen and (max-width: 567px){
  #PRD2 .nav-pills .nav-link{
    padding: 2px 10px;
  }
  .acd_bdy{
    display: block !important;
  }
  #PRD2 .prd_prd {
    width: 100%;
    height: auto;
  }
}

