@charset "UTF-8";
/* @import url("https://fonts.cdnfonts.com/css/general-sans"); */
:root {
  --primary: #631046;
  --light: #000000;
  --dark: #000000;
}

@font-face {
  font-family: "General Sans";
  src: url("../font/GeneralSans/Fonts/WEB/fonts/GeneralSans-Medium.ttf")
    format("truetype");
}
@font-face {
  font-family: "General Sans";
  src: url("../font/GeneralSans/Fonts/WEB/fonts/GeneralSans-Semibold.ttf")
    format("truetype");
}
@font-face {
  font-family: "General Sans";
  src: url("../font/GeneralSans/Fonts/WEB/fonts/GeneralSans-Bold.ttf")
    format("truetype");
}
@font-face {
  font-family: "General Sans";
  src: url("../font/GeneralSans/Fonts/WEB/fonts/GeneralSans-Variable.ttf")
    format("truetype");
}
html,
body {
  font-family: "General Sans", sans-serif;
  overflow-x: hidden;
  /*background: #f8f8f8 !important;*/
    background: #fff !important;
}

p {
  color: #444444;
}

@media (max-width: 600px) {
  p {
    font-size: small !important;
  }
}
h1 {
  color: var(--primary) !important;
}

/* h1,
  h2,
  h3,
  h4 {
    color: #252525;
  } */
@media (max-width: 600px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: large !important;
  }
}
.text-light {
  color: black !important;
}

.cursor-a a .homedesk{
    cursor:pointer !important;
}

.cursor-a{
    z-index: 5;
}

.bg-top-bar {
  background-color: #000;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
  padding-top: 3px;
  padding-bottom: 3px;
}

.social-icon-s {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* background-color: #f7f7f7; */
  background-color: #631046;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon-s i {
  font-size: 16px;
}

.social-icon-s:hover {
  background-color: #ffffff;
  color: #4f0334;
}

.menu-link-s {
  margin-left: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.menu-link-s:hover {
  text-decoration: none;
  color: var(--primary) !important;
}

.ff-secondary {
  font-family: "Poppins", sans-serif !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: var(--primary) !important;
}

.black-t {
  color: #000000 !important;
}

/* ---- custom scroll design ---- */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #cacaca;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #811b52;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #641548;
}

