* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Apple Chancery';
  src: url('/assets/front family/Apple Chancery.ttf') format('truetype');
}

body {
  font-family: 'Josefin Sans', sans-serif;
  /* font-family: 'Poppins', sans-serif; */
  color: #685f78;
  transition: background 1s;
}

.dark_logo {
  display:none;
}
.dark-mode .dark_logo{
  display:block;
}
.dark-mode .logo{
  display:none;
}

.dark-mode .dt-p-r{
  color:var(--color-primary) !important;
}
.bg-background {
  /* background: var(--color-background); */
  position: relative;
  overflow: hidden;
}

.bg-background::before {
  background: var(--color-primary);
  background: linear-gradient(180deg, #fff, rgb(var(--primary-rgba), 0.5));
  content: "";
  /* -webkit-clip-path: polygon(0 100px, 100% 30px, 100% 100%, 0 100%);
  clip-path: polygon(0 100px, 100% 0px, 100% 100%, 0 100%); */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}

.dark-mode .bg-background::before{
  background:linear-gradient(180deg, #000, rgb(var(--secondary-rgba), 0.5));
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333d46;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Apple Chancery", cursive;
  overflow-wrap: break-word;
}
span {
  font-weight: 800;
}

.dark-mode span {
  /* color:black !important; */
}

.dark-mode .text-secondary {
  color: #fff !important;
}
@media screen and (max-width:400px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 28px;
  }
}

p {
  line-height: 1.8;
  font-size: 19px;
  font-weight: 900;
}

hr {
  background-color: var(--color-secondary);
}

a.text-primary:hover{
  color: inherit !important;
}
/* nav bar  */
.headers {
  /* position: fixed; */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.homeheads .bx-moon,
.heads .bx-moon {
  color: #fff !important;
}
.heads {
  background-color: var(--color-primary);
}
.sticky .bx-moon {
  color: var(--color-primary) !important;
}
@media screen and (max-width: 746px) { 
.heads {
  background-color: initial;
}
.bx-moon:before {
  color:var(--color-primary);
}
}
.homeheads {
  position: fixed !important;
}
.dark-mode .heads{
  background-color: initial;
}
.lo{
  display: none;
}
.sticky .lo{
  display: block;
}
.headers .profile_lo{
  display: none;
    background: #fff;
    padding: 5px;
    position: absolute;
    top: 52px;
    width: 186px;
    border-radius: 5px;
    text-align: center;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.navbar-toggler {
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navs {
  margin-top: 10px;
}

.navs ul li {
  list-style: none;
  padding: 0px 10px;
}

.head-nav {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 110px;
}

.navs .nav-link {
  color: white !important;
}

.sticky .nav .nav-link {
  color: #000 !important;
}
.sec-head li a {
  font-family: "Apple Chancery", cursive;
  font-size: 22px;
  font-weight: bolder;
}

.navs .nav-links,
.navs .nav-links-1 {
  color: white !important;
  cursor: pointer !important;
}
.navtop {
  position: relative;
}
.navtop::before{
  content: "";
  background-image: url('https://img.freepik.com/free-vector/modern-technology-background_1035-7592.jpg?w=740&t=st=1703159480~exp=1703160080~hmac=f0b549f658007ddab3484bffcbf28a86f70247e742c88bac4496e7b7dc96ea31');
  opacity: 0.3;
}
@media (max-width: 768px) {
  .navs.show {
    display: block !important;
    position: absolute;
    top: -10px;
    background: rgb(0, 52, 104, 0.9);
    color: white;
    width: 295px;
    left: 0;
    align-items: center;
    height: 100vh;
    padding-top: 95px;
    z-index: 1;
  }
  .navtop{
    display: none;
  }
  .lo {
    display: block;
  }
  .close {
    top: 40px;
    position: absolute;
    right: 10px;
  }
}

.nav_dropdown {
  min-width: 250px;
  margin: 0;
  padding: 0;
  display: none !important;
  position: absolute;
  z-index: 98;
  white-space: nowrap;
  border: none;
  padding: 15px;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 42px 0px rgba(32, 32, 32, 0.15);
  -webkit-box-shadow: 0px 0px 42px 0px rgba(32, 32, 32, 0.15);
}

ul li:hover .nav_dropdown {
  display: block !important;
}

ul li .sub-link,
ul li .sub-links {
  position: relative;
  z-index: 1;
}

ul li .sub-link::before,
ul li .sub-links::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 25px;
  height: 2px;
  width: 15px;
  background: var(--color-secondary);
  transition: .3s;
  opacity: 0;
  visibility: hidden
}

ul li .sub-link:hover,
ul li .sub-links:hover {
  transform: translateX(10px);
}

ul li .sub-link:hover::before,
ul li .sub-links:hover::before {
  opacity: 1;
  visibility: visible
}

/* Large screen  */
@media screen and (min-width:1200px) {
  #header .navbar-toggler {
    display: none;
    fill: #fff;
  }

  #header .bntts {
    display: flex;
    align-items: center;
    gap: 5px !important;
  }

  #header .navs .na {
    display: none !important;
  }

  .image {
    max-width: 360px !important;
  }
}

