/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
  --theme-color: #e6e8fd;
  --theme-color2: #89248d;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #2e3795;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #0c103c;
  --footer-bg2: #116E63;
  --footer-text-color: #F5FAFF;
}



/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}


/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}




/*====================
6. Margin & padding
======================*/

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}



/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title-tagline i{
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 55px;
  color:  var(--color-dark);
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span{
  color: var(--theme-color2);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px; 
  border: 3px solid rgba(33, 46, 84, 1);
  border-right-color: transparent;
}

.heading-divider.light{
  border-color: rgba(255, 255, 255, 0.2);
  border-right-color: transparent;
}

.heading-divider::after {
  position: absolute;
  content: '';
  width: 30px;
  background-color: var(--theme-color);
  top: 0;
  bottom: 0;
  left: 18px;
}




/*====================
8. Theme button
======================*/

.theme-btn {
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background:  var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before{
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--color-white);
}

.btn-gradient {
  background: linear-gradient(135deg, #2d3eeb, #a32cc4);
  color: white;
  border: none;
  transition: background 0.3s ease;padding:8px 20px;color:#fff;font-size:18px;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1f2bc9, #8d20b0); /* Slightly darker on hover */
  color: white;
}


/*====================
9. Container
======================*/

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color2);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}



/*====================
11. Header top css
======================*/