/* ---- custom scroll design ---- */
.p-em {
  padding-right: 13px;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
/* for other pages navbar */
.page-header {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../image/abt-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-pdt {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../image/product-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-yes {
  position: relative;
  margin-bottom: 0px;
  margin-top: 61px;
  padding: 105px 0 122px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../image/contact.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* #mainNavbar {
      top: 44px;
    } */
@media (max-width: 767px) {
  .page-header-pdt {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
  .page-header-yes {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
}
.navbar {
  transition: all 0.3s ease;
}

/* drop down */
.dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}

.dropdown-item.active,
.dropdown-item:active {
  text-decoration: none;
  background-color: var(--primary) !important;
  color: white !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  text-decoration: none;
  background-color: var(--primary) !important;
  color: white !important;
  border-radius: 0px !important;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0 0;
  margin: 0;
  font-size: 1rem;
  color: #666565;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 2px;
}

.dropdown-item {
  padding: 0.55rem 1rem !important;
  font-weight: 500 !important;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 71%;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .dropdown-menu {
    display: none;
    opacity: 0;
    animation: slideDown 0.5s forwards;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    animation: slideUp 0.5s forwards;
    left: 36px;
    border-radius: 10px !important;
    overflow-y: auto !important;
    height: 66vh;
  }
  
    .dropdown-menu::-webkit-scrollbar {
     width: 7px; 
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: #6c757d; 
        border-radius: 3px; 
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background-color: #631046; 
    }
    
     .dropdown-menu::-webkit-scrollbar-track {
        background-color: #e9ecef; 
        border-radius: 4px; 
    }


  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(10%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* drop down */
@media (max-width: 767px) {
  .navbar {
    top: 0px !important;
  }
  .page-header {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
  .banner-headings {
    /* font-size: 2.2em !important; */
    font-size: 1.2em !important;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.4;
  }
  .p-products p {
    margin-top: 20px;
    font-size: 17px;
    padding: 0px 16px;
  }
}
/* for other pages navbar */
.banner-headings {
  color: white;
  font-size: 4em;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
}

.bg-top-bar {
  /* background-color: #ffffff !important; */
  background-color: #e0cfda !important;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 35px;
  padding: 35px 0;
  font-size: 16px;
  font-weight: 500;
  /* color: #ffffff !important; */
  color: #631046 !important;
  text-transform: capitalize;
  outline: none;
  transition: 0.5s;
}

@media (min-width: 991px) and (max-width: 1081px) {
  .navbar-dark .navbar-nav .nav-link {
    font-size: 13px;
  }
}
/* 
    .nav-item.nav-link::after {
      content: "";
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 50%;
      top: 71%;
      background-color: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-item.nav-link:hover::after,
    .nav-item.nav-link.active::after {
      width: 70%;
    }

    @media (max-width: 991.98px) {
      .nav-item.nav-link::after,
      .nav-item.nav-link:hover::after,
      .nav-item.nav-link.active::after {
        width: 0;
      }
    } */
.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: #000000 !important;
}

.navbar-dark.scrolled .nav-link {
  color: black !important;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  /* color: var(--primary) !important; */
  color: #000 !important;
  font-weight: 500;
}

.navbar-dark .navbar-brand img {
  max-height: 53px;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
  }
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600 !important;
  }
  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }
  .navbar-dark .navbar-brand img {
    max-height: 33px !important;
  }
}



@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0px;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
    left: 0;
    z-index: 999;
    background: transparent !important;
  }
  .sticky-top.navbar-dark {
    position: fixed;
    background: white !important;
  }
  
}
/*** Hero Header ***/
.hero-header {
  /* background: url(../image/homebanner-1.png); */

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  background-color: #d9d9d9;
}

.hero-second {
  background-image: url(../image/home2.png);
  background-size: cover;
  background-position: center;
  height: 163px;
}

h1 {
  font-family: "General Sans" !important;
  color: var(--primary);
  font-weight: 500 !important;
  font-size: 1.8em;
  margin-bottom: 19px;
}

.image-container {
  text-align: center;
  margin-bottom: 32px;
}

.image-container img {
  border-radius: 4%;
  width: 90%;
  height: 74%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.image-container img:hover {
  transform: scale(1.1);
}

.p-products {
  padding: 10px 2.1rem;
}

.p-products p {
  margin-top: 24px;
  text-align: start;
  color: black;
  font-size: 18px;
  word-break: break-all;
  font-weight: 500;
  padding: 0px 16px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more:hover {
  color: black;
}

.p-padding {
  padding: 10px 3rem;
}

.p-whyc {
  padding-bottom: 5rem !important;
  padding-top: 3rem !important;
}

.whychooseus {
  padding: 10px 1.3rem;
}

.px-mob {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}

.mob-whyc-p {
  margin-bottom: 3rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-products {
    padding: 10px 1rem;
  }

  .px-mob {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .p-products p {
    margin-top: 24px;
    font-size: 16px;
    word-break: break-all;
    padding: 0px 9px;
  }
}
@media (min-width: 1025px) and (max-width: 1070px) {
  .p-products p {
    margin-top: 24px;
    font-size: 16px;
    word-break: break-all;
    padding: 0px 9px;
  }
}
@media (max-width: 767px) {
  .mob-whyc-p {
    margin-bottom: 2rem !important;
  }
  .p-whyc {
    padding-bottom: 4rem !important;
    padding-top: 0rem !important;
  }
  .px-mob {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .p-products {
    padding: 10px 0rem;
  }
  /* .image-container {
        margin-bottom: -19px;
      } */
  .p-padding {
    padding: 0px 0rem;
  }
  .abt-text {
    color: #000000;
    font-size: 22px !important;
    margin-bottom: 9px !important;
  }
  .section-title {
    font-size: 1.1rem !important;
    margin-bottom: 13px !important;
  }
  .black-t {
    font-size: 1.4em !important;
  }
  .abt-mob {
    padding: 0 17px;
  }
  .mob-direction {
    flex-direction: column-reverse;
  }
}
/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  font-family: "Open Sans" !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(95, 95, 95, 0.8784313725);
  font-weight: 400 !important;
  margin-bottom: 21px;
}

.abt-text {
  color: #1a1a1a;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500 !important;
  margin-bottom: 15px;
}

.abt-h {
  font-size: 17px;
  font-weight: 500;
}

.abt-p {
  color: #444444 !important;
  margin-bottom: 40px !important;
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
}

.count-text {
  font-size: 1.9rem !important;
  color: black !important;
}

.count-p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.9em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}

.readmore-btn {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 15px;
  border-radius: 50px;
  padding: 12px 24px 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.readmore-btn:hover {
  background-color: #002643 !important;
  color: #ffffff !important;
}

.service-item {
  min-height: 300px; /* Adjust based on your design needs */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s;
}

.swiper-slide {
  height: auto;
}

.service-border {
  border: 2px solid #004377;
  border-radius: 6px !important;
}

.service-item.active {
  background: #631046;
}

.service-item:hover {
  /* background: var(--primary); */
  background: #631046;
}

.service-item * {
  transition: 0.5s;
}

.service-h1 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-item-p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.98em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}

.service-item:hover * {
  color: var(--light) !important;
}

.service-image {
  width: 50px;
  height: 50px;
  transition: filter 0.5s;
}

.service-item:hover .service-image {
  filter: brightness(0) invert(1);
}

.blackicon {
  color: #252525 !important;
}

.home-background {
  background-image: url(../image/home-4.png);
  background-size: cover;
  background-position: center;
  position: relative;
  height: 440px;
  color: white;
}

.home-overlay {
  position: absolute;
  top: 46%;
  left: 4%;
  transform: translateY(-50%);
  padding: 20px;
  max-width: 32%;
  width: 100%;
}

.home-overlay h1,
.home-overlay p {
  margin: 0;
  padding: 0;
}

.logo-o-img {
  display: block;
  margin-bottom: 39px;
  max-width: 160px;
  height: auto;
}

.h-6 {
  font-size: 13px;
}

.h-5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 55px;
  color: #fff;
}

.h-3 {
  font-size: 13px;
}

@media (max-width: 767px) {
  .home-background {
    height: 181px;
  }
  .home-overlay {
    top: 48%;
    left: 1%;
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }
  .logo-o-img {
    margin-bottom: 2px;
    max-width: 93px;
    height: auto;
  }
  .h-3 {
    font-size: 11px;
  }
  .h-6 {
    font-size: 12px !important;
  }
  .h-5 {
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 14px !important;
  }
}
/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  height: calc(100% - 38px);
  transition: 0.5s;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer-padding {
  padding: 10px 38px;
}

.footer-title {
  font-weight: bold;
  text-align: start;
}

.btn-link {
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-social {
  border: 0;
  background-color: transparent;
  color: #000;
  margin-right: 10px;
}

.footer-social-links {
  max-width: 260px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-social-links a {
  color: #000;
  font-size: large;
}
.footer-social-links a:hover:nth-child(1) {
  color: #6e1244;
  transition: all 0.2s ease;
  transform: scale(1.1);
  transform: rotate(360deg);
}
.footer-social-links a:hover:nth-child(2) {
  color: #6e1244;
  transition: all 0.2s ease;
  transform: scale(1.1);
  transform: rotate(360deg);
}
.footer-social-links a:hover:nth-child(3) {
  color: #000;
  transition: all 0.5s ease;
  transform: scale(1.1);
  transform: rotate(360deg);
}
.footer-social-links a:hover:nth-child(4) {
  color: #000;
  transition: all 0.2s ease;
  transform: scale(1.1);
  transform: rotate(360deg);
}
.footer-social-links a:hover:nth-child(5) {
  color: #6e1244;
  transition: all 0.2s ease;
  transform: scale(1.1);
  transform: rotate(360deg);
}

.btn-social i {
  font-size: 1.5rem;
}

.footer-logo img {
  max-width: 150px;
}

.footer-logo p {
  margin-top: 10px;
}

.footer-menu a {
  color: #000;
  margin-right: 20px;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.copyright {
  background-color: #6e1244;
  color: #fff;
  padding: 20px 0;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer-padding {
    text-align: center;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
  }
}
.footer {
  background-color: #f2f2f2 !important;
}

.iconsbox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e9e9e9;
  margin-bottom: 12px;
  color: var(--primary);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.iconsbox:hover {
  background-color: var(--primary);
  color: #fff;
}

.footer-title {
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  color: #000000 !important;
  font-weight: 600 !important;
  margin-bottom: 13px !important;
  font-size: 16px;
}

.footer .btn.btn-social {
  margin-right: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid #ffffff;
  background: white;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 9px;
  padding: 0;
  text-align: left;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link:hover,
.footer .btn.btn-link.active {
  color: #6e1244;
  box-shadow: none;
  text-decoration: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 300 !important;
  font-size: 14px;
}

.footer .copyright a:hover {
  color: #a7a7a7;
}

.footer .copyright a.active {
  color: #000000;
  font-weight: 500 !important;
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer-logo img {
  max-width: 204px;
  height: auto;
}

.cc {
  color: #ffffff !important;
  font-weight: 300 !important;
}

.cc-mob {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .client-padding {
    padding: 5px 2rem !important;
  }
}
@media (max-width: 767px) {
  .footer .footer-menu a {
    padding-right: 0px;
  }
  .mission-padding {
    padding: 0px 1rem !important;
  }
  .background-div-m {
    padding: 51px 21px !important;
  }
  .mb-mission-vision {
    margin-bottom: 30px;
  }
  .our-story-padding {
    padding-top: 2.9rem !important;
    padding-bottom: 2.9rem !important;
  }
  .abt-p {
    margin-bottom: 8px !important;
    font-weight: 500;
    color: #595959 !important;
  }
  .margin-top-r {
    margin-top: 1rem !important;
    margin-bottom: -0.5rem !important;
  }
  .footer-padding {
    padding: 0px 0.5rem 5px 0.5rem;
  }
  .cc-mob {
    display: block;
  }
  .cc-lap {
    display: none;
  }
  .client-padding {
    padding: 6px 0rem !important;
  }
}
.quote {
  width: 100%;
  float: left;
  background: #fff url(../image/getaquote.png) no-repeat fixed center center;
  background-size: cover;
  margin-bottom: 1%;
}

.quote_bg {
  width: 100%;
  height: 100%;
  float: left;
  padding: 100px 0 80px 0;
}

.quote h4 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 34px;
  text-align: center;
}

.ff-quote {
  color: white !important;
  font-weight: 500 !important;
  font-size: 27px;
  font-family: "Poppins" !important;
  margin-bottom: 13px;
}

.p-quote {
  color: white !important;
  font-weight: 300 !important;
  font-size: 17px;
  font-family: "Roboto", sans-serif !important;
}

.getquote-btn {
  background-color: #ffffff;
  color: var(--primary);
  font-size: 15px;
  border-radius: 50px;
  padding: 12px 24px 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.getquote-btn i {
  margin-left: 8px;
}

.getquote-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  padding: 0px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0),
        rgb(255, 255, 255)
      ); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgb(255, 255, 255)
      ); */
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
  padding-bottom: 80px;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 50px;
}

.client-h {
  padding-top: 78px;
}

.client-padding {
  padding: 13px 15rem;
}

.header-quote {
  color: white !important;
  font-weight: 500 !important;
  font-size: 21px;
  font-family: "Poppins" !important;
  margin-bottom: 13px;
}

.background-div-m {
  background-image: url(../image/mission-vision.png);
  border-radius: 10px;
  padding: 78px 68px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.custom-card-m {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  color: #000;
  text-align: center;
}

.custom-card-m p {
  font-family: "Roboto", sans-serif !important;
  font-size: 0.98em !important;
  margin-top: 5px;
  color: #7d7777 !important;
}

.mission-padding {
  padding: 0px 5rem;
}

.mission-h {
  color: var(--primary);
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
}

.carousel-indicators {
  position: absolute;
  bottom: -17%;
  left: -8%;
  transform: translateX(-50%);
}

.blue-text-p {
  padding: 3rem 3rem 0rem 4rem !important;
}

.products-padding {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.p-title {
  margin-bottom: 3rem !important;
}

.mt-m-quote {
  margin-top: 3rem !important;
}

@media (max-width: 575.98px) {
  .carousel-indicators {
    bottom: -25%;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .carousel-indicators {
    bottom: -20%;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .carousel-indicators {
    bottom: -18%;
  }
  #heroCarousel{
      display:none !important;
  }
   #exchangeBox.collapse:not(.show) {
        display: none !important;
        visibility: visible; 
    }
}


@media (min-width: 992px) and (max-width: 1001px) {
   
 .p-carousal {
        top: 9% !important;
    }
    .icon-row {
       margin-top: -17% !important;
    }
    .exchange-box{
        width:111% !important;
    }
    .send-box{
        left: -21% !important;
    }
    .exchange-rate {
        font-size: 12px !important;
    }
    .hero-header {
        height: 80vh !important;
    }
   .navbar-dark .navbar-nav .nav-link {
        font-size: 11px !important;
    }
}

@media (min-width: 1000px) and (max-width: 1026px) {
 .p-carousal {
        top: 10% !important;
    }
    .icon-row {
       margin-top: -17% !important;
    }
    .exchange-box{
        width:111% !important;
    }
    .send-box{
        left: -18% !important;
    }
    .exchange-rate {
        font-size: 12px !important;
    }
}


@media (min-width: 1027px) and (max-width: 1199.98px) {
 .p-carousal {
        top: 10% !important;
    }
    .icon-row {
       margin-top: -17% !important;
    }
    .send-box{
        left: -11% !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .carousel-indicators {
    bottom: -17%;
  }
  
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .carousel-indicators {
    bottom: -16%;
    left: -6%;
  }
  .carousal-h1 {
    font-size: 4em !important;
  }
  .carousal-p {
    font-size: 0.9em !important;
  }
  /* .p-carousal {
        padding: 8rem 3rem 0rem 4rem !important;
      } */
  .abt-p {
    margin-bottom: 23px !important;
  }
}
/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .carousel-indicators {
    bottom: -15%;
  }
}
/* Ultra large devices (very large desktops, 1600px and up) */
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .carousel-indicators {
    bottom: -14%;
  }
  .abt-text {
    margin-bottom: 20px;
  }
  .readmore-btn {
    font-size: 18px;
  }
  .count-text {
    font-size: 2rem !important;
  }
  .s-c {
    font-size: 1.1rem !important;
  }
  .h-5 {
    font-size: 20px;
  }
  .h-6 {
    font-size: 15px;
  }
  .h-3 {
    font-size: 15px;
  }
}
/* Super large devices (huge desktops, 1800px and up) */
@media (min-width: 1800px) and (max-width: 1999.98px) {
  .carousel-indicators {
    bottom: -13%;
  }
  .abt-text {
    margin-bottom: 20px;
  }
  .readmore-btn {
    font-size: 18px;
  }
  .count-text {
    font-size: 2rem !important;
  }
  .s-c {
    font-size: 1.1rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: rgb(255, 255, 255) !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: hsl(0, 0%, 100%) !important;
  }
}
@media (max-width: 991px) {
  .navbar-dark .navbar-nav .nav-link {
    color: #4d1545 !important;
  }
}
@media (max-width: 767px) {
  .lorem-table {
    width: 100% !important;
  }
  .loremh1 {
    font-size: 20px !important;
  }
  .mt-m-quote {
    margin-top: 9rem !important;
  }
  .products-padding {
    padding-top: 4rem !important;
    padding-bottom: 2rem !important;
  }
  .p-title {
    margin-bottom: 2rem !important;
  }
  .send-box {
    display: flex;
    justify-content: center !important;
  }
  /* .p-carousal {
        padding: 0rem 2rem 0rem 2rem !important;
      } */
  .navbar-dark .navbar-toggler {
    color: #4d1545 !important;
    /* border-color: #4d1545 !important; */
  }
  .carousel-indicators {
    left: 35%;
  }
  .hero-second {
    height: 284px;
  }
  .blue-text-p {
    padding: 3rem 1rem 0rem 1rem !important;
  }
  .ff-quote {
    font-size: 22px;
  }
  .p-quote {
    font-size: 15px;
    margin-bottom: -7rem !important;
  }
}
/* Devices with a width between 300px and 400px */
@media (min-width: 300px) and (max-width: 400px) {
  .hero-header {
    height: 67vh;
  }
  .carousal-p {
    font-size: 1em !important;
  }
  .carousal-h1 {
    font-size: 2em !important;
  }
}
/* Devices with a width between 400px and 500px */
@media (min-width: 400px) and (max-width: 450px) {
  .hero-header {
    height: 80vh;
  }
  .carousal-h1 {
    font-size: 2.9em !important;
  }
}
@media (min-width: 451px) and (max-width: 500px) {
  .hero-header {
    height: 77vh;
  }
  .carousal-h1 {
    font-size: 2.9em !important;
  }
}
/* Devices with a width between 500px and 600px */
@media (min-width: 500px) and (max-width: 600px) {
  /* Your CSS rules here */
}
/* Devices with a width between 600px and 700px */
@media (min-width: 600px) and (max-width: 700px) {
  /* Your CSS rules here */
}
.carousel-indicators .active {
  background-color: var(--primary);
}

.carousal-h1 {
  color: white !important;
  font-weight: 400 !important;
  font-size: 4.9em;
}

.carousal-p {
  font-family: "Roboto", sans-serif !important;
  color: white !important;
  font-weight: 300 !important;
  font-size: 1.1em;
  line-height: 1.7;
}

.p-carousal {
  padding: 3rem 3rem 0rem 4rem;
}

/*our story */
.our-story-padding {
  padding-top: 5.9rem;
  padding-bottom: 1.9rem;
}

/*conatact */
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.contactForm .label {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

#contactForm .form-control {
  font-size: 16px;
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

.form-control {
  height: 36px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:focus,
.form-control:active {
  border-color: #004377 !important;
}

textarea.form-control {
  height: inherit !important;
}

.imgc {
  background-image: url(../image/contact-card.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 47px 35px;
}

.py-c {
  padding: 0px 9rem 72px 9rem;
}

.sendus {
  font-family: "Poppins", sans-serif !important;
  color: #004377 !important;
  font-weight: 500 !important;
  font-size: 1.3em !important;
}

.labels-c {
  font-family: "Poppins", sans-serif !important;
  color: #004377 !important;
  font-weight: 400 !important;
  font-size: 0.9em !important;
}

.mb-labels {
  margin-bottom: 15px;
}

.no-gutters {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.label-ip {
  color: #5a5858 !important;
  font-weight: 600 !important;
}

.contact-info {
  font-family: "Poppins", sans-serif !important;
  color: rgba(255, 255, 255, 0.8784313725);
  font-weight: 600 !important;
  font-size: 1.68em !important;
  margin-bottom: 24px;
}

.contact-texts {
  font-family: "Poppins", sans-serif !important;
  color: rgba(255, 255, 255, 0.8784313725);
  font-weight: 400 !important;
  font-size: 1.08em !important;
}

.icon-text {
  color: rgba(255, 255, 255, 0.8784313725) !important;
  font-size: 1.8em !important;
}

.pl-text {
  padding-left: 23px;
}

.icon-img {
  width: 1.6em;
  height: 1.6em;
}

.mb-icons {
  margin-bottom: 28px;
}

.mailicon {
  font-size: 1.6em !important;
  color: rgba(255, 255, 255, 0.8784313725) !important;
}

.c-icons {
  color: #000000;
  border-color: #f1f8ff;
  background: white;
  border-radius: 50px;
  font-size: 20px;
  padding: 2px 6px 2px 6px;
  margin-right: 13px;
}

.pt-icons {
  padding-top: 5rem !important;
}

.contact .btn.btn-social {
  margin-right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid #ffffff;
  background: white;
  border-radius: 35px;
  transition: 0.3s;
}

.contact .btn.btn-social i {
  font-size: 23px;
}

.p-get {
  padding: 102px 9rem 0px 9rem;
}

.p-get h1 {
  color: var(--primary);
}

.p-get p {
  margin-bottom: 29px;
}

.icon-button {
  background-color: var(--primary);
  border: none;
  padding: 7px 12px 4px 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-button i {
  color: #fff;
  font-size: 1.5rem;
}

.icon-button:hover {
  background-color: #002643 !important;
  color: #ffffff !important;
}

.position-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.contactcard {
  padding: 0px 26px 0px 12px;
}

.customer-logos .slide {
  padding: 0 7px;
}

.customer-logos .slide img {
  width: 150px;
}

.contact .btn.btn-social:hover {
  color: #004377;
}

.mob-rows {
  display: none !important;
}

.logomb {
  font-size: 14px !important;
  margin-top: 9px !important;
  margin-bottom: 0px !important;
  color: black !important;
  font-weight: 500;
  max-width: 300px;
  width: 100%;
}

@media (max-width: 991px) {
  .logomb,
  .footerapps,
  .footer-logo {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact .btn.btn-social {
    margin-right: 10px;
    width: 32px;
    height: 34px;
  }
}
@media (max-width: 768px) {
  #coll2 img {
    width: 65% !important;
    height: 94% !important;
  }

  .testimonails-pd2 {
    padding: 0rem 1rem 0rem 1rem !important;
  }
  .icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .icon-row-mobile {
    margin-bottom: 20px;
  }
  .content {
    display: block !important;
  }
  .rate-card {
    padding: 28px 11px 28px 11px !important;
  }
  .rates-container {
    gap: 0px !important;
  }
  .rate-card h2 {
    margin-bottom: 17px !important;
  }
  .input-container {
    margin-right: 0px !important;
  }
  .input-container input {
    width: 100% !important;
  }
  .mob-rows {
    display: none !important;
  }
  .testimonails-pd {
    padding: 2rem 0rem 0rem 7px !important;
  }
  .footer-title {
    display: block;
    margin-top: 10px;
  }
  .footersocialicons {
    flex-direction: row !important;
  }
  .iconsbox {
    margin-right: 10px;
  }
  .footerapps {
    justify-content: center;
    margin-bottom: 21px;
  }
  .card-container {
    width: 100% !important;
    height: auto !important;
  }
  .background-box {
    position: absolute;
    top: -15px !important;
    left: -4px !important;
  }
  .card-container {
    margin: 11px !important;
  }
  .card-content {
    bottom: 16px !important;
    left: 19px !important;
  }
  .partners-pd {
    padding: 2rem 1rem 2rem 1rem !important;
  }
  .services-pd {
    padding: 0rem 1rem 1rem 1rem !important;
  }
  .info-containerb {
    padding: 19px 0px !important;
  }
  .h-abt {
    min-height: 252px !important;
    margin-top: 19px;
  }
  .abt-text {
    color: #000000;
    font-size: 22px !important;
    margin-bottom: 9px !important;
    margin-top: 5px;
  }
  .abt-p {
    font-size: 14px !important;
  }
  .cf-mb {
    margin-bottom: 15px !important;
  }
  .client-h {
    padding-top: 47px;
  }
  .about-pd {
    padding: 3rem 1rem 3rem 1rem !important;
  }
  .map-sec {
    margin-bottom: 0rem !important;
  }
  .missionv-pd {
    padding: 0rem 1rem 0rem 1rem !important;
  }
  .mob-mis {
    margin-bottom: 23px;
  }

  .abtpaddingright {
    padding-left: 1px !important;
  }
  .clientss-padding {
    padding: 0px 0rem 14px 0rem !important;
    margin-bottom: 16px;
  }
  .customer-logos .slide {
    padding: 0 0px;
  }
  .p-get {
    padding: 37px 1rem 0px 1rem;
  }
  .pl-text {
    padding-left: 17px;
    padding-top: 9px;
  }
  .py-c {
    padding: 0px 1rem 72px 1rem;
  }
  .contact .btn.btn-social {
    margin-right: 10px;
    width: 32px;
    height: 34px;
  }
  .imgc {
    padding: 47px 15px;
  }
  .contactcard {
    padding: 0px 12px 0px 12px;
  }
}
.h-t:hover {
  color: #b3b3b3;
}

/*1st trial inner page*/
/* .demo {
      width: 100%
    }

    .demo ul {
      list-style: none outside none;
      padding-left: 0;
      margin-bottom: 0
    }

    .demo li {
      display: block;
      float: left;
      margin-right: 6px;
      cursor: pointer
    }

    .demo img {
      display: block;
      height: auto;
      width: 100%
    } */
/*1st trial inner page*/
/*gallery lightbox */
.gallery-wrapper {
  padding: 2rem 7rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}

/* Another way to do the same without declaring in the classes - remove h-x w-x from classes */
/* .gallery-wrapper {
      padding: 2rem 10rem;
      display: grid;
      justify-content: center;
      grid-template-columns: repeat(5, 300px);
      grid-auto-rows: 200px;
      grid-gap: 1rem;
      grid-auto-flow: dense;
    }
     */
.gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(2px 2px 3px #333);
}

.gallery-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  cursor: pointer;
  transition: all 400ms ease-in;
  transform: scale(1);
}

.gallery-item .image img:hover {
  transform: scale(1.1);
}

/* .w-1{
      grid-column: span 1;
    }
    .w-2{
      grid-column: span 2;
    }
    .w-3{
      grid-column: span 3;
    }
    .w-4{
      grid-column: span 4;
    }
    .w-5{
      grid-column: span 5;
    }

    .h-1{
      grid-row: span 1;
    }
    .h-2{
      grid-row: span 2;
    }
    .h-3{
      grid-row: span 3;
    }
    .h-4{
      grid-row: span 4;
    }
    .h-5{
      grid-row: span 5;
    } */
/* ***** LIGHTBOX EFFECT ***** */
#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  padding: 4px;
  /* border-radius: 1%; */
  /* background-color: white; */
  border: 0.2px solid silver;
}

.p-gallery {
  padding: 2rem 7rem;
}

@media only screen and (max-width: 800px) {
  .gallery-wrapper {
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-gap: 2;
    grid-auto-flow: dense;
  }
  .gallery-container:nth-child(3n + 2) {
    grid-column: 1 / span 2;
    grid-row-end: span 2;
  }
  .gallery-container:nth-child(4n + 3) {
    /* grid-column: 2 / span 1; */
    grid-row-end: span 2;
  }
  /*  reseting the css for the class within the divs to show a different way to achieve grid control using the nth childs*/
  /* .w-1,
      .w-2,
      .w-3,
      .w-4,
      .w-5 {
        grid-column: span 1;
      }

      .h-1,
      .h-2,
      .h-3,
      .h-4,
      .h-5 {
        grid-row: span 1;
      } */
}
@media only screen and (max-width: 800px) {
  /* An example to use combined with flex but could also be grids with different repetition of columns  */
  /* .gallery-wrapper {
        display: flex;
        flex-direction: column;
        flex: wrap;
        gap: 2.5rem;
        margin: 5rem;
      } */
  .gallery-wrapper {
    padding: 2rem 1rem;
  }
  .p-gallery {
    padding: 1rem 1rem;
  }
}
/*gallery lightbox */
.clientss-padding {
  padding: 0px 8rem 59px 8rem;
  margin-bottom: 16px;
}

.acolor a {
  color: white !important;
}

.acolor a:hover {
  color: #a7a7a7 !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* .cc-mob {
        display: block;
      }

      .cc-lap {
        display: none;
      } */
  .lorem-table {
    width: 100% !important;
  }
  .footer-padding {
    padding: 16px 3rem 23px 3rem;
  }
  .page-header-yes {
    margin-top: 0px;
    padding: 85px 0 85px 0;
  }
}
@media (min-width: 768px) and (max-width: 880px) {
  .cc-mob {
    display: block;
  }
  .py-c {
    padding: 0px 0rem 72px 0rem;
  }
  .cc-lap {
    display: none;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
  .imgc {
    padding: 47px 22px;
  }
}
@media (min-width: 881px) and (max-width: 960px) {
  .cc-mob {
    display: none;
    text-align: center !important;
  }
  .py-c {
    padding: 0px 10px 72px 10px;
  }
  .cc-lap {
    display: block;
    width: 49% !important;
  }
  .nxt {
    width: 51% !important;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .cc-mob {
    display: none;
  }
  .p-carousal {
    padding: 0rem 2rem 0rem 2rem !important;
  }
  .cc-lap {
    display: block;
    width: 49% !important;
  }
  .nxt {
    width: 51% !important;
  }
  .py-c {
    padding: 0px 10px 72px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .page-header-pdt {
    margin-top: 13px;
  }
  .page-header {
    margin-top: 13px;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }
  .footer-title {
    margin-bottom: 23px !important;
    font-size: 16px;
  }
  .footer .footer-menu a {
    font-size: 12px;
  }
  .footer .btn.btn-link {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .cc-lap {
    font-size: 14px;
  }
}
@media (min-width: 1025px) and (max-width: 1231px) {
  .py-c {
    padding: 0px 10px 72px 10px;
  }
  .footer-title {
    margin-bottom: 23px !important;
    font-size: 16px;
  }
  .footer .footer-menu a {
    font-size: 12px;
  }
  .footer .btn.btn-link {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .cc-lap {
    font-size: 14px;
  }
}
.loremh1 {
  font-size: 23px;
}

.lorem-table {
  width: 70%;
}

/*home banner */
/*banner */
.hero-header {
  background-color: #f0f0f0;
}

.exchange-box {
  background-color: #e0e0e0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousal-box .toggle-btn {
  background-color: #631046;
  border: none;
  border-radius: 25px;
  color: white;
  padding: 0.3rem 1rem;
  right: 13%;
  /* transform: translateX(50%); */
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .carousal-box .toggle-btn {
    display: block !important;
  }
}
.flag-amount {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
}

.exchange-rate {
  font-size: 13px;
  color: #000;
  font-weight: 400;
  margin-bottom: 5px;
}

.send-box {
  display: flex;
  justify-content: end;
}

/*banner */
/*home icons start */
.home-p {
  font-size: 64px;
  color: white !important;
  line-height: 1.3 !important;
}

.container-homepadding {
  padding: 5px 0;
  position: relative;
    z-index: 6;
}

.exchange-box {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 23px 36px 21px 28px;
  border-radius: 10px;
  width: 97%;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0);
  padding: 5px 0;
  gap: 47px;
  margin-top: -8%;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon-box:hover .icon-home {
  background-color: #631046;
  transition: background 0.3s ease;
}

.icon-box:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.money-btn {
     background-color: #631046;
    border: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    width: 80% !important;
    margin-bottom: 8px;
    color: rgb(255, 255, 255) !important;
    padding: 8px 9px 9px 9px;
    border-radius: 50px;
}

.money-btn:hover {
  background: var(--primary);
}

.icon-home {
  /*width: 120px;*/
  /*height: 120px;*/
     width: 92px;
    height: 83px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.icon-home img {
  /*width: 80px;*/
  /*height: 70px;*/
      width: 71px;
    height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}

.icon-box p {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #000;
  font-weight: 500;
  margin-top: 5px;
}

.send-amount-input,
.receiver-gets-input {
  background: rgba(255, 255, 255, 0) !important;
  font-size: 15px;
  color: black;
  width: 100%;
  margin: 0 auto 10px auto;
  border: none;
  font-weight: 500;
  /*border-bottom: 1px solid #000;*/
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  margin-bottom: 0px !important;
}

.send-amount-container::after {
    content: '';
    position: absolute;
    bottom: 41px;
    left: 52%;
    transform: translateX(-50%);
    width: 50%;
    border-bottom: 1px solid #000;
}

.send-amount-input:focus,
.receiver-gets-input:focus {
  /*border-bottom: 1px solid #631046;*/
  box-shadow: none;
  border:none!important;
}

/*home icons start */
/*home-about*/
.video-overlay-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden; /* Ensure the video and button stay within bounds */
}

.thumbnail-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  z-index: 2; /* Ensure button is above the thumbnail */
}

.play-button i {
  transition: color 0.3s;
}

.video-overlay-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 16, 70, 0.2705882353);
  opacity: 0.5;
  border-radius: 10px;
}

#videoPlayer {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  visibility: hidden; /* Hide video initially */
  border-radius: 10px;
}

.video-overlay-container.video-playing #videoPlayer {
  visibility: visible; /* Show video when playing */
}

.thumbnail-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-overlay-container.video-playing .thumbnail-container {
  display: none; /* Hide thumbnail when video is playing */
}

.about-pd {
  padding: 5rem 6rem 5rem 6rem;
}

/*home-about*/
.viewmore-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000000 !important;
  font-size: 16px;
  font-weight: 500;
}

.viewmore-btn .icon-containerv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 5px;
}

.viewmore-btn .icon-containerv i {
  color: #000000;
  font-size: 16px;
}

.viewmore-btn:hover {
  text-decoration: none;
}

.viewmore-btn:hover .icon-containerv {
  background-color: #631046;
  border-color: #631046;
}

.viewmore-btn:hover .icon-containerv i {
  color: #ffffff;
  transition: color 0.3s;
}

.image-overlay-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.image-overlay-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  visibility: visible;
  animation-delay: 0.9s;
  border-radius: 10px;
  animation-name: zoomIn;
}

.image-overlay-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 16, 70, 0.2705882353);
  opacity: 0.5;
  border-radius: 10px;
}

.w-text {
  max-width: none !important;
}

.about-pd {
  padding: 5rem 6rem 5rem 6rem;
}

.missionv-pd {
  padding: 0rem 6rem 0rem 6rem;
}

/*services -home */
.services {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-item {
  /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 10px;
}

.services .motorbike-icon {
  width: 3.5em;
  height: auto;
  color: #000000;
}

.services .motorbike-icon2 {
  width: 4em;
  height: auto;
  color: #000000;
  margin-bottom: 8px !important;
}

.share-icon {
  width: 35px;
  height: 35px;
  right: 0;
  border: 1px solid black;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50px;
  transition: 0.3s;
  cursor: pointer !important;
  text-decoration: none;
}

.share-icon i {
  color: black;
  font-size: 19px;
}

.services h5 {
  font-size: 23px;
  color: black;
  font-weight: 500;
  margin-bottom: 6px !important;
}

.services p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 29px;
}

.service-item .motorbike-icon {
  transition: filter 0.3s ease;
}

.service-item:hover .motorbike-icon {
  filter: brightness(0) invert(1);
}

.service-item .motorbike-icon2 {
  transition: filter 0.3s ease;
}

.service-item:hover .motorbike-icon2 {
  filter: brightness(0) invert(1);
}

.service-item:hover {
  background-color: #631046;
}

.service-item:hover .services h5,
.service-item:hover .services p {
  color: #fff !important;
}

.service-item:hover .share-icon {
  border-color: #fff !important;
}

.service-item:hover .share-icon i {
  color: #fff !important;
}

/* Hover state for share-icon */
.service-item:hover .share-icon {
  border-color: #fff;
}

.service-item:hover .share-icon i {
  color: #fff;
}

/*services -home */
/* home - branches */
.map-container {
  background-color: #e0e0e0;
}

.map-container iframe{
      width:100% !important;
}


.info-containerb {
  padding: 0px 43px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.m-update {
  background: #f8f8f8;
  padding: 10px 9px;
   flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-card {
  /* background: linear-gradient(
        90deg,
        rgba(255, 231, 192, 1) 0%,
        rgba(255, 242, 221, 1) 100%
      ); */
  background: #fff;
  padding: 33px 34px;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}

.branch-card2 {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  /* background: linear-gradient(
        90deg,
        rgba(255, 231, 192, 1) 0%,
        rgba(255, 242, 221, 1) 100%
      ); */
  background: #fff;
  padding: 14px 49px 7px 29px;
  border-radius: 10px;
  /*box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,*/
  /*  rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;*/
  height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top:2px;
  margin-left: 2px;
}

.itemtitle {
  font-family: "General Sans" !important;
  color: #000000;
  font-weight: 600 !important;
  font-size: 1em !important;
  margin-bottom: 8px;
}

#carousel .owl-dots {
  bottom: -50px;
}

.partners-pd {
  padding: 3rem 4rem 2rem 4rem;
}

.cf-mb {
  margin-bottom: 50px;
}

.branchpp {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 500;
}

.branchm {
  font-family: "General Sans" !important;
  color: #000000;
  font-weight: 500 !important;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}
.slide-content
{
    height:100%;
    width:100%;
}
.slide-content img
{
    height:300px;
    width:300px;
}
.slide-content h1 {
  font-size: 24px;
  text-align: start;
  overflow: hidden;
  white-space: nowrap; /* Keeps text to one line */
  text-overflow: ellipsis; /* Adds '...' at the end if text overflows */
  max-width: 100%; /* Limits the width based on the container */
}

.slide-content p {
  font-size: 16px;
  text-align: start;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 100%; /* Ensures it doesn't overflow horizontally */
  line-height: 1.5; /* Adjust line-height as needed */
}


.blog-item img{
     height:300px;
    width:300px;
}


.blog-item h1{
     font-size: 24px;
  text-align: start;
  overflow: hidden;
  white-space: nowrap; /* Keeps text to one line */
  text-overflow: ellipsis; /* Adds '...' at the end if text overflows */
  max-width: 100%; /* Limits the width based on the container */
}


.blog-item p{
    font-size: 16px;
  text-align: start;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 100%; /* Ensures it doesn't overflow horizontally */
  line-height: 1.5; /* Adjust line-height as needed */
}
























.owl-item .item {
  margin-bottom: 10px;
  height: 100%;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}

.owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}

.owl-dots button.owl-dot.active {
  background-color: var(--primary);
}

.owl-dots button.owl-dot:focus {
  outline: none;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:focus {
  outline: none;
}

/* home - branches */
/* Latest Updates */
.blog-item .blog-img img {
  transition: 0.5s;
}

.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/* Latest Updates */
/* our partners - start */
.bg-partners {
  background-color: #eeeeee !important;
}

/* our partners - end */
/*money transfer */
.rate-card {
  background-color: var(--primary);
  border-radius: 10px;
  padding: 13px 82px 24px 82px;
  margin: 0 auto;
}

.rate-card .view-more-rate {
  background-color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.3rem 1rem;
  border-radius: 25px;
  color: var(--primary);
  font-weight: 600;
  border-radius: 15px;
}

@media (max-width: 513px) {
  .rate-card .view-more-rate {
    padding: 0.3rem 1rem;
    font-size: x-small;
  }
  .rate-card h2 {
    font-size: large;
  }
}
@media (max-width: 400px) {
  .rate-card .view-more-rate {
    padding: 0.3rem 0.5rem;
  }
}
.rate-card h2 {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 500;
  color: #8c0d59;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prate {
  color: #fff !important;
  font-weight: 500;
}

.input-container {
  flex: 0 0 auto;
  /* margin-right: 20px; */
}

@media (max-width: 1200px) {
  .input-container {
    flex: 1;
  }
}
.input-container input {
  padding: 8px 15px;
  font-size: 15px;
  border: 0.5px solid #939191;
  border-radius: 5px;
  width: 49%;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 992px) {
  .input-container input {
    padding: 1px 2px;
  }
}
.rates-container {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .rates-container {
    flex: 2;
  }
}
.rate {
  text-align: center;
}

.rate p {
  margin: 5px 0;
}

.currency-name {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}

.separator {
  width: 1px;
  height: 40px;
  background-color: #444444;
  margin: 0 15px;
}

.arrow {
  font-size: 24px;
  color: #666;
  cursor: pointer;
}

.padding-leftr {
  padding-left: 5rem;
  padding-right: 5rem;
}

.flag {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.icon-containerv-m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.move-l {
  margin-left: 17px;
}

.icon-containerv-m i {
  color: #000000;
  font-size: 16px;
}

.icon-containerv-m:hover {
  background-color: #631046;
  border-color: #631046;
}

.icon-containerv-m:hover i {
  color: #ffffff;
}

/*money transfer*/
.p-home {
    color: black;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 11px;
    font-size: 16px;
}

.abtpaddingright {
  padding-left: 41px;
}

.h-abt {
  min-height: 500px;
}

.b-up {
  border-radius: 10px;
}

.hup {
  font-size: 22px;
  color: black;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.pbup {
  font-size: 13px;
  color: #444444;
  font-weight: 500;
  margin-bottom: 6px !important;
}

.services-pd {
  padding: 0rem 5rem 3rem 5rem;
}

/* .partnerss{
      width: 80% !important;
    } */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.name {
  font-weight: 500;
  color: rgb(255, 255, 255);
  font-size: 21px;
  margin-bottom: 0px;
  word-break: break-all;
}

.subtitle {
  color: #ffffff;
  margin: 0;
}

.play-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 12px solid #333;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.circle {
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  /* background-color: #333; */
  background-color: #6a2553;
  display: grid;
  place-content: center;
  cursor: pointer !important;
  animation: grow 1s infinite;
}

.circle .fa {
  color: #eee;
  font-size: 50px;
  /* animation: grow 1s infinite; */
}

@keyframes grow {
  from {
    box-shadow: 0px 0px 1em #6a2553;
  }
  to {
    box-shadow: 0px 0px 3em #6a2553;
  }
}
@media (max-width: 768px) {
  .circle {
    height: 50px;
    width: 50px;
  }
  .circle .fa {
    font-size: 29px;
  }
  .footernews {
    margin-top: 0px !important;
  }
}
.footernews {
  margin-top: 82px;
}

.background-box {
  position: absolute;
  top: -16px;
  left: 9px;
  width: 87%;
  height: 100%;
  background-color: #eeeeee;
  z-index: 0;
  border-radius: 15px;
}

.card-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
  margin: 15px;
}

.card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.custom-testimonial-carousel .owl-item img{
    width : 100% !important;
    height : auto;
}

.card-content {
  position: absolute;
  bottom: 30px;
  left: 42px;
  color: #fff;
}

.overlay-testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 157px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent);
}

