/* ===== Custom Navbar Styles css ===== */
* html {
  scroll-behavior: smooth;
   overflow-x: hidden;
   margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
  overflow-x: hidden;
   font-family: "Roboto", sans-serif;
}



/* --------------- .paykosh_top-header navbar start css---------------- */
.paykosh_top-header .navbar {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* padding: 0.8rem 1rem; */
  z-index: 999;
}

.paykosh_top-header .navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.paykosh_top-header .navbar-brand img{
  width: 100%;
  height: 60px;
  object-fit: cover;
}
.navbar-nav .nav-item {
  /* margin: 0 8px; */
  position: relative;
}
.paykosh_top-header .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #021332;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 3px;
  padding: 0.5rem .8rem !important;
  text-align: center;
  text-decoration: none;
  border: none !important;
}
.paykosh_top-header .navbar-nav .nav-link:hover {
  color: #fff !important;
  /* background-color: #FC6539; */
    /* background-color: #3a6bac; */
   /* background-image: linear-gradient(to right, #4b66a3, #bd4a64); */
   background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    text-align: center;
   border: none !important;
}
/* Blur effect on hover */
.navbar-nav .nav-item:hover {
  backdrop-filter: blur(3px);
  border: none;
}
/* Dropdown Menu */
.paykosh_top-header .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.315);
  border-radius: .3rem;
  padding: 0rem;
  margin-top: 0.5rem;
  min-width: 250px;
 border: 1px solid #d9d6d6;
}
.paykosh_top-header .dropdown-menu:hover{
    border-radius: .3rem;
}
.paykosh_top-header .dropdown-menu .dropdown-item {
  font-size:.8rem;
  font-weight:500;
  color: #021332e6;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
  text-decoration: none;
 border-bottom: 1px solid #dddddd73;
}
.paykosh_top-header .dropdown-menu .dropdown-item:hover {
 /* background-color: #3a6bac !important; */
     /* background-image: linear-gradient(to right, #4b66a3, #bd4a64); */
     background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
 color:#fff;
 }
/* Custom Contact Button */
.paykosh_top-header .button {
  /* background: linear-gradient(90deg, #ff5e1a, #3b6aac); */
     /* background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%); */
     /* background-image: linear-gradient(to right, #e97800 0%, #811d00 100%); */
     background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
  color: #fff;
  padding: 12px 15px;
  border: 0;
  border-radius: 4px;
 font-size: 1rem;
 font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
    margin: 0.25rem;
  transition: transform 0.8s;
  box-shadow: none;
}
.paykosh_top-header .button:hover {
  transform: scale(1.00);
}
/* --------------- .paykosh_top-header navbar end css---------------- */


/* --- ============ paykosh_carousel start css ================ --- */
.paykosh_carousel .carousel .carousel-indicators {
 color:#FEA444;
  width: 50px;
  margin: 0 auto;
}

.paykosh_carousel .carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #FEA444;
}
.paykosh_carousel-icon i{
  font-size: 2rem;
  color: #FEA444;
}
.paykosh_carousel .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 50px;
    height: 11px;
    border-radius: 50%;
    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: .5;
    transition: opacity .6s ease;
  }
.paykosh_carousel .carousel .carousel-inner {
  background-color: #000;
  width: 100%;
}

.paykosh_carousel .carousel-inner .carousel-item {
  position: relative;
  height: 85vh;
}

.paykosh_carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

/* ✅ Overlay with flexbox for centering */
.paykosh_carousel .carousel-item .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

/* ✅ Centered caption inside overlay */
.paykosh_carousel .carousel-caption {
  position: static; /* static since it's inside flexbox */
  color: #fff;
  z-index: 3;
}

.paykosh_carousel .carousel-caption h1{
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.paykosh_carousel .carousel-caption h1 span{
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
 background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
 border-radius: .2rem;
padding: 0rem .5rem;
}
.paykosh_carousel .carousel-caption p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
  text-transform: math-auto;
color:#fff;
}
/* --- ============ paykosh_carousel end css ================ --- */