/* extra large screen  */
@media screen and (max-width:1200px) {
  #header .navs {
    display: none;
  }

  #header .bntts {
    display: none !important;
  }

  #header .navbar-toggler {
    display: block;
    fill: #fff;
  }
  .sticky .navbar-toggler{
    fill: #000 !important;
  }

  #header .dt-p-w {
    fill: #000 !important;
  }

  #header .navs.show {
    display: block;
    position: absolute;
    top: -10px;
    background: var(--color-secondary);
    color: white;
    width: 100%;
    left: 0;
    align-items: center;
    height: 100vh;
    padding-top: 25px;
    z-index: 1;
    overflow-y: auto;
  }

  #header .navs.show .nav-link{
    color: #fff !important;
  }
  #header .navs.show .nav-links{
    color: #fff !important;
  }
  #header .navs.show ul {
    display: flex;
    flex-direction: column !important;
  }

  #header ul li .sub-link {
    color: black;
  }

  #header .navs .na {
    display: blocks;
  }

  .lottie_img {
    max-width: 70%;
  }
  #preloader .lottie_img{
    width: 65% !important;
  }
}

.swiper-slide {
  background: initial !important;
}

.sec-head li a {
  color: var(--color-secondary) !important;
}

/* .sec-head li .nav-links {
  color: var(--color-secondary) !important;
} */

.sticky .sec-head li .nav-links {
  color: var(--color-secondary) !important;
}

.dark-mode .sticky .sec-head li .nav-links,
.dark-mode .sticky .sec-head li .nav-links-1 {
  color: #fff !important;
}
/* end nav */

/* courses  */
.course-category {
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 1;
}

.course-category-item {
  padding: 4px 12px;
  border-radius: 5px;
}

.course_images {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.course_images:hover .c_img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}

.shape {
  border-style: solid;
  border-width: 0 90px 50px 0;
  float: right;
  height: 0px;
  width: 0px;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.offer-success {
  border-color: #5cb85c;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.offer-success .shape {
  border-color: transparent #5cb85c transparent transparent;
  border-color: rgba(255, 255, 255, 0) #5cb85c rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.shape-text {
  color: #fff;
  font-size: 18px;
  font-weight: bolder;
  position: relative;
  right: -50px;
  top: -5px;
  white-space: nowrap;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.course_images .c_img {
  width: 100%;
  /* border-radius: 15px; */
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(.19, 1, .22, 1) 0ms;
}


.seller-card {
  transition: all 0.5s ease;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
}


.card {
  border-radius: 0.5rem;
  box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    -webkit-box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    
}



.badge {
  background: var(--color-secondary);
  padding: 5px;
  font-size: 1rem;
}

.text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* @media (min-width: 1200px){
.container {
max-width: 1456px !important;
}
} */
#scroll-company,
#scroll-skill {
  max-height: 770px;
  overflow: auto;
  padding-top: 10px;
}

.bg-light {
  background: var(--color-background) !important;
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: repeat(2, 1fr); */
}

@media screen and (max-width:660px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .list_view {
    display: flex !important;
    flex-direction: column;
  }

  .description {
    width: auto !important;
  }

  .sidebar-social{
    display: none;
  }
}

@media screen and (width:768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .description {
    width: auto !important;
  }
}

@media (max-width:1250px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .list_view {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.dark-mode .description {
  color: #fff;
}

.list-container {
  display: flex;
  flex-direction: column;
}

#toggle-list.active,
#toggle-grid.active {
  background-color: var(--color-primary);
  color: white !important;
  border-color: var(--color-primary) !important;
}

.list_view {
  display: grid;
  grid-template-columns: 250px auto;
  /* grid-template-columns: 250px 36rem; */
  /* justify-content: space-between; */
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, .125);
  background: #ffff;
  border-radius: 0.25rem;
  padding: 10px;
  position: relative;
  width: 100%;
}

/* .section {
  background: var(--color-background);
} */

.courses-page {
  float: right;
}

.courses-page .pagination .page-link {
  border-radius: 20%;
  margin-left: 5px;
  color: var(--color-secondary) !important;
}

.courses-page .pagination .page-item.active .page-link {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

/* end courses  */
.btn:focus-visible {
  outline: none !important;
  box-shadow:none !important
}

/* bootstrap color */
.btn-primary {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn-primary:focus-visible{
  border-color: var(--color-primary) !important;
  outline: none;
  background-color: var(--color-primary) !important;
}
.btn:focus {
  box-shadow: none !important;
}
.btn-secondary {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.bg_image {
  position: relative;
  background: url('/assets/b2c_img/');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}


/* buttons */
.default-btn {
  display: inline-flex !important;
  /* background: var(--color-secondary); */
  background:var(--color-primary);;
  color: #ffff;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 5px;
}
/* .dark-mode .default-btn {
  display: inline-flex !important;
  background: red !important;
  color: #ffff;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 5px;
} */
.btn:active{
  color: initial;
  border-color: var(--color-secondary) !important;
  background-color: var(--color-secondary) !important;
}

.dark-mode .btn:active{
  color: white;
}
.dark-mode .default-btn:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 550px;
    height: 550px;
    margin: auto;
    background-color: var(--color-secondary);
    border-radius: 50%;
    z-index: -1;
    transform-origin: top center;
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: transform 0.9s;
    border-color: var(--color-primary);
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background-color: var(--color-secondary);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(.4);
  transition: transform 0.9s;
  border-color: var(--color-secondary);
}

.default-btn:hover {
  color: white;
}

.default-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center
}

.delete-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(255, 69, 69);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: .3s;
  overflow: hidden;
  position: relative;
}

a .svgIcon {
  width: 12px;
  transition-duration: .3s;
}

.svgIcon path {
  fill: white;
}



.rounded-full {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50% !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--color-secondary);
}