.header-top {
  padding: 0 0 10px 0;
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.header-top::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 30%;
  background: var(--theme-color);
  z-index: -1;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-contact ul li{
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  padding-right: 20px;
}

.header-top-contact ul li:last-child{
  border: none;
  padding-right: 0;
}

.header-top-contact ul li a {
  color: #000;
  font-weight: 400;
}

.header-top-contact ul li a i{
  color: var(--theme-color2);
  margin-right: 5px;
}

.header-top-social span{
  color: var(--color-white);
  font-weight: 500;
}

.header-top-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: var(--color-white);
  font-size: 16px;
  background: transparent;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.header-top-social a:hover {
  color: var(--theme-color2);
}
.gradient-text {
  background: linear-gradient(135deg, #2d3eeb, #a32cc4); /* Blue to Purple */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}

@media all and (max-width: 1199px) {
  .header-top-contact ul{
    gap: 10px;
  }

  .header-top-social a{
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}



/*====================
12. Navbar css
======================*/

.navbar {
  background: var(--theme-color);
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.custom-nav{
  background: var(--color-white);
  position: relative;
}

.navbar.fixed-top {
  background: var(--color-white) !important;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 215px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 30px 0 30px 0;
    font-size: 17px;
    font-weight: 600;
    color:  var(--color-dark);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0px;
    border-top: 4px solid var(--theme-color2);
    background: var(--theme-color);
    width: 220px;
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-white-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 25px;
    font-weight: 500;
    color:  var(--color-white);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color2);
    padding-left: 32px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 8px;
    color: var(--theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #2e3795;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: flex-end;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color:  var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }

  .nav-right .cart-btn span{
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }

}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }
  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }

  .search-area.open{
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color:  var(--color-dark);
    font-weight: 500;
  }

  .navbar .dropdown-menu {
    border-radius: 0px;
  }

  .nav-right {
    display: none;
  }

}


/*============================
13. Mega menu
==============================*/

@media (min-width: 992px){
  .nav-item.mega-menu {
    position: static;
  }
  
  .navbar .nav-item.mega-menu .dropdown-menu{
    width: 98%;
    left: 12px;
  } 

  .mega-menu .mega-content{
    padding: 30px;
  }

  .mega-menu .mega-content h5{
    color: var(--theme-color2);
    font-size: 22px;
    margin-bottom: 20px;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item{
    padding-left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before{
    left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover{
    padding-left: 15px;
  }

  .menu-about-logo{
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .menu-about-logo img{
    width: 180px;
  }

  .menu-about p{
    color: var(--color-white);
  }
}


@media (max-width: 991px){
  .menu-about-logo{
    display: none;
  }

  .mega-menu .mega-content h5{
    margin: 15px 0;
  }
}



/*============================
14. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}
/*====================
16. Main section css 
======================*/

.main {
  margin-top: 0rem;
}



/*====================
17. Hero css 
======================*/
.hero-section {
  position: relative;background:var(--theme-color:);
}

.hero-single {
  padding-top: 50px;
  padding-bottom: 90px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: #e6e8fd;
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;margin-top:-35%
}

.hero-single .hero-content .hero-title {
  color: #000;
  font-size: 52px;
  font-weight: 800;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color2);
}

.hero-single .hero-content .hero-sub-title {
  display: block;
  color:#76288e;
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-single .hero-img::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--theme-color);
  right: 100px;
  bottom: 0px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.hero-single .hero-img{
  position: absolute;
  right: 100px;
  bottom: 120px;
  width: 50%;
  z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 30px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

    .hero-single .hero-content .hero-title {
        font-size: 32px;
        text-align: center;
    }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before{
    width: 250px;
    height: 250px;
  }

}

@media all and (max-width: 767px) {

      .hero-single .hero-content .hero-sub-title {
        font-size: 16px;
        text-align: center;
    }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }

}
.banner-box{background:url(../img/bg.png);background-repeat:no-repeat;padding:30px 30px 0 80px;position:absolute;bottom:60px;left:0;}
.banner-box  .box-conatiner{position:relative;}
.banner-box .box-conatiner .txt01{padding-top:20px;font-size:26px;line-height:36px;font-weight:400;color:#fff;margin-bottom:10px;}
.banner-box  .box-conatiner .view-btn{font-size:16px;font-weight:400;background:#fff;color:#2e3795;padding:10px 20px;font-weight:600;border-radius:40px;margin:10px 0 40px 0;}
.banner-box img{position:absolute;right:0;bottom:0px;}
/*===================
18. Play btn
=====================*/

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
.position-relative {position: relative !important;z-index:1;}
.center-element {position: absolute;top: 50%;transform: translateY(-50%);}
.text-left{text-align:left!important;}
.text-center{text-align:center!important;}
.text-right{text-align:right!important;}
section{position:relative;padding:50px 0;}
.section-title {
    text-align: center;
    position: relative;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    position: relative;
    color: #14176c;
}
.section-title h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    position: relative;border-radius:50px;left:0;right:0;
    color: #2e3795;background:#e8e8ff;border:1px solid #2e3795;padding:8px 20px;
}
.featured{padding:10px 0;}
.featured img {
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  max-height: 300px;
  object-fit: cover;width: 100%;
}
.featured .pxl-post--featured {
  margin-right: 30px;
}
.featured .box {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  background-color: #e6e8fd;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  padding: 34px;
  margin-left: 30px;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box:hover {
  background-color:#2e3795;
}
.featured .box .pxl-post--header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
}
.featured .box .pxl-post--header .pxl-post--icon {
  width: 68px;
  height: 68px;
  -webkit-border-radius: 68px;
  -khtml-border-radius: 68px;
  -moz-border-radius: 68px;
  -ms-border-radius: 68px;
  -o-border-radius: 68px;
  border-radius: 68px;
  background: linear-gradient(135deg, #2d3eeb, #a32cc4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box .pxl-post--header .pxl-post--icon i {
  color: #fff;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box .pxl-post--header .pxl-post--title {
  flex: 1;
  color: #7f268e;
  font-family: "DM Sans", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.41;
  margin-bottom: 0;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box:hover .pxl-post--header .pxl-post--title{color:#fff}
.featured .box .pxl-post--description {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
  margin-bottom: 7px;
}
.featured .box:hover .pxl-post--description{color:#fff;}
.featured .box .pxl-post--footer a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.featured .box .pxl-post--divider {
  width: 100%;
  height: 1px;
  background-color: #9cb9ba;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box:hover .pxl-post--divider {
  width: 0;
}
.featured .box .pxl-post--readmore {
  flex: 1;
  color: #333695;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box .pxl-post--readmore span {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  text-wrap: nowrap;
}
.featured .box:hover  .pxl-post--readmore span{color:#fff;}
.featured .box .pxl-post--readmore i {
  flex: 1;
  font-size: 30px;
  color: #333695;
  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.featured .box:hover .pxl-post--readmore i{color:#fff;}
.featured .box:hover .pxl-post--footer a {
    display: flex;
    align-items: center;
    gap: 0;
}
.featured .box:hover .pxl-post--readmore span {
  flex: none;
}
.challenges .divider {
  display: flex;width: 100%;
}
.challenges p{font-size:16px;line-height:32px;color:#333;margin-bottom:20px;font-weight:500;}
.challenges .divider-separator {
  width: 100%; border-block-start: 1px solid #a79cba;
}
.challenges ul{margin:0;padding:10px 0;}
.challenges ul li{font-size:16px;line-height:34px;color:#333;margin:14px 0;font-weight:500;}
.challenges ul li::before{background-color: #ddd7ed;
  width: 24px;font-family:"Font Awesome 6 Sharp";content:"\f00c";padding:4px 6px;border-radius:100%;
  height: 24px;margin: 0px 14px 0px 0px;color:#2e3795;
  font-size: 14px;}
  .pxl-button {
  color: #fff;
  background: #363594;
  font-family: "DM Sans", Sans-serif;
  font-size: 15px;
  font-weight:600;border-radius:40px;margin:20px 0;
  padding:10px 30px;
}
  .pxl-button:hover {
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);background: #83268d;color:#fff;
}
.about-phone{
  display: flex;
  align-items: center;
  gap: 12px;margin:20px 0;
}

.about-phone .icon{
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #a32cc4;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
}

.about-phone .number{
  line-height: 1;
}

.about-phone .number span{
  color: #000;
  font-weight: 500;
}

.about-phone .number h6{
  font-size: 20px;
  margin-top: 8px;
}

.about-phone .number h6 a{
  color: #000;
}
.challenges img{max-width:102%;}
.negtive-top{margin:-170px 0 30px -20px;}
.center-element-challenge {position: absolute;top: 20%;transform: translateY(-20%);}
.choose-us{padding:50px 0;position:relative;background:#e6e8fd;}
.choose-us p{padding:20px 0;margin:0 auto;font-size:16px;line-height:30px;color:#000;text-align:center;}
.choose-icon-box1 {
    background: #fff;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 56px 54.08px 65px 55px;
    border-bottom: 5px solid #d5c7e0;
    text-align: center;margin-bottom:12px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.choose-icon-box1 .choose-item--icon {
    width: 96px;
    height: 96px;
    border-radius: 96px;
    background-color: #ececfb;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 46px;
    color: #2e3795;
    margin-bottom: 26px
}

.choose-icon-box1 .choose-item--icon i {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.choose-icon-box1 .choose-item--title {
    font-size: 22px;
    margin-bottom: 17px
}

.choose-icon-box1 .choose-item--description {
    color: #4b535d;
    font-family: public sans, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.667
}

.choose-icon-box1:hover {
    background-color: #d0d4f9;
    border-color: #d5c7e0
}

.choose-icon-box1:hover .choose-item--icon i {
    -webkit-transform: rotateY(360deg);
    -khtml-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg)
}
.big-counter1.style-1 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative
}

.big-counter1.style-1 .big-counter--icon {
    width: 85px;
    height: 85px;
    background-color: #d7d8ed;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    color: #2e3795;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%)
}

.big-counter1.style-1 .big-counter--holder {
    border: 1px solid #cbc6e0;
    border-radius: 15px;
    padding: 30px 62px 44px 70px;
    margin-left: 42px;
    min-width: 380px;
    width: 100%
}

@media screen and (max-width:1280px) {
    .big-counter1.style-1 .big-counter--holder {
        min-width: auto;
        padding: 30px 30px 44px 50px
    }
}

@media screen and (max-width:1200px) {
    .big-counter1.style-1 .big-counter--holder {
        padding: 30px 30px 44px 50px
    }
}

@media screen and (max-width:991px) {
    .big-counter1.style-1 .big-counter--holder {
        padding: 30px 76px 44px 70px
    }
}

.big-counter1.style-1 .big-counter--holder .big-counter--number {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 57px;
    line-height: 1.22;
    color: #2e3795;
}

.big-counter1.style-1 .big-counter--holder .big-counter--number .big-counter--suffix {
    font-size: 22px;
    line-height: 1.36;padding:0 10px;color:#2e3795;
}

.big-counter1.style-1 .big-counter--holder .big-counter--title {
    font-family: inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.64;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    color: #524a72;
}

.big-counter2 .big-counter--number {
    color: #2e3795;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.22;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}
.process{background: linear-gradient(135deg, #0d1588, #52096d);border-radius:20px;padding:60px 40px 40px 40px;text-align:center;}
.process .section-title {
    text-align: center;
    position: relative;
}
.process .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 40px auto;
    text-transform: none;
    position: relative;
    color: #fff;text-align:center;
}
.process .section-title h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    position: relative;border-radius:50px;left:0;right:0;margin-left:auto;margin-right:auto;
    color: #fff;background:transparent;border:1px solid rgba(255,255,255,0.5);padding:8px 20px;
}
.process .step{background:rgba(255,255,255,0.4);border-radius:50px;;padding:6px 10px;color:#fff;font-size:14px;font-weight:400;max-width:150px;margin:20px auto;}
.process h3{font-size:24px;font-weight:600;color:#fff;text-align:center;line-height:34px;margin:10px auto;}
.process .divider-1 {border:1px solid #FFFFFF29;margin:10px auto;}
.process  p{font-size:16px;font-weight:400;color:#fff;text-align:center;line-height:32px;margin:10px auto 20px auto;}
.faq  p{font-size:16px;font-weight:400;color:#333;text-align:left;line-height:32px;margin:10px auto 20px auto;}
.faq .media{position:relative;}
.faq .media img{border-radius:20px;max-width:100%;}
 .faq .media img.subpic{position:absolute;left:20px;bottom:-60px;}
.faq .accordion-button:not(.collapsed){background:#2e3795;color:#fff;} 
.faq .accordion-item { margin-bottom: 20px;  border: 0;}
.faq .accordion-button:not(.collapsed)::after{padding:14px;font-size:18px;font-weight:600;color:#fff}
.faq .accordion-body { border-bottom: 1px solid #a4a5b8;border-right: 1px solid #a4a5b8;     border-left: 1px solid #a4a5b8; border-top:0;border-radius: 0 0 20px 20px;}
.faq button.accordion-button.collapsed{background:#d7dfed;border-radius: 50px;}
.accordion-item:first-of-type>.accordion-header .accordion-button{border-radius: 50px;}
.faq .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{border-radius: 50px;}
.faq .accordion-button::after {
    content: '+'; /* Default icon */
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #2e3795; /* Blue background */
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

/* When expanded: show minus sign */
.faq .accordion-button:not(.collapsed)::after {
    content: '−';
    background-color: #2e3795;
    color: #fff;
}
.faq .accordion-button::after {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.faq .accordion-button::after {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.testimonial-item{background:#f0f0f7;border-radius: 20px;
  border-bottom: 5px solid #d7c7e0;
  position: relative;
  padding: 55px 48px 46px 41px;}
  .testimonial-rate{color: #ffcd4c;
  font-size: 18px;}
  .testimonial-rate span{color:#2e3795;font-weight:600;}
.testimonial-quote  {font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
  padding-bottom: 26px;
  border-bottom: 1px solid #aca1ba;}
.testimonial-content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;padding-top: 34px;
}
  .testimonial-author-img{width: 57px;
  height: 57px;margin-right: 14px;
  object-fit: cover;}
  .testimonial-item--quote {
  position: absolute;
  top: -35px;
  right: 15px;
  color: #ded8e6;
 font-family: "Public Sans", sans-serif;
  font-size: 242px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.banner-section {
  background-image: url('../img/banner-1.png'); /* optional network background pattern */
  background-size: cover;
  background-position: center;
  border-radius: 0;
  color: #ffffff;
}

.handshake-img {
    height: 500px;
    position: absolute;
    left: -20px;
    bottom: 50px;
}

.banner-content {
 position:relative;
}

.highlight-text {
  color: #ffffff;font-size:42px;line-height:54px;font-weight:600;
}
.banner-content p{font-size:16px;line-height:32px;color:#fff;font-weight:400;max-width:500px;margin:0;}
.support-phone{
  display: flex;
  align-items: center;
  gap: 12px;margin:20px 0;
}

.support-phone .icon{
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #a32cc4;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
}

.support-phone .number{
  line-height: 1;
}

.support-phone .number span{
  color: #fff;
  font-weight: 500;font-size: 20px;
}
.support-phone .number span a{color:#fff;}
.blog{padding:0 0 40px 0;}
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.date-tag {
  bottom: -20px;
  left: 20px;
  background: #d7dbed;
  color: #2e3795;
  padding: 5px 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.2;
  width: 50px;
}

.date-day {
  font-size: 18px;
  display: block;
}

.date-month {
  font-size: 12px;
  display: block;
}

.card-title {
  font-size: 1.1rem;
  color: #2e3795;
  font-weight: 600;
  margin-top: 20px;
}

.card-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}
.pxl-post--button {
    cursor: pointer;
    position: relative;
    z-index: 10
}

.pxl-post--button a {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    color: #000;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75
}

.pxl-post--button a span {
    padding-left: 45px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.pxl-post--button a i {
    font-size: 36px;
    line-height: 1;
    position: absolute;
    left: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.pxl-post--button a:hover {
    color: #2e3795
}

.pxl-post--button a:hover span {
    padding-left: 0
}
.pxl-post--button a:hover i {
    left: calc(100% + 9px)
}

.card-body:hover .pxl-post--button a {
    background-color: transparent;color:#2e3795;
    animation: pxl-grow-width .3s linear forwards
}

.card-body:hover .pxl-post--button a span {
    color: #2e3795;
    transform: translateX(0)
}

.card-body:hover .pxl-post--button a .pxl-post--arrow {
    background-color: #2e3795;
}

.card-body:hover .pxl-post--button a .pxl-post--arrow i {
    color: #83268d
}
.blog-carousel .owl-dots {display:none;}
/*====================
70. Footer css 
======================*/

.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

.footer-shape{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper{
  padding: 25px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color2);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color2);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--theme-color2);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color2);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color2);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: var(--color-white);
  color: var(--theme-color2);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color2);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px 10px 10px 0;
  background: var(--theme-color2);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--theme-color2);
}

.subscribe-form .theme-btn::before{
  background: var(--color-white);
}

.subscribe-form .theme-btn:hover::after{
  border-color: var(--theme-color2);
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before{
    width: 40%;
  }
}
@media (min-width:100px) and (max-width:767px){
.hero-single .hero-content {
    height: 100%;
    margin-top: 30px;
}
    .hero-single .hero-content .hero-sub-title {
        font-size: 16px;
        text-align: center;
    }
	    .hero-single .hero-content .hero-title {
        font-size: 32px;
        text-align: center;
    }
	.banner-box .box-conatiner .txt01 {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.banner-box {
    background: url(../img/bg.png);
    background-repeat: no-repeat;
    padding: 30px 40px;
    position: absolute;
    bottom: 0;
    left: 0;text-align:center;
}
.section-title h5 {font-size: 16px;}
.section-title h2 { font-size: 30px;line-height: 40px;}
.featured .box .pxl-post--readmore span {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
    text-wrap: nowrap;
}
.featured .box .pxl-post--description {
    color: #333;
font-size: 13px;}
.featured .box .pxl-post--header .pxl-post--title {font-size: 18px;}
.featured .box .pxl-post--readmore i {font-size: 20px;}

}