/* --- ============ paykosh_who-sec start css ================ ---  */
.paykosh_who-sec{
background:
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      repeating-conic-gradient(rgba(234, 167, 142, 0.01) 0 25%,#0000 0 50%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 calc(12px/2)/12px 12px
      rgba(234, 167, 142, 0.01);
      padding: 3.5rem 0rem;
      position: relative;
    }
  .paykosh_who-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  /* background: linear-gradient(
    to right,
    #4b66a3 0%,
    #bd4a64 50%,
    #FEA444 50%,
    #FC6539 100%
  ); */
background: linear-gradient(to right, #4b66a352 0%, #bd4a64ad 32%, #fea4446e 82%, #fc653973 100%);
}
/* .paykosh_who-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px; 
  width: 100%;
  background: linear-gradient(to right, #000b40, #95310c); 
} */
.paykosh_who-sec .paykosh_sec-main{
padding: 0rem 0rem 3rem 0rem;
text-align: center;
width: 60%;
margin: 0 auto;
line-height: normal;
}
 .paykosh_sec-main h1{
  font-size: 3rem;
  font-weight: 700;
  /* color:#021332; */
  color: #0c203a;
  text-transform: capitalize;
  text-align: center;

}
.paykosh_sec-main p{
  font-size: 1rem;
  font-weight: 500;
  color:#021332e6;
text-transform: lowercase;
}
.paykosh_who-sec .who_right-text h3{
     font-size: 2rem;
    text-transform: capitalize;
      word-spacing: normal;
  letter-spacing: normal;
  text-align: left;
  color: #0c203a;
      font-weight: 700;
}
.who_right-text .who-strong{
     font-size: 2rem;
    text-transform: capitalize;
      word-spacing: normal;
  letter-spacing: normal;
  text-align: left;
  color: #e97800;
}
.paykosh_who-sec .who_right-text  p{
  font-size: 1rem;
  font-weight: 500;
  color:#021332e6;
text-transform: lowercase;
}
 .who_right-desc{
 text-align: start;
 }
 .who_right-desc p {
  color: #021332e6;
 font-size: 1rem;
 font-weight: 500;
  line-height: normal;
  margin-bottom: .3rem;
  }
 .who_right-desc p strong {
    color: #e97800f2;
 font-size: 1rem;
 font-weight: 500;
  }
.paykosh_who-sec .who_sec-img img{
  width:90%;
  height: auto;
  object-fit: cover;
}
/* --- ============ paykosh_who-sec end css ================ ---  */

/* --- ============  paykosh_product-sec section start css ================ ---  */
.paykosh_product-card-sec .row {
  display: flex;
  flex-wrap: wrap;
}
.paykosh_product-card-sec .col-lg-4 {
  display: flex;
}
.paykosh_product-card-sec .pay-card {
  display: flex;
  flex: 1;
  margin-bottom: 1.5rem;
}
.paykosh_product-card-sec{
  margin: 3rem 0rem;
}
.paykosh_product-sec{
  margin: 3.5rem 0rem;
}

.pay-card .card{
 -webkit-box-shadow: -3.5px 5.5px 8.5px 2.5px rgba(230, 225, 225, 0.46);
-moz-box-shadow: -3.5px 5.5px 8.5px 2.5px rgba(230, 225, 225, 0.46);
box-shadow: -3.5px 5.5px 8.5px 2.5px rgba(230, 225, 225, 0.46);
border: 2px solid #e97800;
padding: 1rem;
display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.pay-card .card:hover{
background: linear-gradient(358deg, rgba(235, 84, 38, 1) 35%, rgba(254, 164, 68, 1) 102%, rgba(255, 255, 255, 1) 114%);
    border: 2px solid #fff;
    border: 2px solid #ffffff9e;
      transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.pay-card .card img{
  width: 200px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}
.pay-card .card  .card-body {
  text-align: center;
  flex-grow: 1;

}
.pay-card .card  .card-body h5{
  font-size: 1.3rem;
  font-weight:700;
  color:#0c203a;
}
.pay-card .card:hover .card-body h5{
  color:#fff;
}
.pay-card .card  .card-body p {
    font-size: .9rem;
    font-weight: 500;
    color: #021332e6;
    text-transform: lowercase;
}
.pay-card .card:hover .card-body p{
  color:#fff;
}
.pay-card .card .pay_pro-card-btn{
/* background-image: linear-gradient(to right, #e97800 0%, #811d00 100%); */
background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    color: #fff;
    padding: 12px 15px;
    border: 0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    margin: 0.25rem;
    transition: transform 0.8s;
    box-shadow: none;
}

/* --- ============  paykosh_product-sec section end css ================ ---  */

/* --- ============  Paykosh Borrowing section start css ================ ---  */
  .paykosh_borrowing{
    /* background-image: linear-gradient(to right, #000b40, #95310c); */
       /* background-image: linear-gradient(to right, #4b66a3, #bd4a64); */
       background-image: linear-gradient(to right, #4b66a3 30%, #FC6539 100%);
/* background: #4B66A3;
background: linear-gradient(90deg, rgba(75, 102, 163, 1) 0%, rgba(189, 74, 100, 1) 50%); */
    padding: 4rem 0rem;
}
.paykosh_borrowing-m .borrowing_right-text h1 {
    font-size: 3rem;
    font-weight: 700;
    /*color: #e97800;*/
    color: #fff;
    text-transform: capitalize;
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;*/
    line-height: normal;
}
.paykosh_borrowing-m .borrowing_right-text p{
      font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-transform: math-auto;
}

.paykosh_borrowing-m .borrowing_right-text .borrowing-btn{
/* background-image: linear-gradient(to right, #e97800 0%, #811d00 100%); */
background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    color: #fff;
    padding: 12px 15px;
    border: 0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    /* white-space: nowrap; */
    text-decoration: none;
    cursor: pointer;
    margin: 0.25rem;
    transition: transform 0.8s;
    box-shadow: none;
}

.browing_sec-img{
  text-align: center;
}
.browing_sec-img img{
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
border-radius: .5rem;
  border:2px solid #fff;
  
}
/* --- ============  Paykosh Borrowing section end css ================ ---  */

/* --- ============  paykosh_upcoming-Products section start css ================ ---  */
.paykosh_upcoming-Products{
  background:
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      repeating-conic-gradient(rgba(234, 167, 142, 0.01) 0 25%,#0000 0 50%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 calc(12px/2)/12px 12px
      rgba(234, 167, 142, 0.01);
      padding: 3.5rem 0rem;
}
.paykosh_upcoming-heading{
  text-align: center;
  margin:1.5rem 0rem 0rem 0rem;
 
}
.paykosh_upcoming-heading h3{
  font-size: 2rem;
    text-transform: capitalize;
    word-spacing: normal;
    letter-spacing: normal;
    color: #0c203a;
    font-weight: 700;
     margin-top: 1rem;
}
.paykosh_upcoming-heading h3 span{
  font-size: 2rem;
    text-transform: capitalize;
    word-spacing: normal;
    letter-spacing: normal;
    text-align: left;
    color: #e97800;
}
.paykosh_upcoming-heading p{
  font-size: 1rem;
    font-weight: 500;
    color: #021332e6;
    text-transform: lowercase;
    margin-bottom: 0rem;
}
.paykosh_upcoming-card-sec .pay-card .card {
  border: none;
  border-radius: .5rem;
  padding: 1rem;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #4b66a3, #bd4a64) border-box;
  box-shadow: -3.5px 5.5px 8.5px 2.5px rgba(230, 225, 225, 0.46);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 340px;
  border: 2px solid transparent;
   transition: all 0.4s ease-in-out;
}

.paykosh_upcoming-card-sec .pay-card .card:hover{
/* background-image: linear-gradient(to right, #000b40, #95310c); */
  background-image: linear-gradient(to right, #4b66a3, #bd4a64);
    border: 2px solid #fff;
    border: 2px solid #ffffff9e;
      transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.paykosh_upcoming-card-sec .pay-card .card img {
    width: 200px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}
.paykosh_upcoming-card-sec  .pay-card .card  .card-body {
  text-align: center;
  flex-grow: 1;

}
.paykosh_upcoming-card-sec  .pay-card .card  .card-body h5{
  font-size: 1.3rem;
  font-weight:700;
  color:#0c203a;
}
.paykosh_upcoming-card-sec  .pay-card .card:hover .card-body h5{
  color:#fff;
}
.paykosh_upcoming-card-sec  .pay-card .card  .card-body p {
    font-size: .9rem;
    font-weight: 500;
    color: #021332e6;
    text-transform: lowercase;
}
.paykosh_upcoming-card-sec  .pay-card .card:hover .card-body p{
  color:#fff;
}
.paykosh_upcoming-card-sec  .pay-card .card .pay_pro-card-btn{
/* background-image: linear-gradient(to right, #e97800 0%, #811d00 100%); */
background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    color: #fff;
    padding: 12px 15px;
    border: 0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    margin: 0.25rem;
    transition: transform 0.8s;
    box-shadow: none;
}

.paykosh_upcoming-card-sec .row {
  display: flex;
  flex-wrap: wrap;
}

.paykosh_upcoming-card-sec .col-lg-4 {
  display: flex;
}

.paykosh_upcoming-card-sec .pay-card {
  width: 100%;
  margin-bottom: 1.5rem;
}
.paykosh_upcoming-card-sec{
   margin: 2rem 0rem 0rem 0rem;
}
/* --- ============  paykosh_upcoming-Products section end css ================ ---  */

/* --- ============  Paykosh Fintech Leaders section start css ================ ---  */
.paykosh_fintech .browing_sec-img{
  text-align: center;
}
.paykosh_fintech .browing_sec-img img{
  width: 100%;
  /* max-width: 500px; */
  height: auto;
  object-fit: cover;
border-radius: .5rem;
  border:2px solid #fff;
  }
.paykosh_fintech .paykosh_borrowing-m .borrowing_right-text h1 {
    font-size: 3rem;
    font-weight: 700;
    /*color: #e97800;*/
    text-transform: math-auto;
    color: #fff;
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;*/
    line-height: normal;
}
/* --- ============  Paykosh Fintech Leaders section end css ================ ---  */

/* --- ============  Paykosh Fintech Leaders News section start css ================ ---  */
.paykosh_news {
 background-color: #fff;
    padding: 4rem 0rem;
     position: relative;
}
.paykosh_news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  /* background: linear-gradient(
    to right,
    #4b66a3 0%,
    #bd4a64 50%,
    #FEA444 50%,
    #FC6539 100%
  ); */
 background: linear-gradient(to right, #4b66a352 0%, #bd4a64ad 32%, #fea4446e 82%, #fc653973 100%);
}



.paykosh_news .paykosh_news-m .news_right-text .news_paykosh_sec-main h1 {
    font-size: 3rem;
    font-weight: 700;
    /* color: #021332; */
    color: #0c203a;
    text-transform: capitalize;
      -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: transparent;
    line-height: normal;
}

.paykosh_news .paykosh_news-m .news_right-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #021332e6 !important;
    text-transform: lowercase;
}
.news_btn .borrowing-btn{
      /* background-image: linear-gradient(to right, #e97800 0%, #811d00 100%); */
      background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    color: #fff;
    padding: 12px 15px;
    border: 0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    /* white-space: nowrap; */
    text-decoration: none;
    cursor: pointer;
    margin: 0.25rem;
    transition: transform 0.8s;
    box-shadow: none;
   
}
.news_btn .borrowing-btn:hover{
  color: #fff;
 
}
/* --- ============  Paykosh Fintech Leaders News section end css ================ ---  */


/* --- ============  paykosh_donate section start css ================ ---  */
.paykosh_donate{
    background:
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 0/calc(2*12px) calc(2*12px),
      repeating-conic-gradient(rgba(234, 167, 142, 0.01) 0 25%,#0000 0 50%) 0 0/calc(2*12px) calc(2*12px),
      radial-gradient(#0000 66%,rgba(85, 100, 158, 0.04) 68% 70%,#0000 72%) 0 calc(12px/2)/12px 12px
      rgba(234, 167, 142, 0.01);
      padding: 3.5rem 0rem;

}
.paykosh_donate .paykosh_news-m .news_right-text .news_paykosh_sec-main h1 {
    font-size: 3rem;
    font-weight: 700;
    /* color: #021332; */
    color: #0c203a;
    text-transform: capitalize;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: transparent;
    line-height: normal;
}
.paykosh_donate .paykosh_news-m .news_right-text p{
    font-size: 1rem;
    font-weight: 500;
    color: #021332e6 !important;
    text-transform: lowercase;
}

/* --- ============  paykosh_donate section end css ================ ---  */


/* --- ============  paykosh_footer_sec section start css ================ ---  */
.paykosh_footer_sec{
  padding: 3.5rem 0rem;
     /* background-image: linear-gradient(90deg, #df4200, #021734); */
         /* background-image: linear-gradient(to right, #bd4a64, #4b66a3); */
             background-image: linear-gradient(to right, #FC6539 30%, #4b66a3 100%);
    color: #fff !important;
    position: relative;
    z-index: 777;
}

.paykosh_footer_sec .paykosh_footer_logo-text img{
width: 80%;
height: 100%;
object-fit: cover;
background-color: #fff;
padding: 7px;
border-radius: 4px;
}
.paykosh_footer_sec .paykosh_footer_logo-text p{
  font-size: .9rem;
  font-weight: 400;
  color:#fff;
  margin-top: .6rem;
}
.paykosh_footer_link h6{
  font-size: 1rem;
  font-weight: 700;
  color:#fff;
  margin-bottom: 1rem;
}
.paykosh_footer_link p {
  margin-bottom: .5rem;
}
.paykosh_footer_link a{
  font-size: .9rem;
  font-weight: 400;
  color:#fff;
}
.paykosh_footer_link a:hover{
  border-bottom: 1px solid #ffffff85;
}
.paykosh_footer_add p strong{
  font-size: 1rem;
  font-weight: 600;
  color:#fff;
}
.paykosh_footer_add p{
    font-size: .9rem;
  font-weight: 400;
  color:#fff;
}
.paykosh_footer_social-icon a{
      font-size: 15px;
    /* background-color: #3b6aac; */
     /* background-color: #ffffff38; */
        background-image: linear-gradient(225deg, #ff560e, #ffffff38);
    /* padding: 16px; */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 28px;
    color: white;
    align-items: center;
    /* justify-items: right; */
    align-content: center;
    border: 1px solid #ffffff85;
    margin-right: .5rem;
}
.paykosh_footer_social-icon a:hover{
    background-image: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
      border: 1px solid #ffffff85;
}
.paykosh_footer_small{
/* background-color: #3a6bac; */
background: #3A6BAC;
background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(14, 47, 89, 1) 36%, rgba(0, 0, 0, 1) 100%);
padding: .5rem .5rem;
text-align: center;
justify-content: center;
}
.paykosh_footer_small p{
font-size: .7rem;
font-weight: 400;
color: #fff;
margin-bottom: 0px;
}
.paykosh_footer_small p a{
font-size: .7rem;
font-weight: 400;
color: #fff;
}
/* --- ============  paykosh_footer_sec section end css ================ ---  */

















































































    