.rounded-full:hover {
  background-color: var(--color-primary);
}

/* logout btn  */
.logout-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--color-secondary);
}

/* plus sign */
.logout-btn .sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-btn .sign svg {
  width: 17px;
}

.logout-btn .sign svg path {
  fill: white;
}

.logout-btn:hover {
  background-color: var(--color-primary);
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* end button */
/* .btn:hover {
  color: white;
  background-color: var(--color-hover);
  border-color: var(--color-hover);

} */
.btn-primary:hover{
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.dark-mode .btn-primary:hover{
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary);
}
.btn-secondary:hover{
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn:hover::before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.btn-outline-primary {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: white !important;
}

.btn-outline-secondary {
  color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}

.btn-outline-secondary:hover {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: white !important;
}

/* end bootstrap */

/* background img for heading*/
.bg-head {
  background-image: url("/assets/b2c_img/bg-1.png");
  background-position: center;
  background-size: cover;
}

.bg-back {
  background-image: url("https://www.shutterstock.com/image-illustration/abstract-watercolor-stain-handmade-isolated-260nw-1251779560.jpg");
  background-repeat: no-repeat;
  background-position: 1px -8px;
  background-size: 175px 54px;
}

/* end background img for heading*/
.market-pad {
  margin-top: 100px;
}

.login-sec {
  /* margin:39px; */
  overflow: hidden;
  /* background: var(--color-background); */
}

/* forms */
/* .form-control {
  border-color: var(--color-primary);
} */

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.form-check-input {
  float: left;
  width: 17px;
  height: 17px;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, .25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-group {
  text-align: initial;
}

/* end forms */

/* alert message */
/* .alert-success,.alert-danger{
  position: absolute;
  top: 117px
} */
.alert {
  width: 360px;
  text-align: center;
}

/* end alert message */


section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

.page-banner {
  position: relative;
  display: block;
  padding: 206px 0px;
  z-index: 11;
}

/* .page-title {
  position: relative;
  padding: 100px 0;
}
.page-title::before{
  content: "";
  background: url('/assets/b2c_img/banner_img3.png');
   position: absolute;
    inset: 0;
   width: 100%;
    height: 100%;
    background-size: cover;
    background-color: var(--color-secondary);
    background-blend-mode: luminosity;
    z-index: 1;
  opacity: 0.60;
} */
.page-title {
  /* position: relative; */
  /* background-image: url('/assets/b2c_img/_CLD5150.jpg'); */
  background-size:cover !important;
  padding: 206px 0px;
}

.page-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: var(--color-secondary); */
  background-blend-mode: luminosity;
  z-index: 1;
}

/* @media screen and (min-width:920px) {
  .page-title {
    background-position: top !important;
  }
}

@media screen and (max-width:920px) {
  .page-title {
    background-position: center;
  }
} */

.page-title::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:#071422;
  /* background: rgba(var( --secondary-rgba),0.4); */
  opacity: 0.6;
  content: "";
  z-index: -1;
}

.banner-title {
  position: relative;
  z-index: 10;
}

.banner-title::before {
  position: absolute;
  content: "";
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 135px;
  height: 15px;
  background-image: url('/assets/b2c_img/tick_mark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: initial !important;
  color: #ffff;
  
}

.breadcrumb-item a {
  color: #ffff;
}

.breadcrumb-item a:hover {
  color: var(--color-primary) !important;
}

/* 
.breadcrumbs {
  padding: 15px 0;
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
} */
.breadcrumb-item {
  font-weight: bold;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-primary);
  content: "";
  width: 15px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50px;
  margin: 0 15px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  float: none;
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* end breadcrumbs */

/* Scroll top button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--secondary-rgba));
  color: var(--color-white);
}

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

/* end Scroll top button */

/* Disable aos animation delay on mobile devices */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* header */
.header {
  position: fixed;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  top: 0;
  width: 100%;
  background-color: white;
}

.sticky {
  background: url("/assets/hero-bg.png") center center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
  transition: all 0.3s ease;
}

.sticky .navs .nav-link {
  /* color: black; */
  color:var(--color-secondary) !important; 
}

.sticky .navs .nav-links,
.sticky .navs .nav-links-1{
  /* color: black !important; */
  color:var(--color-secondary) !important;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.navb .nav-link:hover,
.navb .nav-links:hover{
  color:#fff !important;
}
.sticky .navb .nav-link:hover,
.sticky .navb .nav-links:hover{
  color:var(--color-primary) !important;
}
.navs a,
.navs a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  /* font-family: var(--font-secondary); */
  font-size: 22px;
  font-weight: bolder;
  font-family: "Apple Chancery", cursive;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.scrollto{
  color: #fff;
}
.nav-submenu li a {
  display: flex;
  justify-content: flex-start !important;
}
.navs a i,
.navs a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navs>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffff;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.na>ul>li>a::before {
  background-color: rgba(var(--primary-rgba));
}
.sticky .navs>ul>li>a:before {
  background-color: var(--color-primary);
}
.sticky .sec-head .active {
  color: var(--color-primary) !important;
}
.navs a:hover:before,
.navs li:hover>a:before,
.navs .active:before {
  visibility: visible;
  transform: scaleX(0.7);
}

.navb a:hover {
  color:#fff !important ;
}
.navb li:hover {
  color: #fff !important;
}
.navs a:hover,
/* .navs .active, */
.navs .active:focus,
.sticky .navs .nav-links:hover,
.sticky .navs .nav-links-1:hover,
.na li:hover>a {
  color: var(--color-tertiary) !important;
}

.dark-mode .navs .active,
.dark-mode .navs .active:focus {
  color: #fff !important;
}

/* end header */

/* Carousel */
#hero .img-fluid {
  width: 500px;
  height: 500px;
}

/* end Carousel */

/* services */
.service .heading {
  text-align: center;
}

.service h6 {
  color: var(--color-primary);
}

.service .line {
  border-bottom: 2px solid var(--color-primary);
  width: 100px;
  height: 4px;
  margin: auto;

}

/* End services */

/* footer */
.new_footer_area {
  background: #fbfbfd;
}

.new_footer_top {
  padding: 20px 0px 270px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0px;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn_get:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}


.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: var(--color-primary);
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ti-facebook:before {
  content: "\e741";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: var(--color-primary);
}

.footer_bottom .f_social_icon a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.footer_bottom .f_social_icon a+a {
  margin-left: 4px;
}

.f-title {
  margin-bottom: 30px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}


.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("/assets/knewton_front/css/footer-bg-1.svg") no-repeat scroll center 0;
  width: 100%;
  height: 300px;
}


.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://static.wixstatic.com/media/4a2d42_e059953462544ca2b64367be7d59279a~mv2.gif") no-repeat center center;
  width: 88px;
  height: 120px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}


