

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

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

a {
  color: #2d2f95;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-header {
  text-align: left;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size:24px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #2d2f95;

}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #343a40;
  text-align: justify;
}

h2.custom-75 {
  width: 75%;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 14px;
    line-height: normal;
}
}



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

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

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #fff;
  margin-top:50px;
}

.header.header-scrolled {
    background:#fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    margin-top:0px;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height:50px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6f6d6d;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

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

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

.navbar li {
  position: relative;
}

.navbar .megamenu ul li a:hover {
  background: #f5f5f5;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 500;
 color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2d2f95;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2d2f95;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #2d2f95;
}

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

.navbar .dropdown ul li {
  min-width: 230px;
  display:inline-block;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

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

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

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

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
 color: #000;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #2d2f95;
}

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

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

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

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

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/home-banner.jpg) top center no-repeat;
  background-size: cover;
  padding:120px 0;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #2d2f95;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

.about-section {
      padding: 60px 0;
    }
    .about-text h2 {
      font-weight: 700;
      font-size:32px;
      color: #000;
    }
    .about-text h4 {
      font-weight: 600;
      margin-top: 20px;
      color: #000;
    }
    .border-left {
      border-left: 5px solid #0d4a6d; /* dark blue accent */
      padding-left: 15px;
    }
    .btn-custom {
      background-color: #0d4a6d;
      color: #fff;
      border-radius: 10px;
      padding: 10px 20px;
      font-weight: 500;
    }
    .btn-custom:hover {
      background-color: #08344d;
      color: #fff;
    }
    .section-title {
      border-left: 6px solid #0d3d59; /* dark blue line */
      padding-left: 12px;
      margin-bottom:20px;
    }
    .section-title small {
      font-size: 14px;
      font-weight: 500;
      color: #555;
      display: block;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
      color: #000;
    }

    ul.social-icons {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 12px;
    }
    ul.social-icons li a {
      color: white;
      font-size: 20px;
      transition: color 0.3s;
    }
    ul.social-icons li a:hover {
      color: #0d71b9;
    }
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 60px 0 60px 0;
  }

  .hero h5 {
    font-size: 14px;
    line-height: 18px;
}
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .hero .hero-img img {
    width: 80%;
  }

  .content .list {
    width: 100%;
    margin-right: 0;
}
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

h1.breadcrumbs-custom-title {
  font-size: 60px;
}

 .content {
  background-color: #f6f9ff;
  padding: 40px;
  display: block;
}

 h3 {
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #2d2f95;

}

 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #6f6d6d;
}

 p {
  margin: 0px 0 10px 0;
  line-height: 24px;
}

 .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #2d2f95;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

 .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

 .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

 .btn-read-more:hover i {
  transform: translateX(5px);
}
.info-section {
      background-color: #062d46; /* dark blue */
      background: url(../img/about-bg.jpg) top center no-repeat;
    background-size: cover;
      color: #fff;
      padding: 50px 0;
    }
    
    .info-item:not(:last-child) {
      border-right: 1px solid #ccc;
    }
    
    .info-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
    justify-content: start;
    gap:20px;
}

.info-item img {
    width: 42px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #022641;
  padding: 0 0 15px 0;
  font-size: 14px;
  color: #fff;
}


.footer .footer-top {
  /* background: white url(../img/footer-bg.png) no-repeat 90% top;
  background-size: contain; */
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}



@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

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

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6f6d6d;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color:#fff;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color:#2d2f95;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-top .footer-links ul a {
 color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #2d2f95;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 15px;
  color: #fff;
}


#home:checked ~ .list label.home,
#blog:checked ~ .list label.blog,
#help:checked ~ .list label.help,
#code:checked ~ .list label.code,
#about:checked ~ .list label {
  color: #22272c;
  background: linear-gradient(67deg,#c9ffec 0%,#cadaff 95%);
}


.content .text-content {
  width: 80%;
  color: rgba(255, 255, 255, 0.7);
  position: sticky;
  top: 0;
  left: 0;
  height:70vh;
  background-color: #1c315b;
  overflow: hidden;
  padding:2% 3% 4% 8%;
}

.content .text {
  display: none;
  

}



.content .text .title {
  font-size: 30px;
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
}

.container .text p {
  text-align: justify;
}

.content .text-content .home {
  display: block;
}

#home:checked ~ .text-content .home,
#blog:checked ~ .text-content .blog,
#help:checked ~ .text-content .help,
#code:checked ~ .text-content .code,
#about:checked ~ .text-content  {
  display: block;
}