.play-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.owl-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000 !important;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 5px;
}

.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000 !important;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 70px !important;
  padding: 5px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: var(--primary) !important;
}

.owl-prev:hover i,
.owl-next:hover i {
  color: #fff !important;
}

.custom-testimonial-dots {
  padding-top: 0px !important;
}

/* 
    .owl-prev {
      font-size: 26px;
      line-height: 0;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.6);
      border-radius: 50px;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .owl-next {
      font-size: 26px;
      line-height: 0;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.6);
      border-radius: 50px;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    } */
.media-showcase {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.media-preview {
  background-color: #f0f0f0;
  height: 300px;
  position: relative;
}

.media-control {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
}

.presenter-name {
  font-weight: 500;
  color: black;
  font-size: 21px;
  margin-bottom: 4px;
}

.presenter-title {
  color: #000000;
  font-weight: 400;
}

.content-headline {
  font-size: 2rem;
  font-weight: 500;
}

.content-body {
  font-size: 15px;
  line-height: 1.5;
  color: black;
}

.testimonails-pd2 {
  padding: 0rem 5rem 0rem 4rem;
}

@media (min-width: 1100px) and (max-width: 1199px) {
  .ceo-msg {
    font-size: 12px !important;
   } 
   .big-h h1{
           font-size: 16px !important;
   }
    .big-h p{
           font-size: 13px  !important;
   }
}


/* Extra large devices (large desktops, 1200px and up-110%) */
@media (min-width: 1200px) and (max-width: 1299px) {
        .ceo-box  img {
    height: 286px !important;
}

    .exchange-box {
        width: 81%;
        padding: 26px 28px 16px 28px;
    }

  .headings-content {
    font-size: 1.3rem !important;
  }
  .branchpp {
    font-size: 12px !important;
  }
  .branch-card2 {
    height: 189px;
  }

  .services h5 {
    font-size: 20px !important;
  }
  .p-carousal {
    padding: 0rem 0rem 0rem 0rem !important;
    top: 11% !important;
  }
  /*.hero-header {*/
  /*  height: 108vh;*/
  /*}*/
  .h-abt {
    min-height: 445px;
  }
  .services-pd {
    padding: 0rem 5rem 2rem 5rem;
  }
  .services p {
    font-size: 11px;
  }
  .hup {
    font-size: 17px;
  }
  .pbup {
    font-size: 10px;
  }
  .fontsz {
    font-size: 13px;
  }
  /*.translate-right {*/
  /*  transform: translateX(52%) !important;*/
  /*}*/

  .carousal-box .toggle-btn {
    right: 25% !important;
  }
  .icon-row {
    margin-top: -16%;
    }
      .send-box{
            left:3%;
        }
}
/* Extra large devices (large desktops, 1200px and up-100%) */
@media (min-width: 1300px) and (max-width: 1399px) {
        .ceo-box  img {
      height: 287px !important;
}

  .headings-content {
    font-size: 1.4rem !important;
  }
  
  .icon-home img {
       width: 67px;
    height: 44px;
    }
    
    .icon-home {
        width: 90px;
        height: 80px;
    }
    
    .icon-row {
        margin-top: -17%;
}

  .card-container {
    width: 518px !important;
    height: 439px !important;
  }
  .p-carousal {
    padding: 0px  1rem 0rem 0rem !important;
    top: 12% !important;
  }
  
  .send-box{
          left: -7%;

  }
  .background-box {
    position: absolute;
    top: -16px;
    left: 9px;
    width: 88%;
  }
  .fontsz {
    font-size: 13px;
  }
}
/* Extra extra large devices (larger desktops, 1400px and up 90%) */
@media (min-width: 1400px) and (max-width: 1599.98px) {
    
    .ceo-box  img {
      height: 355px !important;
}

.ceo-msg {
    font-size: 17px !important;
}

        .send-box{
            left:-3%;
        }

  .translate-right {
    transform: translateX(24%) !important;
  }
  .p-carousal {
    padding: 0rem 0rem 0rem 0rem !important;
        top: 12% !important;

  }
  .icon-row {
       margin-top: -16%;
    }

  .testimonails-pd {
    padding: 3rem 7rem 0rem 5rem !important;
  }
  .testimonails-pd2 {
    padding: 0rem 5rem 0rem 4.3rem !important;
  }
  .partners-pd {
    padding: 3rem 5rem 2rem 5rem;
  }
  .background-box {
    position: absolute;
    top: -16px;
    left: 9px;
    width: 88%;
  }
  .hup {
    font-size: 22px;
  }
  .pbup {
    font-size: 13px;
  }
  .services h5 {
    font-size: 26px;
  }
  .abt-text {
    font-size: 30px;
  }
  .abt-h {
    font-size: 20px;
  }
  .abt-p {
    font-size: 16px;
  }
  .about-pd {
    padding: 5rem 7rem 5rem 7rem;
  }
  .missionv-pd {
    padding: 0rem 6rem 0rem 6rem;
  }
  .services-pd {
    padding: 0rem 6rem 3rem 6rem;
  }
  .exchange-box {
    width: 90%;
  }
  
 
  
  .carousal-box .toggle-btn {
    right: 18%;
  }
  
  h1 {
    font-size: 2em;
    font-weight : 600;;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 17px;
  }
  .menu-link-s {
    font-size: 15px;
  }
  /*.hero-header {*/
  /*  height: 109vh;*/
  /*}*/
}
/* Ultra large devices (very large desktops, 1600px and up 80%) */
@media (min-width: 1600px) and (max-width: 1799.98px) {
  /*.translate-right {*/
  /*  transform: translateX(55%) !important;*/
  /*}*/
  
   .send-box{
            left:11%;
        }

  .carousal-box .toggle-btn {
    right: 25% !important;
  }
  .ceo-msg {
    font-size: 16px !important;
  }
  .content-headline {
    font-size: 2.4rem !important;
  }
  .content-body {
    font-size: 17px;
  }
  .presenter-name {
    font-size: 25px;
  }
  .presenter-title {
    font-size: 19px;
  }
  .testimonails-pd {
    padding: 3rem 5rem 0rem 8rem !important;
  }
  .testimonails-pd2 {
    padding: 0rem 9rem 0rem 7.4rem !important;
  }
  .content-headline {
    font-size: 2.4rem !important;
  }
  .content-body {
    font-size: 17px;
  }
  .presenter-name {
    font-size: 25px;
  }
  .presenter-title {
    font-size: 19px;
  }
  .card-container {
    width: 509px !important;
    height: 449px !important;
  }
  .partners-pd {
    padding: 3rem 8rem 2rem 8rem;
  }
  .background-box {
    position: absolute;
    top: -16px;
    left: 9px;
    width: 88%;
  }
  .hup {
    font-size: 24px;
  }
  .pbup {
    font-size: 15px;
  }
  .services h5 {
    font-size: 28px;
  }
  .services p {
    font-size: 13px;
  }
  .abt-text {
    font-size: 34px;
  }
  .abt-h {
    font-size: 20px;
  }
  .about-pd {
    padding: 5rem 10rem 5rem 10rem;
  }
  .missionv-pd {
    padding: 0rem 6rem 0rem 6rem;
  }
  h1 {
    font-size: 2em;
  }
  .services-pd {
    padding: 0rem 9rem 3rem 9rem;
  }
  .abt-p {
    font-size: 18px;
  }
  .exchange-box {
    width: 82%;
  }
  .p-carousal {
    padding: 0rem 0rem 0rem 0rem !important;
    top: 14% !important;
  }
  .home-p {
    font-size: 64px !important;
    line-height: 1.28 !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 19px;
  }
  .menu-link-s {
    font-size: 16px;
  }
  .icon-home img {
    width: 75px;
    height: 53px;
    }
    
    .icon-home {
       width: 101px;
        height: 98px;
    }
    
    .icon-row {
        margin-top: -18%;
    }
        .ceo-box  img {
      height: 335px !important;
}
  /*.hero-header {*/
  /*  height: 108vh;*/
  /*}*/
}
/* Super large devices (huge desktops, 1800px and up) nj*/
@media (min-width: 1800px) and (max-width: 1999.98px) {
    
           .ceo-box  img {
        height: 337px !important;
    }

  .carousal-box .toggle-btn {
    right: 31% !important;
  }
  
  .send-box{
            left:23%;
        }
        
  /*.translate-right {*/
  /*  transform: translateX(118%) !important;*/
  /*}*/
  .content-headline {
    font-size: 2.4rem !important;
  }
  .content-body {
    font-size: 17px;
  }
  .icon-row {
    gap: 58px !important;
    margin-top: -233px !important;
  }
  .presenter-name {
    font-size: 25px;
  }
  .presenter-title {
    font-size: 19px;
  }
  .background-box {
    position: absolute;
    top: -16px;
    left: 9px;
    width: 88%;
  }
  .card-container {
    width: 572px !important;
    height: 450px !important;
  }
  .testimonails-pd2 {
    padding: 0rem 9rem 0rem 7rem !important;
  }
  .testimonails-pd {
    padding: 3rem 6rem 0rem 8rem !important;
  }
  .testimonails-pd2 {
    padding: 0rem 6rem 0rem 8rem !important;
  }
  .partners-pd {
    padding: 3rem 8rem 2rem 8rem;
  }
  .hup {
    font-size: 24px;
  }
  .pbup {
    font-size: 15px;
  }
  .services h5 {
    font-size: 31px;
  }
  .services p {
    font-size: 14px;
  }
  .abt-text {
    font-size: 36px;
  }
  .abt-h {
    font-size: 18px;
  }
  .abt-p {
    font-size: 19px;
  }
  h1 {
    font-size: 2em;
    font-weight : 600;
  }
  .about-pd {
    padding: 5rem 10rem 5rem 10rem;
  }
  .missionv-pd {
    padding: 0rem 6rem 0rem 6rem;
  }
  .services-pd {
    padding: 0rem 9rem 5rem 9rem;
  }
  .exchange-box {
    width: 75%;
  }
  .home-p {
    font-size: 66px !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 19px;
  }
  .menu-link-s {
    font-size: 17px;
  }
  
  .p-carousal {
    padding: 0rem 0rem 0rem 0rem !important;
    top:15% !important;
}

  /*.hero-header {*/
  /*  height: 114vh;*/
  /*}*/
  
  .icon-home img {
     width: 75px;
    height: 53px;
    }
    
    .icon-home {
       width: 101px;
        height: 98px;
    }
    
    .icon-row {
        margin-top: -7%;
    }
     .ceo-msg {
    font-size: 16px !important;
  }
 
}
@media (min-width: 2000px) {
    .ceo-msg {
    font-size: 16px !important;
}

  .carousal-box .toggle-btn {
    right: 31% !important;
  }
  
  .p-carousal {
    top: 20% !important;
  }
  
  .send-box{
            left:31%;
        }
  /*.translate-right {*/
  /*  transform: translateX(131%) !important;*/
  /*}*/
  .background-box {
    position: absolute;
    top: -16px;
    left: 9px;
    width: 88%;
  }
  .card-container {
    width: 636px !important;
    height: 471px !important;
  }
  .content-headline {
    font-size: 2.4rem !important;
  }
  .content-body {
    font-size: 17px;
  }
  .presenter-name {
    font-size: 25px;
  }
  .presenter-title {
    font-size: 19px;
  }
  .testimonails-pd2 {
    padding: 0rem 9rem 0rem 7rem !important;
  }
  .testimonails-pd {
    padding: 3rem 6rem 0rem 8rem !important;
  }
  .testimonails-pd2 {
    padding: 0rem 6rem 0rem 8rem !important;
  }
  .partners-pd {
    padding: 3rem 8rem 2rem 8rem;
  }
  .services h5 {
    font-size: 31px;
  }
  .abt-text {
    font-size: 36px;
  }
  .abt-h {
    font-size: 18px;
  }
  .abt-p {
    font-size: 19px;
  }
  h1 {
    font-size: 2em;
  }
  .about-pd {
    padding: 5rem 10rem 5rem 10rem;
  }
  .missionv-pd {
    padding: 0rem 6rem 0rem 6rem;
  }
  .services-pd {
    padding: 0rem 9rem 5rem 9rem;
  }
  .exchange-box {
    width: 75%;
  }
  .home-p {
    font-size: 66px !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 19px;
  }
  .menu-link-s {
    font-size: 17px;
  }
  /*.hero-header {*/
  /*  height: 115vh;*/
  /*}*/
  .p-carousal {
    padding: 8rem 3rem 0rem 4rem;
  }
  .icon-home {
    width: 109px;
    height: 99px;
  }
  .icon-home img {
    width: 74px;
    height: 56px;
  }
  .icon-row{
      margin-top: -19%;
  }
}
/* Extra small devices (320px to 374px) */
@media (min-width: 320px) and (max-width: 374px) {
  .home-p {
    font-size: 38px;
  }
  .hero-header {
    height: auto !important;
  }
  .p-carousal {
    padding: 0rem 2rem 3rem 2rem !important;
  }
  .carousal-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* Small devices (375px to 424px) */
@media (min-width: 375px) and (max-width: 424px) {
  .home-p {
    font-size: 38px;
  }
  .hero-header {
    height: auto !important;
  }
  .p-carousal {
    padding: 0rem 2.5rem 3rem 2rem !important;
  }
  .carousal-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 425px) and (max-width: 600px) {
  .home-p {
    font-size: 38px;
  }
  .hero-header {
    height: auto !important;
  }
  .p-carousal {
    padding: 0rem 2.5rem 3rem 2rem !important;
  }
  .carousal-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .home-p {
    font-size: 38px;
  }
  /*.hero-header {*/
  /*  height: auto !important;*/
  /*}*/
  .p-carousal {
    padding: 0rem 2.5rem 3rem 2rem !important;
  }
  .carousal-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 991px) and (min-width: 767px) {
  .homemob {
    display: block !important;
  }
  .homedesk {
    display: none !important;
  }
  
}

@media (min-width: 992px) and (max-width: 1024px) {
  .navbar-dark .navbar-nav .nav-link {
    color: #631046 !important;
  }
 
}


@media (max-width: 576px) {
  /* Styles for small devices */
}

@media (min-width: 577px) and (max-width: 768px) {
  .headings-content {
    font-size: 18px !important;
  }
  .p-contnt {
    font-size: 12px;
  }
  /* Styles for medium devices */
}

@media (min-width: 768px) and (max-width: 992px) {
  .headings-content {
    font-size: 18px !important;
  }
  .p-contnt {
    font-size: 12px;
  }
}

.testimonails-pd {
  padding: 3rem 5rem 0rem 4rem;
}

.testimonailss-pd {
  padding: 0rem 5rem 0rem 4rem;
}

/* .cards:hover{
      transform: translateY(-10px);
    } */
.flag-amount span {
  font-weight: 500;
  color: black;
}

.btn:focus {
  box-shadow: none !important;
}

.footer .btn.btn-link.active {
  color: #6e1244;
  font-weight: 600;
}

.copyright a:hover {
  color: #d1b487;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.swiper-pagination-bullet {
  background-color: #4d1545 !important;
}

@media (max-width: 471px) {
  .mySwiper {
    padding-top: 5rem;
  }
  .swiper-pagination {
    margin-top: 5rem;
  }
}


.gallery-header {
  background: url(/image/banners/gallery-banner.webp); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.gallery-header h1 {
  color: #000 !important;
}

.about-header {
  background: url(../image/banners/about-us-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-header h1 {
  color: #fff;
}



.about-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.mission-vission h1 {
  max-width: 700px;
  width: 100%;
  color: #252525;
}

.mission-vission p {
  max-width: 600px;
  width: 100%;
  text-align: center;
  color: #444444;
  margin-bottom: 0px;
}

.mission-vission .main-sec .content {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 1.2rem;
  border-radius: 10px;
}

.mission-vission .main-sec .content h4 {
  font-weight: 500;
  color: #252525;
  padding-bottom: 2px;
}

.mission-vission .main-sec .content p {
  color: #444444;
}

.nex-section h1 {
  max-width: 700px;
  width: 100%;
  color: #252525;
}

.nex-section p {
  max-width: 600px;
  width: 100%;
  text-align: center;
  color: #444444;
}

.nex-section .main-sec .content {
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.31rem; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 291px;
}

.mb-heading {
  margin-bottom: 1px !important;
  font-size: 20px;
}

.nex-section .main-sec .content:hover .invert-on-hover {
  filter: invert(100%);
  transition: filter 0.3s ease;
}

.nex-section .main-sec .content p {
  text-align: start;
  color: #444444;
}

.nex-section .main-sec .content h3 {
  font-weight: 500;
  color: #252525;
}

@media (max-width: 768px) {
  p {
    font-size: 14px !important;
    font-weight: 500;
    color: #595959 !important;
  }
}

@media (max-width: 768px) {
  .nex-section .main-sec .content {
    padding-top: 2rem;
    display: flex !important;
    align-items: center;
  }

  .mission-vission .main-sec .content p,
  .pbup {
    color: #555454;
    font-size: 14px !important;
    font-weight: 500;
  }
  .mission-vission .main-sec .content h4,
  .hup {
    font-size: 19px !important;
  }
  .h-abb,
  .usefull-links h1,
  .services-pd h1,
  .testimonails-pd h1 {
    font-size: 22px !important;
  }
  .usefull-links .row .content h4,
  .branch_address h4,
  .branch_address .branch_contact,
  .viewmore-btn {
    font-size: 14px !important;
  }

  .branch_btn a {
    font-size: 12px !important;
  }

  .navbar-dark .navbar-nav .nav-link,
  .dropdown-item {
    font-size: 14px !important;
  }
  .nex-section .main-sec .content h3 {
    font-size: 19px !important;
  }
  .nex-section .main-sec .content p {
    color: #555454;
    font-size: 14px !important;
    font-weight: 500;
  }
  .ceo-msg {
    font-size: 14px !important;
  }
  .mb-heading {
    font-size: 21px !important;
  }
  .ceo-p {
    font-size: 14px !important;
  }
  .company-profile .content p,
  .history .content p {
    color: #444444;
    font-size: 14px !important;
  }
  .company-profile .content h3,
  .history .content h3 {
    font-size: 19px !important;
  }
  .service-item:hover .services p {
    font-size: 14px !important;
  }
  .service-item p {
    font-size: 14px !important;
  }
}

.company-profile .img-div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-profile .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.company-profile .content h3 {
  font-weight: 500;
  color: #252525;
  margin-bottom: 10px;
}

.company-profile .content p {
  color: #444444;
}

@media (max-width: 768px) {
  .company-profile .content {
    display: flex !important;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .history .row {
    display: flex !important;
    flex-direction: column-reverse;
  }
}
.history .img-div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.history .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.history .content h3 {
  font-weight: 500;
  color: #252525;
}

.history .content p {
  color: #444444;
}

@media (max-width: 768px) {
  .history .content {
    display: flex !important;
    align-items: center;
  }
}
.service-header {
  /* background: url(../image/services-banner.png); */
  /*background: url(../image/banners/service-banner.jpg);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-header h1 {
  color: #fff;
}

.service-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.usefull-links h1 {
  font-weight: 500;
  color: #252525;
}

.usefull-links p {
  color: #444444;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.usefull-links .row .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
  border-radius: 10px;
}

.usefull-links .row .content h4 {
  font-weight: 500;
  color: #252525;
  margin-bottom: 0px;
}

.usefull-links .row .content:hover {
  background-color: #631046;
}

.usefull-links .row .content:hover h4 {
  color: #fff;
}

.usefull-links .row .content:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .usefull-links .row .content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
}
.package-header {
  /* background: url(../image/package\ -banner.png); */
  background: url(../image/banners/service.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.package-header h1 {
  color: #000000 !important;
}

.package-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.main-content .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.main-content h1 {
  color: #252525;
}

.main-content p {
  color: #444444;
}

.branches-header {
  background: url(../image/banners/branches.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.branches-header h1 {
  color: #fff;
}

.branches-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

/*money transfer */
.main-branch-rate-card {
  margin-top: 6rem !important;
}

.main-branch-rate-card .rate-card-braches {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(245, 184, 184, 0.23) 0px 3px 6px;
  border-radius: 10px;
  padding: 13px 82px 24px 82px;
  margin: 0 auto;
}

@media (max-width: 585px) {
  .main-branch-rate-card .rate-card-braches {
    padding: 0 1rem;
  }
}
.main-branch-rate-card .rate-card-braches .view-more-rate {
  background-color: #8c0d59;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.3rem 1rem;
  border-radius: 25px;
  color: #fff;
}

@media (max-width: 513px) {
  .main-branch-rate-card .rate-card-braches .view-more-rate {
    padding: 0.3rem 1rem;
    font-size: x-small;
  }
  .main-branch-rate-card .rate-card-braches h2 {
    font-size: large;
  }
}
@media (max-width: 400px) {
  .main-branch-rate-card .rate-card-braches .view-more-rate {
    padding: 0.3rem 0.5rem;
  }
}
.main-branch-rate-card .rate-card-braches h2 {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 500;
  color: #252525;
}

.main-branch-rate-card .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .main-branch-rate-card .content {
    display: flex;
    flex-direction: column;
  }
}
.main-branch-rate-card .prate {
  color: black !important;
  font-weight: 500;
}

.main-branch-rate-card .input-container {
  flex: 0 0 auto;
  /* margin-right: 20px; */
}

.main-branch-rate-card .input-container input {
  padding: 2rem 2rem;
  font-size: 22px;
  border: 0.5px solid #939191;
  border-radius: 5px;
  width: 80%;
  text-align: center;
}

.main-branch-rate-card .rates-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .main-branch-rate-card .rates-container {
    display: flex !important;
    justify-content: center !important;
  }
}
.main-branch-rate-card .rate {
  text-align: center;
}

.main-branch-rate-card .rate p {
  margin: 5px 0;
}

.main-branch-rate-card .currency-name {
  font-size: 12px;
  color: #000;
  font-weight: 400;
}

.main-branch-rate-card .separator {
  width: 1px;
  height: 40px;
  background-color: #444444;
  margin: 0 15px;
}

.main-branch-rate-card .arrow {
  font-size: 24px;
  color: #666;
  cursor: pointer;
}

.main-branch-rate-card .padding-leftr {
  padding-left: 5rem;
  padding-right: 5rem;
}

.main-branch-rate-card .flag {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.main-branch-rate-card .icon-containerv-m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.main-branch-rate-card .move-l {
  margin-left: 17px;
}

.main-branch-rate-card .icon-containerv-m i {
  color: #000000;
  font-size: 16px;
}

.main-branch-rate-card .icon-containerv-m:hover {
  background-color: #631046;
  border-color: #631046;
}

.main-branch-rate-card .icon-containerv-m:hover i {
  color: #ffffff;
}

.no-padding {
  padding-bottom: 0 !important;
}

.map-sec {
  margin-bottom: 0rem;
}
.branches-map iframe {
    width: 100% !important; /* Forces the iframe to take the full width of its container */
    height: 400px; /* Adjust height as needed */
    border: 0;
}

.map-sec .branches-map {
  width: 100%;
  height: 400px;
}

.map-sec .inner-content {
  position: relative;
}

.map-sec .inner-content .content-address {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  height: 70%;
  width: 100%;
  max-width: 387px;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(245, 184, 184, 0.23) 0px 3px 6px;
}

.map-sec .inner-content .content-address h2 {
  font-weight: 600;
  text-align:center;
}

.map-sec .inner-content .content-address a {
  color: #252525;
}

@media (max-width: 500px) {
  .map-sec .inner-content .content-address {
    width: 90%;
  }
}
.custom-dropdown {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.custom-dropdown select {
  display: none; /* Hide the default dropdown */
}

.dropdown-selected {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 1.5rem;
  background-color: #fff;
}

.dropdown-selected span {
  font-size: small;
}

.dropdown-selected img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.dropdown-selected::after {
  content: "";
  position: absolute;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

.dropdown-items {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-items div {
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-items div:hover {
  background-color: #f1f1f1;
}

.dropdown-items img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.custom-dropdown1 {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.custom-dropdown1 select {
  display: none; /* Hide the default dropdown */
}

.dropdown-selected1 {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}

.dropdown-selected1 span {
  font-size: small;
}

.dropdown-selected1 img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.dropdown-selected1::after {
  content: "";
  position: absolute;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

.dropdown-items1 {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-items1 div {
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-items1 div:hover {
  background-color: rgba(244, 244, 244, 0.9568627451);
}

.dropdown-items1 img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.custom-dropdown2 {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.custom-dropdown2 select {
  display: none; /* Hide the default dropdown */
}

.dropdown-selected2 {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  /* padding: 0rem 1.3rem 0 0.2rem; */
  cursor: pointer;
  position: relative;
  background-color: #fff;
}

.dropdown-selected2 span {
  /* font-size: small; */
  font-weight: 500 !important;
  color: black !important;
  font-family: "General Sans", sans-serif !important;
}

.dropdown-selected2 img {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.dropdown-selected2::after {
  content: "";
  position: absolute;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

.dropdown-items2,.dropdown-items1 {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
    overflow: auto;
    min-height: 350px;
    min-width: 166px;
}

.dropdown-items2 div {
        color: black;
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-control:focus, .form-control:active {
    border-color: #000000 !important;
}

.dropdown-items2 div:hover {
  background-color: #e5e1e4;
}

.dropdown-items2 img {
  /* width: 20px;
  height: 20px; */
  width: 20px;
  height: auto;
  margin-right: 10px;
}

/* mobile screen css strts here */
.owl-dots {
  position: absolute;
  bottom: 1%;
  left: 50.5%;
  transform: translateX(-50%);
}

.mobile-main .owl-dots {
  bottom: 6% !important;
}

.owl-dot .button {
  width: 10px;
  height: 10px;
}

.mobile-banner {
  position: relative;
}

.mobile-banner .content {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-banner .content span {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 70%;
}
@media (max-width: 404px) {
  .mobile-banner .content span {
    width: 80%;
  }
}

.mobile-banner .content p {
  color: #fff;
  text-align: center;
  font-size: 14px !important;
  width: 80%;
}
@media (max-width: 677px) {
  .mobile-banner .content p {
    width: 90%;
  }
}
@media (max-width: 404px) {
  .mobile-banner .content p {
    width: 98%;
  }
}

.mobile-banner .content a {
  font-size: 10px;
  background-color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  color: #fff;
  margin-top: 1rem;
}

@media (max-width: 453px) {
  .mobile-banner img {
    width: 50%;
    height: 149px !important;
  }
}
@media (max-width: 561px) {
  .mobile-banner .content span {
    font-size: 12px;
    font-weight: 400;
    }
  .mobile-banner .content p {
    color: #fff;
    font-size: 8px !important;
    margin: 0;
  }
  .mobile-banner .content a {
    font-size: 8px;
    padding: 0.2rem 1rem;
  }
}
@media (max-width: 367px) {
  .mobile-banner .content span {
    font-size: 12px;
    font-weight: 400;
    }
  .mobile-banner .content p {
    color: #fff;
    font-size: 6px !important;
    margin: 0;
  }
  .mobile-banner .content a {
    font-size: 6px;
    padding: 0.2rem 1rem;
  }
}

@media (min-width: 562px) and (max-width: 1001px) {
  .mobile-banner .content span {
    font-size: 12px !important;
    font-weight: 400 !important;
    }}

.mobile-main .owl-dots button.owl-dot {
  width: 4px;
  height: 4px;
}
.mobile-main .owl-dots button.owl-dot.active {
  background-color: #fff;
}

.mobile-card {
  display: flex;
  justify-content: center;
}
.mobile-card div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
}

.content:hover .p-contnt {
  color: #cfcfcf !important;
}


.mobile-card div .inner-content {
  /* background-color: #f4f4f4; */
  background-color: #e3e3e3;
  display: flex;
  flex-direction: column;
  max-width: 140px;
  width: 100%;
  height: 110px;
  padding: 3rem 0;
  margin-top: 2rem;
  border-radius: 10px;
}
.mobile-card div .inner-content img {
      width: 40px;
  transition: filter 0.3s ease; /* Smooth transition for the hover effect */
}
.mobile-card div .inner-content span {
  color: var(--primary);
  font-weight: 600;
  font-size: 10px;
}
.mobile-card div .inner-content:hover {
  background-color: var(--primary);
}
.mobile-card div .inner-content:hover span {
  color: #fff;
  font-weight: 500;
}
.mobile-card div .inner-content:hover img {
  filter: invert(1) brightness(300%);
}

.mobile-last-sec {
  background-image: url("../image/mobile-last.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile-last-sec div {
  display: flex;
  flex-direction: column;
  padding: 2rem 0.5rem;
  font-size: 14px;
  gap: 1rem;
  position: relative;
  z-index: 2; /* Ensures the text appears above the dark overlay */
}
.mobile-last-sec div i {
  font-size: 18px;
}
@media (max-width: 385px) {
  .mobile-last-sec div a {
    font-size: x-small !important;
  }
}
.mobile-last-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Dark shade, adjust opacity as needed */
  z-index: 1; /* Ensures the overlay is above the background image but below the text */
}

#carousel4 .owl-dots {
  bottom: -5% !important;
}

@media (max-width: 991px) {
  #carousel4 .img-container {
    max-width: 100% !important;
    max-height: 100% !important;
  }
  #carousel4 .content {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  #carousel4 .img-container {
    max-width: 100% !important;
    max-height: 100% !important;
  }
  #carousel4 .content {
    margin-top: 2rem;
  }
}
.offers-header {
  /* background: url(../image/offersBanne.png); */
  background: url(../image/banners/offers.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offers-header h1 {
  color: #fff;
}

.offers-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

@media (max-width: 600px) {
  #carousel6 .custom-controls-wrapper,
  #carousel7 .custom-controls-wrapper {
    gap: 7rem !important;
  }
}

#carousel6 .viewmore-btn {
  position: absolute;
  bottom: 25px;
  right: 40px;
  color: #fff !important;
}
#carousel6 .viewmore-btn span {
  border: 2px solid #fff !important;
}

#carousel7 .viewmore-btn {
  position: absolute;
  bottom: 25px;
  right: 40px;
  color: #fff !important;
}
#carousel7 .viewmore-btn span {
  border: 2px solid #fff !important;
}

@media (min-width: 600px) and (max-width: 1100px) {
  #carousel6 .viewmore-btn,
  #carousel7 .viewmore-btn {
    font-size: 0.7rem;
  }
  #carousel6 .viewmore-btn span,
  #carousel7 .viewmore-btn span {
    width: auto !important;
    height: auto !important;
  }
  #carousel6 .viewmore-btn span i,
  #carousel7 .viewmore-btn span i {
    font-size: 0.5rem !important;
  }
  #carousel6 .viewmore-btn {
    right: 10px;
  }
  #carousel7 .viewmore-btn {
    right: 10px;
  }
}
.offer-details {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.offer-details h3 {
  color: #444444;
  font-weight: 600;
}
.offer-details p {
  color: #444444 !important;
  font-size: 16px !important;
}

.call-back {
  position: relative;
}
.call-back p {
  max-width: 600px;
  width: 100%;
}
.call-back form {
  max-width: 1000px;
  padding: 2rem 2rem;
  background-color: #fff;
  width: 100%;
  z-index: 10;
}
.call-back form input {
  height: 87px !important;
  margin-bottom: 2rem;
  background-color: #eeeeee;
  border: none;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #4d5765;
}
.call-back form input:focus,
.call-back form input :active {
  outline: none;
}
.call-back form textarea {
  height: 155px;
  margin-bottom: 2rem;
  background-color: #eeeeee;
  border: none;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #4d5765;
}
.call-back form textarea:focus,
.call-back form textarea :active {
  outline: none;
}
.call-back form .contact-icon {
  position: absolute;
  top: 35px;
  right: 46px;
}
.call-back form button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 2rem 0;
  font-weight: 600;
}
.call-back .bottom-div {
  min-height: 320px;
  width: 100%;
  background-color: var(--primary);
  position: absolute;
  bottom: -15%;
}

.image-div {
  max-width: 96%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.image-div img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}

.new-header {
  background: url(../image/banners/service-detail.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news-header h1 {
  color: #fff;
}

.news-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.new-content .news-header {
  background-color: #f4f4f4;
  height: 50px;
}
@media (max-width: 768px) {
  .new-content .news-header {
    height: auto;
  }
}
.new-content .news-header h1 {
  background-color: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1rem;
  font-size: 24px;
}
.new-content .slide-content {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 10px;
}
.new-content .slide-content div {
  position: relative;
}
.new-content .slide-content div h6 {
  font-size: 16px;
  background-color: var(--primary);
  color: #fff !important;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 10px 0 0 0;
  position: absolute;
  top: 0;
  left: 12px;
  font-weight: 500;
}

.new-details-header {
  background: url(../image/new-details-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.new-details-header h1 {
  color: #fff;
}

.new-details-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

#toggleCarousel1 {
  display: none;
}

#eventTogglerBtn2 {
  background-color: rgba(99, 16, 70, 0.25);
}

#eventTogglerBtn {
  display: flex !important;
  flex-direction: row;
}
#eventTogglerBtn h1 {
  cursor: pointer;
}

.main-img-sec {
  margin-top: 5rem;
}
.main-img-sec .container {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  border-radius: 10px;
}
.main-img-sec .container h4 {
  font-weight: 500;
  color: #444444 !important;
  font-size: 24px;
}
.main-img-sec .container p {
  color: #444444 !important;
  font-size: 16px;
}
@media (max-width: 768px) {
  .main-img-sec .container h4 {
    font-size: 20px !important;
  }
  .main-img-sec .container p {
    font-size: 13px !important;
  }
}
@media (max-width: 500px) {
  .main-img-sec .container h4 {
    font-size: 15px !important;
  }
  .main-img-sec .container p {
    font-size: 10px !important;
  }
}
.main-img-sec .container .main-img h6 {
  background-color: var(--primary);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 10px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
}
.main-img-sec .secondary-img {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.contact-header {
  background: url(../image/banners/contact-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-header h1 {
  color: #fff;
}

.contact-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.right-sec {
  padding-left: 17px;
}

.contact-content {
  background-color: #fff;
  padding: 1rem 1rem;
  border-radius: 10px;
}
.contact-content h6 {
  font-weight: 600;
  font-size: 24px !important;
  color: #000000 !important;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .contact-content h6 {
    font-size: 20px !important;
  }
}
@media (max-width: 500px) {
  .contact-content h6 {
    font-size: 15px !important;
  }
}
.contact-content a {
  color: #454343 !important;
  font-size: 16px !important;
  font-weight: 500;
}
@media (max-width: 991px) {
  .contact-content a {
    font-size: 14px !important;
  }
  .mob-card {
    padding-left: 20px;
    padding-bottom: 29px;
    padding-right: 8px;
    background: #631046;
    margin-bottom: 19px;
    padding-top: 15px;
  }
}

.pdr {
  padding-right: 17px !important;
}

.form-sec {
  background-color: #eeeeee;
}
.form-sec form {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #fff;
}
.form-sec form div {
  height: -moz-fit-content;
  height: fit-content;
}
.form-sec form input {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: none;
  background-color: #eeeeee;
}
.form-sec form input:focus,
.form-sec form input :active {
  outline: 1px solid var(--primary);
}
.form-sec form textarea {
  height: 230px;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  background-color: #eeeeee;
}
.form-sec form textarea:focus,
.form-sec form textarea :active {
  outline: 1px solid var(--primary);
}
.form-sec form select {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: none;
  background-color: #eeeeee !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* Remove the default arrow */
  background: url('data:image/svg+xml;utf8,<svg fill="" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>')
    no-repeat right 10px center;
}
.form-sec form select:focus,
.form-sec form select :active {
  outline: 1px solid var(--primary);
}
.form-sec form select::after {
  padding-right: 10rem;
}
.form-sec form button {
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  padding: 1rem 0;
  border: none;
  font-size: 12px;
  font-weight: 500;
}
.form-sec form .contact-icon {
  position: absolute;
  right: 28px;
  top: 22px;
}

.privilege-header {
  /* background: url(../image/privilege-banner.png); */
  background: url(../image/banners/service-detail.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.privilege-header h1 {
  color: #000000 !important;
}

.privilege-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.privilege-main .privilege-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.privilege-main .privilege-content h6 {
  margin: 0;
  font-size: 18px !important;
  font-weight: 600;
}
@media (max-width: 991px) {
  .privilege-main .privilege-content h6 {
    font-size: 20px !important;
  }
}
@media (max-width: 542px) {
  .privilege-main .privilege-content h6 {
    font-size: 18px !important;
  }
}
@media (max-width: 490px) {
  .privilege-main .privilege-content h6 {
    font-size: 16px !important;
  }
}

.AML-header {
  background: url(../image/banners/aml.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.AML-header h1 {
  color: #fff;
}

.AML-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.aml-content p {
  color: #444444 !important;
  font-size: 16px !important;
}

.send-part {
  padding-top: 8px;
}

@media (max-width: 768px) {
  .aml-content p {
    font-size: 14px !important;
}
  .exchange-box {
    padding: 29px 20px 29px 14px !important;
  }

  .send-part {
    padding-top: 8px;
  }
  .p-home {
    margin-bottom: 0px;
  }

  .italics {
    font-size: 12px !important;
    font-weight: 500;
    color: #000000 !important;
  }
}

.privacy-header {
  background: url(../image/banners/privacy.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100% !important;
  height: 60vh;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.privacy-header h1 {
  color: #fff;
}

.privacy-header p {
  max-width: 450px;
  width: 100%;
  text-align: center;
  color: white;
}

.latest-offer {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff !important;
  background-color: var(--primary);
  padding: 0.3rem 1rem;
}
@media (max-width: 1043px) {
  .latest-offer {
    padding: 0.1rem 1rem;
  }
}
@media (max-width: 866px) {
  .latest-offer {
    padding: 0 1rem;
  }
}

.custom-table {
  background-color: #f5f5f5; /* Light grey background */
}

.custom-table thead th {
  background-color: var(--primary); /* Burgundy color */
  color: white;
  text-align: center; /* Center align the table headings */
  vertical-align: middle; /* Vertically align text in the center */
}

.custom-table tbody td {
  vertical-align: middle;
  text-align: center;
}

.custom-table img {
  width: 20px;
  height: auto;
}
.custom-table tbody td.country-cell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 2px; /* Adds space between flag and text */
  white-space: nowrap; /* Prevents breaking into two lines */
}
.table-footer {
  font-size: 0.9rem;
  color: #666;
  text-align: left;
  padding-top: 10px;
}

.mission-vission .content:hover {
  background-color: var(--primary);
  cursor: pointer;
  transition: all 1s ease;
}

.mission-vission .content:hover h4,
.mission-vission .content:hover p {
  color: #fff !important;
}

.nex-section .main-sec .row .content:hover {
  background-color: var(--primary);
  transition: all 1s ease;
  cursor: pointer;
}

.nex-section .main-sec .row .content:hover h3,
.nex-section .main-sec .row .content:hover p {
  color: #fff;
} /*# sourceMappingURL=style.css.map */

@media (min-width: 768px) and (max-width: 991.98px) {
  .missionv-pd {
    padding: 0rem 1rem 0rem 1rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .missionv-pd {
    padding: 0rem 1rem 0rem 1rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .headings-content {
    font-size: 18px !important;
  }
  .p-contnt {
    font-size: 12px;
  }
  .branchpp {
    font-size: 12px !important;
  }
  .fontsz {
    font-size: 12px;
  }
}

/* flag dropdown */
.flags-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.322);
  width: 100%;
  padding: 0rem 0.9rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.85rem;
  line-height: 1 !important;
  height: 38px;
  z-index: 20;
}

.flags-dropdown-arrow {
  color: black;
  font-size: 17px;
}

.flags-selected-wrapper {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.flags-selected-country {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 500;
}

.flags-selected-img {
  height: 18px;
  width: 28px;
  object-fit: contain;
}

.flags-dropdown-list {
  background-color: #fff;
  position: absolute;
  top: 38px;
  left: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
  cursor: pointer;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  display: none;
  z-index: 30;
}

.show {
  display: block;
}

.flags-item {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  gap: 0.45rem;
  line-height: 1;
}

.flags-item img {
  height: 18px;
  width: 28px;
  object-fit: contain;
}

.flags-item:hover {
  background-color: rgb(211, 211, 211);
}

.flags-item-text {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 500;
}

/* flag dropdown */

/* bank dropdown */
.bank-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.322);
  width: 100%;
  padding: 0 0.9rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.85rem;
  line-height: 1 !important;
  height: 38px;
  z-index: 20;
}

.agent-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.322);
  width: 100%;
  padding: 0 0.9rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.85rem;
  line-height: 1 !important;
  height: 38px;
  z-index: 20;
}
#selectedTypeName{
     color: black;
    text-transform: capitalize;
    font-weight: 500;
}
.bank-dropdown-arrow {
  font-size: 20px;
  margin-left: auto;
  color: black;
  font-size: 17px;
}

.agent-dropdown-arrow {
  font-size: 20px;
  margin-left: auto;
  color: black;
  font-size: 17px;
}


.bank-selected-wrapper {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.agent-selected-wrapper {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.bank-selected-country {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 500;
}

.bank-selected-img {
  height: 18px;
  width: 28px;
  object-fit: contain;
}


.bank-dropdown-list {
  background-color: #fff;
  position: absolute;
  top: 38px;
  left: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
  cursor: pointer;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  display: none;
  z-index: 30;
}
.agent-dropdown-list {
  background-color: #fff;
  position: absolute;
  top: 38px;
  left: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
  cursor: pointer;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  display: none;
  z-index: 30;
}

.show {
  display: block;
}

.bank-item {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  gap: 0.3rem;
  line-height: 1;
}
.agent-item {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  gap: 0.3rem;
  line-height: 1;
}

.bank-item-img {
  height: 18px;
  width: 28px;
  object-fit: contain;
}
.agent-item-img {
  height: 18px;
  width: 28px;
  object-fit: contain;
}
.bank-item:hover {
  background-color: rgb(211, 211, 211);
}
.agent-item:hover {
  background-color: rgb(211, 211, 211);
}

.bank-item-text {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 500;
}
.agent-item-text {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 500;
}
.bank-dropdown-selected {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.agent-dropdown-selected {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.banklogos img {
  /* width: auto !important; */
  height: 57px;
}
.agentlogos img {
  /* width: auto !important; */
  height: 57px;
}
#carousel2 .owl-stage-outer.owl-height {
  height: 111px !important;
  min-height: 131px;
}

#carousel2 .owl-stage {
  height: 90px;
  padding-top: 23px;
}

/* bank dropdown */
/* marquee */
.logoMarqueeSection {
  background-color: #eeeeee;
  padding-bottom: 36px;
}

#logoMarqueeSection {
  max-width: 1920px !important;
  margin: 0 auto;
}

.default-content-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
  min-height: 100vh;
}

.marquee img {
  padding-right: 2.4rem;
  height: 60px;
}

.logoMarqueeSection > div > div {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
  width: 100%;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 10;
}

.marquee:hover {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* marquee */

.mail-class {
  color: #631046 !important;
  font-weight: 500;
}

.mail-class:hover {
  color: #000 !important;
}

.ceo-msg {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .direction-fl {
    flex-direction: column-reverse;
  }
  .bank-dropdown {
    margin-bottom: 10px;
  }
  .agent-dropdown {
    margin-bottom: 10px;
  }
  .default-content-container {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

.branch_address {
  padding-top: 55px;
  padding-bottom: 55px;
}

.branch_address h3 {
  width: 100%;
  float: left;
  font-weight: 600;
  font-size: 22px;
  color: #631046;
  margin-bottom: 5px;
  font-family: "General Sans", sans-serif;
}

.branch_address h4 {
  font-weight: 500;
  color: #4d4d4d;
  line-height: 24px;
  margin-bottom: 3px;
  font-size: 0.9rem !important;
  font-family: "General Sans", sans-serif;
}

.branch_address .branch_contact span {
  width: 80px;
  float: left;
  font-weight: 500;
  color: #252525;
}

.branch_address .branch_contact {
  width: 100%;
  float: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  padding-top: 9px;
  color: #000;
}

.branch_address .branch_contact:hover {
  color: #631046;
}

.branch_btn a {
  width: 100%;
  float: left;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.primaryc {
  color: #631046;
}

@media (max-width: 768px) {
  .flags-dropdown {
    margin-bottom: 13px;
  }
  .jordan-bank-logo {
    height: 30px !important;
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1011px) {
  .tabdrp {
    width: 44% !important;
  }
  .bank-selected-country,
  .agent-selected-country,
  .flags-selected-country,
  .bank-item-text,
  .agent-item-text,
  .flags-item-text {
    font-size: 10px !important;
  }
  .default-content-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .partners-pd {
    padding: 3rem 0rem 2rem 1rem !important;
  }
}

.branchcards {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  padding: 1rem;
  height: 100%;
  flex: 1;
}

.branch-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #555;
  margin: 0.2rem 0;
  height: 108px;
}

.branch_contact {
  color: #631046 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.land{
    color: #631046 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 19px;
    padding-top: 9px;
        font-weight: 500;
}

.land i {
    padding-right: 10px;
}

.clickable:hover {
  color: #000000 !important;
  text-decoration: none;
}

.branch_btn {
  padding-top: 0.5rem;
}

.branch-location-btn {
  background-color: #631046;
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  transition: background-color 0.3s, transform 0.2s;
}

.branch-location-btn:hover {
  background-color: #49002f;
}

.branch_contact i {
  padding-right: 10px;
}

@media (max-width: 768px) {
  .branch-subtitle {
    height: auto;
  }
}

/* banner animation  */

.toggle-btn {
  /*transition: transform 0.5s ease;*/
  transition: all 0.3s ease;
}



.translate-right {
  transform: translateX(24%); /* Move to the right */
}

.translate-left {
  transform: translateX(0); /* Reset to original position */
}
/* banner animation  */

.hoverb {
  color: #3d3d3d !important;
}

.hoverb:hover {
  color: #631046 !important;
}

.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background-color: #6e1244 !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed):hover {
  color: rgb(255, 255, 255) !important;
  background-color: #590130 !important;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(18) brightness(7) contrast(9983);
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none !important;
}

.accordion-button {
  background-color: #ececec !important;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.accordion-button:hover {
  background-color: #e0e0e0 !important;
}

.accordion-body {
  background-color: #ffffff !important;
  border: 0.5px solid #eee !important;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 1px !important;
  border-top-right-radius: 1px !important;
}

.accordion-item {
  border-color: transparent !important;
  background: transparent !important;
  margin: 0 10px 10px 0;
}

#coll2 img {
  width: 124% !important;
  height: 46% !important;
}

#coll16 img {
  width: 100% !important;
  height: 100% !important;
}

#coll11 img {
  width: 80% !important;
  height: 92% !important;
}

#coll12 img {
  width: 70% !important;
  height: 97% !important;
}

#coll17 img {
  width: 72%;
  height: 74%;
}

#coll13 img {
  width: 74% !important;
  height: 94% !important;
}

@media (max-width: 768px) {
  #coll2 img {
    width: 65% !important;
    height: 94% !important;
  }
  #coll4 img {
    width: 80% !important;
    height: 111% !important;
  }
  #coll5 img {
    width: 80% !important;
    height: 90% !important;
  }
  #coll9 img {
    width: 74% !important;
    height: 98% !important;
  }
}
.pservices {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.txtp textarea {
  padding-top: 9px;
}

.service-header h1,
.branches-header h1,
.offers-header h1,
.new-header h1,
.about-header h1,
.contact-header h1,
.AML-header h1,
.privacy-header h1 {
  color: black !important;
}

@media (max-width: 767px) {
  .usefull-links .row .content {
    margin-bottom: 10px;
  }
}

.img-icons {
  width: 52px;
  height: 67px;
}

@media (max-width: 768px) {
  .about-header,
  .service-header,
  .branches-header,
  .offers-header,
  .new-header,
  .contact-header,
  .privilege-header,
  .package-header,.AML-header,.privacy-header,.gallery-header {
    height: 24vh !important;
  }
}


@media (max-width: 991.98px) { 
  .translate-right {
    transform: translateX(17%);
  }
  
  
  .translate-left {
    transform: translateX(0); 
  }
  .carousal-box .toggle-btn{
    background-color: #3f0a2c !important;
  }
  .money-btn {
   
    font-weight: 500;
    margin-top: -2px !important;
    width: 98% !important;
    margin-bottom: 8px;
    color: rgb(255, 255, 255) !important;
    padding: 7px 20px !important;
    border-radius: 50px;
  }
}



.service-item .motorbike-icon{
    filter: brightness(23) invert(1);
}

@media (min-width: 968px) and (max-width: 991px) {
    .footer-cp{
      display:none !important;
    }
}


.c-cb{
    font-size:20px;
    color:black;
}


.bg-p span{
    background-color:white !important;
}

.about-dp{
    height:auto !important;
}

.hover-main:hover {
    opacity: 0.5 !important;
    transition: opacity 0.3s ease;
}


.custom-indicators {
 position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 6;
    width: 70px;
    margin: 10px;
}

.custom-indicators button {
  width: 12px !important;
  height: 12px  !important;
  border-radius: 50%;
  border: none;
  background-color: #5e5e5e;
  opacity: 0.5;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
  border: 2px solid transparent;
  border-top:0px !important;
  border-bottom:0px !important;
  margin-top:5px !important;
    margin-bottom:5px !important;

}

.custom-indicators button.active {
  background-color: #c8a46b;
  opacity: 1;
}

.custom-indicators button:hover {
  opacity: 0.8;
  outline: 2px solid #26262654;
}


#heroCarousel {
  position: relative;
}

#heroCarousel .carousel-inner .carousel-item {
  height: 100vh;
}



.p-carousal {
 position: absolute;
    top: 50%;
    left: 66%;
    /*transform: translate(-8%, -53%);*/
    z-index: 10;
    color: #fff;
    padding: 15px;
}

/*.p-carousal .send-box {*/
/*  position: relative;*/
/*  z-index: 5; */
/*}*/


#exchangeBox.collapse:not(.show) {
    display: block;  
    visibility: hidden;    
}

#exchangeBox.show {
    visibility: visible;  
    transition: all 0.3s ease !important;
}


@media (max-width: 768px) {
    #exchangeBox.collapse:not(.show) {
        display: none !important;
        visibility: visible; 
    }
    
    .dropdown-selected1::after {
        right: -8px !important;
    }

    .dropdown-selected1 {
         padding: 0.5rem 0.5rem !important;
    }
    .flag-amount span {
    font-size: small;
  }
}

.custom-testimonial-carousel .card-container .name,
.custom-testimonial-carousel .card-container .subtitle{
    color: white !important;
}

@media (min-width: 320px) and (max-width: 375px) {
  .dropdown-selected1 img {
    width: 17px;
    height: 15px;
    margin-right: 5px;
  }
  .flag-amount span {
    font-size: small;
  }
}