@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

/* end footer */

/* animation bage */

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.badges {
  position: absolute;
  top: 54px;
  right: 0px;
  margin: auto;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: 100%;
  color: #FFF;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  /* font-family: "Open Sans", sans-serif; */
  -webkit-animation: 3s ease-in-out 0s normal none infinite running swing;
  -moz-animation: 3s ease-in-out 0s normal none infinite running swing;
  -o-animation: 3s ease-in-out 0s normal none infinite running swing;
  animation: 3s ease-in-out 0s normal none infinite running swing;

  -webkit-transform-origin: 100px -71px;
  -moz-transform-origin: 100px -71px;
  -o-transform-origin: 100px -71px;
  transform-origin: 100px -71px;

}

.badges:before {
  content: '';
  position: absolute;
  top: 46px;
  left: 40px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  -webkit-box-shadow: 0px -2px 0px -2px #fff, 0px -100px var(--color-secondary), 0px -98px var(--color-secondary), 39px -94px var(--color-secondary), 56px -85px var(--color-secondary), 71px -72px var(--color-secondary),
    83px -57px var(--color-secondary), 93px -40px var(--color-secondary), 98px -20px var(--color-secondary), 100px 0px var(--color-secondary),

    -20px -98px var(--color-secondary), -39px -94px var(--color-secondary), -71px -72px var(--color-secondary),
    -56px -85px var(--color-secondary), -83px -57px var(--color-secondary), -93px -40px var(--color-secondary), -98px -20px var(--color-secondary), -100px 0px var(--color-secondary),

    0px 100px var(--color-secondary), -20px 98px var(--color-secondary), -39px 94px var(--color-secondary), -56px 85px var(--color-secondary),
    -71px 72px var(--color-secondary), -83px 57px var(--color-secondary), -93px -40px var(--color-secondary), -98px 20px var(--color-secondary), -93px 40px var(--color-secondary),

    20px 98px var(--color-secondary), 39px 94px var(--color-secondary), 56px 85px var(--color-secondary),
    71px 72px var(--color-secondary), 83px 57px var(--color-secondary), 93px 40px var(--color-secondary), 98px 20px var(--color-secondary);


  -moz-box-shadow: 0px -82px 0px -2px #fff, 0px -100px var(--color-secondary), 20px -98px var(--color-secondary), 39px -94px var(--color-secondary), 56px -85px var(--color-secondary), 71px -72px var(--color-secondary),
    83px -57px var(--color-secondary), 93px -40px var(--color-secondary), 98px -20px var(--color-secondary), 100px 0px var(--color-secondary),

    -20px -98px var(--color-secondary), -39px -94px var(--color-secondary), -71px -72px var(--color-secondary),
    -56px -85px var(--color-secondary), -83px -57px var(--color-secondary), -93px -40px var(--color-secondary), -98px -20px var(--color-secondary), -100px 0px var(--color-secondary),

    0px 100px var(--color-secondary), -20px 98px var(--color-secondary), -39px 94px var(--color-secondary), -56px 85px var(--color-secondary),
    -71px 72px var(--color-secondary), -83px 57px var(--color-secondary), -93px -40px var(--color-secondary), -98px 20px var(--color-secondary), -93px 40px var(--color-secondary),

    20px 98px var(--color-secondary), 39px 94px var(--color-secondary), 56px 85px var(--color-secondary),
    71px 72px var(--color-secondary), 83px 57px var(--color-secondary), 93px 40px var(--color-secondary), 98px 20px var(--color-secondary);


  -o-box-shadow: 0px -82px 0px -2px #fff, 0px -100px var(--color-secondary), 20px -98px var(--color-secondary), 39px -94px var(--color-secondary), 56px -85px var(--color-secondary), 71px -72px var(--color-secondary),
    83px -57px var(--color-secondary), 93px -40px var(--color-secondary), 98px -20px var(--color-secondary), 100px 0px var(--color-secondary),

    -20px -98px var(--color-secondary), -39px -94px var(--color-secondary), -71px -72px var(--color-secondary),
    -56px -85px var(--color-secondary), -83px -57px var(--color-secondary), -93px -40px var(--color-secondary), -98px -20px var(--color-secondary), -100px 0px var(--color-secondary),

    0px 100px var(--color-secondary), -20px 98px var(--color-secondary), -39px 94px var(--color-secondary), -56px 85px var(--color-secondary),
    -71px 72px var(--color-secondary), -83px 57px var(--color-secondary), -93px -40px var(--color-secondary), -98px 20px var(--color-secondary), -93px 40px var(--color-secondary),

    20px 98px var(--color-secondary), 39px 94px var(--color-secondary), 56px 85px var(--color-secondary),
    71px 72px var(--color-secondary), 83px 57px var(--color-secondary), 93px 40px var(--color-secondary), 98px 20px var(--color-secondary);


  box-shadow: 0px -60px var(--color-secondary), 18px -58px var(--color-secondary), 33px -50px var(--color-secondary), 46px -38px var(--color-secondary), 52px -20px var(--color-secondary),
    -18px -56px var(--color-secondary), -45px -30px var(--color-secondary), -50px 1px var(--color-secondary), -45px 20px var(--color-secondary), -50px -15px var(--color-secondary),

    -18px 43px var(--color-secondary), -35px 35px var(--color-secondary), -34px -44px var(--color-secondary),

    48px 16px var(--color-secondary), 54px -1px var(--color-secondary),
    0px 45px var(--color-secondary), 20px 40px var(--color-secondary), 35px 33px var(--color-secondary);
}