#blog:checked ~ .text-content .home,
#help:checked ~ .text-content .home,
#code:checked ~ .text-content .home,
#about:checked ~ .text-content .home {
  display: none;
}

.content .list label:hover {
  color: #bb86fc;
}

.content .list svg {
  margin-right: 15px;
}

.p-70{
  padding:70px 0;
}

.services h4 {
  font-size:24px;
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #131d2b;
  margin: 20px 0;
  margin-bottom: 10px;}

  .list label::after {
    font-size: 105px;
    font-weight: 900;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .14) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    right: 37px;
    z-index: 1;
    line-height: 1;
    letter-spacing: -4px;
}

.list label:first-child:after {
  content: "01";
}
.list label:nth-child(2)::after {
    content: "02";
}

.list label:nth-child(3)::after { 
  content: "03";

}
.list label:nth-child(4)::after{
  content: "04";

}

.text-content h4{
  color: #fff;
}

.content .list label:last-child {
  margin: 0;
}





.flip-icon {
  perspective: 1000px;
  margin-right:10px;
  display: flex;
  justify-content: center;
}

.flipper {
  width: 28px;
  height: 28px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-icon:hover .flipper {
  transform: rotateY(180deg);
}

.front, .back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

.back {
  transform: rotateY(180deg);
}

.product-box {
  position: relative;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s;
    margin-bottom:30px;
}
.product-box img{
      border-radius: 20px;
    transition: 0.7s;
}

.product-box a {
    color: #000;
}
.product-box h4 {
  margin: 10px 0 5px;
  font-weight:700;
  font-size:28px;
}

.product-box p {
  font-size: 14px;
  margin: 0 0 10px;
  text-align: justify;
}

.product-box span {
  display: inline-block;
  border-radius: 4px;
  margin: 0px;
  font-size: 14px;
  background: #2d2f95;
  padding: 8px 20px;
  color: #fff;
}

.fintech {
  background:#fafbff;
}

.features .feature-box h5 {
  font-size: 18px;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  color:#000;
}

.top-bar {
      background-color: #003366;
      color: white;
      font-size: 14px;
      padding: 8px 0;
    }

 section.our-services {
    background: #f6f5f9;
}   

 .testimonial-section {
      background: url(../img/testimonial-bg.jpg) no-repeat center/cover;
      color: #fff;
      padding: 80px 0;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      color: #333;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
      height: 100%;
    }
    .testimonial-card img {
      width: 70px; height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    .testimonial-card .bi-quote {
      font-size: 2rem;
      color: #ccc;
      position: absolute;
      top: 15px;
      right: 20px;
    }
    .testimonial-card .rating i {
      color: #f4c150;
      font-size: 1rem;
    }
    .google-logo span { font-weight: bold; }
    .google-logo .blue { color: #4285F4; }
    .google-logo .red { color: #EA4335; }
    .google-logo .yellow { color: #FBBC05; }
    .google-logo .green { color: #34A853; }
    .testimonial-avatars img {
      width: 50px; height: 50px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -10px;
    }
    .swiper-button-next, .swiper-button-prev {
      background: #fff;
      border-radius: 50%;
      width: 40px; height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      color: #333;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
      font-size: 18px;
    }

.testimonial-card p {
    font-size: 14px;
}    

.blog-card span {
    display: inline-block;
    border-radius: 4px;
    margin: 0px;
    font-size: 14px;
    background: #2d2f95;
    padding: 8px 20px;
    color: #fff;
}

.blog-card {
  background: #fff;
  padding:15px;
  border-radius: 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);   
  height:390px;            
}

.date-badge {
    position: absolute;
    bottom: 0;
    background: #f6f5f9;
    color: #000;
    padding: 8px 16px;
    margin: 10px;
    border-radius: 6px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08); 
    border:1px solid ;
}

.blog-card img {
    border-radius: 10px;
}

.about-text span {
    display: inline-block;
    border-radius: 4px;
    margin: 0px;
    font-size: 14px;
    background: #2d2f95;
    padding: 8px 20px;
    color: #fff;
}

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

section.info-section p {
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    padding-right: 10px;
}
@media (max-width: 991px) {
header.header.d-flex.align-items-center.fixed-top {
    position: inherit;
    margin: 0;
    padding: 10px 0;
}
  .top-bar a {
    padding-right: 0;
}

  .content .list {
    width: 100%;
    margin-right: 0;
}

.content .list label{
  width:100%;
}

.content {
  display: block;
  margin-top: 20px;
}

.content .text-content {
  width: 100%;
  position: unset;
  height: auto;
  z-index: unset;
  margin-top: 1rem;
  padding-top: 6%;
}

.content .list label {
  padding: 10px 20px;
}

.services h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.list label:after {
  font-size: 60px;

}

.content .list label{
  margin-bottom: 1rem;
}

.content .text .title {
  font-size: 18px;
}

 p {
  text-align: left;
  font-size: 14px;
}

section {
  padding: 20px 0;

}

.services .service-box h3 {
  font-weight: 600;
  font-size: 20px;
}

.container .text p {
  text-align: left;
}

.section-header {
  padding-bottom: 20px;
}

.navbar-mobile .dropdown ul li {
  min-width: 100%;
}

h2.custom-75{
  width:100%;
}

.hero{
  background-position:top;
}

img.mt-5 {
    margin: 0 !important;
    width:180px;
}
section.about-banner {
  height: 250px;
  background-position: bottom;
  background-size: auto;
  align-items: end;
}

.team {
  padding: 20px 0;
}

.col-md-3.info-item {
    border-bottom: 1px solid #ffffff47;
    margin-bottom: 20px;
}

section.info-section p {
    font-size: 14px;
    margin: 0 0 20px;
}
}

@media (max-width: 767px) {

.service-box p {
  text-align: center;
}
.service-box {
  margin-top: 20px;
}

section.portfolio header.section-header {
  margin-bottom: 15px;
}

.counts h2{
  font-size:24px;
}

.features .feture-tabs h3{
  margin-top:20px;
}

h1.breadcrumbs-custom-title {
  font-size: 40px;
}

.col-lg-3.col-md-12.footer-contact.text-center.text-md-start {
  text-align: left !important;
}

.footer .footer-top{
  padding-top: 20px;
}

.footer .footer-top .footer-info {
  margin-bottom: 0px;
}

.footer .footer-top .footer-links {
  margin: 20px 0 0;
}

.footer .footer-top {
  padding: 20px 0 20px 0;
}

.footer .copyright {
  padding-top: 20px;
}

.footer {
  padding: 0 0 20px 0;
}

.footer .footer-top h4 {
  padding-bottom: 0;
}
}

.accordion-button:not(.collapsed) {
  background: #e1ecff;
  color: #000;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.Address a {
  display: block;
  color: #fff;
}

.content .text-content a {
  text-decoration: underline;
}

nav.navbar.navbar-mobile i.fa-solid.fa-bars.mobile-nav-toggle::before{
  content: "\f00d" !important;
}

.product-box .product-img:hover img {
  transform: scale(1.2);
}

.product-box .product-img img {
  transition: 0.6s;
}

.product-img {
  overflow: hidden;
}
.terms-and-Conditions ul {
  list-style: none;
  padding-left: 5px;
}

.countries-address ul{
  display: flex;
  gap:20px;
}

/* .countries-address ul li {
  margin-right: 10px;
} */

.countries-address ul li a {
  padding: 0 !important;
  background: transparent;
}

.countries-address ul li a img{
  width:42px;
  opacity:.3;
}

.countries-address .nav-pills .nav-link.active img{
  opacity: 1;
}

.countries-address .nav-pills .nav-link.active{
  background: transparent;
}

.scroll-prompt {
  position: absolute;
  z-index: 998;
  width: 80px;
  height: 130px;
  top: 30px;
  left: -12px;
  display: none;
}

a.nav-link.active .scroll-prompt {
  display: block;
}
.scroll-prompt .scroll-prompt-arrow-container {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -18px;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow {
  -webkit-animation-name: opacity;
          animation-name: opacity;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow:last-child {
  animation-direction: reverse;
  margin-top: -6px;
}
.scroll-prompt .scroll-prompt-arrow > div {
  width: 18px;
  height: 18px;
  border-right: 2px solid #2d2f95;
  border-bottom: 2px solid #2d2f95;
  transform: rotate(45deg) translateZ(1px);
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(3px);
  }
  20% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(9px);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(18px);
  }
  70% {
    transform: translateY(21px);
  }
  80% {
    transform: translateY(24px);
  }
  90% {
    transform: translateY(27px);
  }
  100% {
    transform: translateY(30px);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(3px);
  }
  20% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(9px);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(18px);
  }
  70% {
    transform: translateY(21px);
  }
  80% {
    transform: translateY(24px);
  }
  90% {
    transform: translateY(27px);
  }
  100% {
    transform: translateY(30px);
  }
}

.countries-address ul {
  margin-bottom:40px;
}

.support-canada-banner {
  margin: 100px 0px 20px;
}