.badges:after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50px;
  width: 2px;
  height: 50px;
  border-radius: 0%;
  background: gray;

}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(5deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(5deg);
  }
}

@-moz-keyframes swing {
  0% {
    -moz-transform: rotate(5deg);
  }

  50% {
    -moz-transform: rotate(-5deg);
  }

  100% {
    -moz-transform: rotate(5deg);
  }
}

@-o-keyframes swing {
  0% {
    -o-transform: rotate(5deg);
  }

  50% {
    -o-transform: rotate(-5deg);
  }

  100% {
    -o-transform: rotate(5deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

/* end badge */


/* animation */
.shape-1 {
  position: absolute;
  left: 2%;
  top: 18%;
  z-index: 1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}

.shape-2 {
  position: absolute;
  left: 15%;
  bottom: 15%;
  z-index: 1;
  -webkit-animation: animationFramesOne 30s infinite linear;
  animation: animationFramesOne 30s infinite linear;
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);

  }
}

.shape-3 {
  position: absolute;
  left: 38%;
  top: 12%;
  z-index: 1;
  -webkit-animation: animationFramesOne 30s infinite linear;
  animation: animationFramesOne 30s infinite linear;
}

.shape-4 {
  position: absolute;
  right: 50px;
  bottom: 100px;
  z-index: 1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}

.shape-5 {
  position: absolute;
  left: 45%;
  bottom: 12%;
  z-index: 1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}

.shape-6 {
  position: absolute;
  right: 15%;
  top: 12%;
  z-index: 1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}

.carousel-inner {
  margin-top: 80px;
}

.wrapper {
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 12ch;
  animation: typing 4s steps(12), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  /* font-family: monospace; */
  font-size: 3rem;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}


@media screen and (max-width:320px) {
  .img {
    width: 270px;
  }
}

.back-lottie {
  animation: 20s linear infinite rotate;
  opacity: 0.3;
  position: absolute;
  inset: 0;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* footer */
.form__field {
  width: 500px;
  background: #fff;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
  border: 0;
  outline: 0;
  padding: 20px 18px;
  display: flex;
}

@media screen and (max-width:400px) {
  .form__field {
    width: 173px !important;
  }
}

.forms {
  display: flex;
}

.send {
  /* font-family: inherit; */
  font-size: 15px;
  background: var(--color-secondary);
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  overflow: hidden;
  transition: all 0.2s;
}

.send span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.send svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.send:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.send:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.send:hover span {
  transform: translateX(5em);
}

.send:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* .foot {
  background-image: url('/assets/b2c_img/footer_1.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: aliceblue;
  overflow: hidden;
  position: relative;
} */
.foot{
  background-image: url('/assets/b2c_img/footbg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.dark-mode .foot {
  background-image: url('/assets/b2c_img/dark_footer.jpg');
  /* background-image: url('https://img.freepik.com/free-photo/abstract-low-poly-background-with-dark-connecting-dots-lines_1048-6020.jpg?w=740&t=st=1701755570~exp=1701756170~hmac=3258e6bad6aaab2f8581d8afa9a98617011fbd0ac746b0a928ea6a0d8bbc66ac'); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  /* background-color: initial; */
}

/* .footer_c{
  backdrop-filter: blur(50px);
  background: hsla(0, 0%, 100%, 0.15);
  padding: 5rem 0;
  width: 100vw;
  -webkit-box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.75);
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer_c::before{
  content: "";
  background: rgb(0, 0, 0,0.5);
   backdrop-filter: blur(5px);
  inset: 0;
  position: absolute;
} */

.footer_c ul li a{
  margin-left: -25px;
}
.footer_c{
  /* backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  background-color: rgba(255, 255, 255, 0.1);

}
.dark-mode .footer_c {
  backdrop-filter: none;
}
.btn-cont {
  background: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
  border: none;
}

.btn-cont a {
  color: var(--color-primary);
}

.btn-cont:hover {
  background-color: #ffff;
}


ul li .foot-link {
  color: inherit;
  line-height: 1.8;
}

ul li .foot-link:hover {
  color: var(--color-secondary);
}

/* #parent {
  height: 40px;
  white-space: nowrap;
  overflow: hidden;
  font-family: 'Source Code Pro', monospace;
  font-size: 28px;
  position: relative;
}

#border {
  border-bottom: solid 3px rgba(0, 255, 0, .75);
  position: absolute;
  right: -7px;
  width: 20px;
}


#parent {
  animation: animated-text 2s steps(20, end) 1s 1 normal both
}

#border {
  animation: animated-cursor 700ms steps(20, end) infinite;
}



@keyframes animated-text {
  from {
    width: 0;
  }

  to {
    width: 480px;
  }
}



@keyframes animated-cursor {
  from {
    border-bottom-color: rgba(0, 255, 0, .75);
  }

  to {
    border-bottom-color: transparent;
  }
} */


.title_style {
  position: relative;
  z-index: 1;
}

.title_style::before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: -25px;
  width: 200px;
  height: 17px;
  background-image: url(/assets/b2c_img/tick_mark.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/* .row {
  margin: 0 !important;
} */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* login  */
.containers {
  position: relative;
  width: 100%;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.dark-mode .containers{
  background-color: #16151f;
}
.containers svg {
  margin: auto;
}

.containers .forms-containers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.containers .signin-signup {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75%;
  width: 50%;
  transition: 1s 0.7s ease-in-out;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 5;
}

.containers form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0rem 5rem;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.containers form.sign-up-form {
  opacity: 0;
  z-index: 1;
  height: fit-content;
}

.containers form.sign-in-form {
  z-index: 2;
}

.containers .title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.dark-mode .containers .title{
  color: #fff;
}

.dark-mode .panels-containers h3{
  color: #fff !important;
}
.containers .input-field {
  max-width: 380px;
  width: 100%;
  background-color: #ebf1fa;
  margin: 5px 0;
  height: 45px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 70% 15%;
  padding: 0 0.4rem;
  position: relative;
}
/* .dark-mode .containers .input-field{
  background-color: wheat;
} */
.dark-mode .input-field svg{
  fill: #000;
}
@media screen and (max-width: 1150px){
    .containers .input-field {
    height: 40px;
  }
}
@media screen and (max-width: 1250px) {
  /* .containers .input-field {
    height: 30px;
  } */

  .containers .input-fields {
    width: 100%;
    height: 30px;
    padding: 0;
  }

  .containers .right-panel .image {
    width: 300px;
  }
}

.containers .input-fields {
  display: block;
  width: 100%;
  background-color: #ebf1fa;
  text-align: center;
  margin: 10px 0;
  border: none;
  height: 50px;
  border-radius: 50px;
  /* max-width: 380px;
  width: 100%;
  margin: 10px 0;
  height: 55px;
  border: none;
  padding: 0 5.5rem;
  border-bottom: 3px solid #ebf1fa; */
}

.containers .input-fields:fouse {
  outline: none;
}

.containers .input-field i {
  text-align: center;
  line-height: 45px;
  color: #acacac;
  transition: 0.5s;
  font-size: 1.1rem;
  margin: auto;
}

@media screen and (max-width:1200px) {
  /* .containers .input-field i{
    margin-top: -11px;
  } */
}

.containers .input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  color: #333;
}

.containers .input-fields:focus {
  outline: none;
}

.containers .input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.containers .panels-containers {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.containers .panels-containers .btn {
  width: 150px;
  background-color: var(--color-primary);
  border: none;
  outline: none;
  height: 49px;
  border-radius: 49px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width:600px) {
  .containers .panels-containers .btn {
    height:40px;
    font-size:14px;
  }
  .containers {
    overflow: hidden;
  }
}
.panels-containers .btn:hover {
  background-color: var(--color-secondary);
}

.containers:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  background-image: linear-gradient(-45deg, rgba(var(--primary-rgba), 0.4) 0%, var(--color-primary) 100%);
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: 6;
}

.containers .image {
  width: 100%;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
}

.containers .panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  gap: 60px;
  text-align: center;
  z-index: 6;
}

.containers .left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.containers .right-panel {
  pointer-events: none;
  padding: 3rem 12% 2rem 17%;
}

.containers .panel .content {
  /* color: #fff; */
  transition: transform 0.9s ease-in-out;
  transition-delay: 0.6s;
}

.containers .panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 2rem;
}

.containers .panel p {
  font-size: 1rem;
  padding: 0.7rem 0;
  color: #fff;
}

.containers .btn.transparent {
  margin: 0;
  background: none;
  border: 2px solid #fff;
  width: 130px;
  height: 41px;
  font-weight: 600;
  font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
  transform: translateX(800px);
}

/* ANIMATION */

.containers.sign-up-mode:before {
  transform: translate(100%, -50%);
  right: 52%;
}

.containers.sign-up-mode .left-panel .image,
.containers.sign-up-mode .left-panel .content {
  transform: translateX(-800px);
}

.containers.sign-up-mode .signin-signup {
  left: 25%;
  margin-top: 25px;
}

.containers.sign-up-mode form.sign-up-form {
  opacity: 1;
  z-index: 2;
}

.containers.sign-up-mode form.sign-in-form {
  opacity: 0;
  z-index: 1;
}

.containers.sign-up-mode .right-panel .image,
.containers.sign-up-mode .right-panel .content {
  transform: translateX(0%);
}

.containers.sign-up-mode .left-panel {
  pointer-events: none;
}

.containers.sign-up-mode .right-panel {
  pointer-events: all;
}

@media (max-width: 870px) {
  .containers {
    min-height: 800px;
    height: 100vh;
  }

  .containers .signin-signup {
    width: 100%;
    top: 100%;
    transform: translate(-50%, -100%);
    transition: 1s 0.8s ease-in-out;
  }

  .containers .input-field input {
    font-size: medium;
  }

  .containers .signin-signup,
  .containers.sign-up-mode .signin-signup {
    left: 50%;
    top: 90%;
  }

  .containers .panels-containers {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
  }

  .containers .panel {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 8%;
    grid-column: 1 / 2;
  }

  .containers .right-panel {
    grid-row: 3 / 4;
  }

  .containers .left-panel {
    grid-row: 1 / 2;
  }

  .containers .image {
    width: 200px;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
  }

  .containers .panel .content {
    padding-right: 15%;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.8s;
  }

  .containers .panel h3 {
    font-size: 1.2rem;
  }

  .containers .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .containers .btn.transparent {
    width: 110px;
    /* height: 40px; */
    font-size: 0.7rem;
  }

  .containers:before {
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
    left: 30%;
    bottom: 68%;
    right: initial;
    top: initial;
    transition: 2s ease-in-out;
  }

  .containers.sign-up-mode:before {
    transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }

  .containers.sign-up-mode .left-panel .image,
  .containers.sign-up-mode .left-panel .content {
    transform: translateY(-300px);
  }

  .containers.sign-up-mode .right-panel .image,
  .containers.sign-up-mode .right-panel .content {
    transform: translateY(0px);
  }

  .containers .right-panel .image,
  .containers .right-panel .content {
    transform: translateY(300px);
  }

  .containers.sign-up-mode .signin-signup {
    top: 5%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 570px) {
  .containers form {
    padding: 0 1.5rem;
  }

  .containers .input-field {
    height: 40px;
  }

  .containers .input-field input::placeholder {
    font-size: medium;
  }

  .containers .input-fields {
    height: 35px;
    padding: 0 26px;
  }

  .containers .image,
  .containers .lottie_img {
    display: none;
  }

  .containers .panel .content {
    padding: 0.5rem 1rem;
  }

  .containers {
    padding: 1.5rem;
  }

  .containers:before {
    bottom: 50%;
    left: 50%;
  }

  .containers.sign-up-mode:before {
    bottom: 35%;
    left: 50%;
  }
}

.side_ {
  position: relative;
}

.side_::after {
  position: absolute;
  content: '';
  top: -40px;
  right: -480px;
  width: 800px;
  height: 800px;
  border: 80px solid #fff;
  border-radius: 50%;
  z-index: -1;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, .27), inset 0 8px 80px rgba(0, 0, 0, .47);
  box-shadow: 0 7px 10px rgba(0, 0, 0, .27), inset 0 8px 80px rgba(0, 0, 0, .47);
}


.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--color-primary);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--color-secondary);
  opacity: .3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
}

.hover {
  background-color: var(--color-secondary);
  opacity: 0.5;
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: .5;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-primary);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--color-secondary);
}



.checkbox-custom {
  opacity: 0;
  position: absolute;
}

.checkbox-custom-label {
  position: relative;
  width: 100%;
  color: #515a6f;
}

.checkbox-custom,
.checkbox-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
  margin-left: 0;
  font-weight: 600;
}

.checkbox-custom+.checkbox-custom-label:before {
  content: '';
  background: #fff;
  border: 2px solid var(--color-secondary);
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
  background: var(--color-primary);
  border-radius: 2px;
  border: none;
}

.checkbox-custom:checked+.checkbox-custom-label:after {
  content: "✓";
  /* font-family: Fontawesome; */
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 15px;
  color: white;
  font-weight: 400;
}

lottie-player {
  width: 80%;
}

body.dark-mode {
  background-color: #16151f;
}

p.dark-mode {
  color: rgba(255, 255, 255, .6);
}

.dark-mode .sticky {
  background: rgba(0, 0, 0, .7);
}

.dark-mode .sticky .nav-link {
  color: #ffff !important;
}

.dark-mode .sticky .nav-links,
.dark-mode .sticky .nav-links-1  {
  color: #ffff !important;
}

.dark-mode .footer_c p,
.dark-mode .footer_c h5,
.dark-mode .footer_c h6,
.dark-mode .footer_c a {
  color: #ffff !important;
}

.dark-mode .social-link .fo-ico {
  fill: white !important;
}

.dark-mode .sec-head .nav-link {
  color: #fff !important;
}

.dark-mode .sec-head .nav-links {
  color: #fff !important;
}

.dark-mode .dt-p-w {
  color: white !important;
  fill: white !important;
}
.dark-mode .svg_icon svg {
  fill: var(--color-primary) !important;
}
/* .dt-p-w{
  fill: black;
} */
.dark-mode .dt-bg {
  background-color: #16151f !important;
}

.dark-mode .dt-bg hr {
  background: #ffff;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: var(--color-primary);
}

.dark-mode p {
  color: #ffff;
}
.dark-mode .dt-p-w ul li {
  color: #ffff;
}
.dark-mode svg {
  fill: #ffff;
}

.dark-mode .list-group-item {
  background: #2c2b3f;
  color: #ffff;
}

.dark-mode .dt-bg-w {
  background-color: white !important;
}

.dark-mode .card {
  background: #2c2b3f !important;
}

.dark-mode .dt-p-b {
  color: #16151f;
  fill: #16151f !important;
}
.dark-mode .dark_text{
  color:#000 !important;
}
.dark-mode .dt-bor-w {
  border-color: white !important;
}

.dark-mode .dt-card-bg {
  background: #2c2b3f !important;
}

/* .checkboxs {
  opacity: 0;
  position: absolute;
}

.checkboxs-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkboxs-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkboxs:checked+.checkboxs-label .ball {
  transform: translateX(24px);
} */
.darkLight{
  margin-top: -20px;
  margin-right: 30px;
}
.dark-light i{
    position: absolute;
    color: var(--color-primary);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
    color: #ffff
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

.social-link {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.8rem;
  transition: all ease 0.4s;
  cursor: pointer;
}
/* .social-link {
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  background: rgba(var(--secondary-rgba), 0.2);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.8rem;
  transition: all ease 0.4s;
  cursor: pointer;
}

.social-link:hover {
  background: var(--color-secondary);
}

.social-link:hover .fo-ico {
  fill: white;
} */


.background-color{
  position: relative;
}
.background-color::before{
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #fff, rgb(var(--primary-rgba), 0.2));
  width: 100%;
  height: 100%;
}
.dark-mode .background-color::before{
  content: "";
  position: absolute;
  background: #16151f;
  width: 100%;
  height: 100%;
}

.morecontent span {
  display: none;
  font-weight:normal;
}
.morelink {
  display: block;
  color:var(--color-primary);
  z-index: 1;
  position: relative;
}


.page-title .shape-box{
  position: absolute;
    top: 166px;
    left: 160px;
    bottom: 60px;
    width: calc(100% - 83%);
    background-color: rgb(var(--secondary-rgba),0.9);
    mix-blend-mode: soft-light;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    z-index: 1;
}

.breadcrumb-content{
  position: absolute;
  left:11rem;
  width: calc(100% - 83%);
}

@media screen and (max-width: 920px) {
  .page-title .shape-box{
    display: none;
  }
  .breadcrumb-content{
    position: absolute;
    left:25%;
    bottom: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .breadcrumb-content{
    position: absolute;
    left:17%;
  }
  .page-title{
    background-position: 0px -170px;
  }
  .shape-box{
    display: none;
  }
  .breadcrumb-content{
    width: 250px;
  }
}

.invalid-feedback{
  font-weight: bolder;
}

.dark-mode .text-black p{
  color: #000;
}
.dark-mode .toggleButton,
.dark-mode #toggleButton{
  color: var(--color-primary) !important;
  font-weight: bold;
  font-size:1.3rem;
}

#toggleButton {
  font-size: 1.1rem;
}

a{
  font-size: 1.2rem;
}

/* checkbox style */
.checkbox-wrapper .titles{
  color:initial;
  max-width: 277px;
  width:100%;
}
.dark-mode .checkbox-wrapper .titles{
  color:#fff;
}
.checkbox-wrapper {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}


@-moz-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

.checkbox-wrapper input[type=checkbox] {
  display: none;
}

.checkbox-wrapper .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * .1) solid #685f78;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.dark-mode .checkbox-wrapper .check-box {
  border: calc(var(--checkbox-height) * .1) solid #fff;
}
.checkbox-wrapper .check-box::before,
.checkbox-wrapper .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * .2);
  background-color: #34b93d;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}
.checkbox-wrapper .check-box::before {
  top: calc(var(--checkbox-height) * .72);
  left: calc(var(--checkbox-height) * .41);
  /* box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color); */
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.checkbox-wrapper .check-box::after {
  top: calc(var(--checkbox-height) * .37);
  left: calc(var(--checkbox-height) * .05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox-wrapper input[type=checkbox]:checked + .check-box,
.checkbox-wrapper .check-box.checked {
  border-color: #34b93d;
}
.checkbox-wrapper input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}
.dark-mode .swiper-pagination-bullet{
  background: #fff !important;
}
.swiper-pagination-bullet-active {
  background: rgb(var(--primary-rgba)) !important;
}

/* remove show password icon in edge browers  */
input::-ms-reveal {
  display: none;
}

.dark-mode .table_text {
  color: #fff !important;
}

.dark-mode .table th {
  color: var(--color-primary);
}

.w-5 {
  width: 10px;
  fill: var(--color-primary);
}