* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #0b0b16;
  --purple: #5e35ac;
  --lightblue: #04004d;
  --yellow: #ffc44f;
  --input: #003b40;
  --gray: #D6D6D6;
  --lightgray: #555555;
  --text_greebn: #013b40;
  --green: #7cd04d;
  --body-color: #0F0B18;
  --secondary-color: #1B1724;
}

body {
  font-family: "Poppins", sans-serif !important;
  background: var(--body-color);
  color: var(--white);
  position: relative;
}

/* commen css  */
.color_white {
  color: var(--white);
}

.color_text_green {
  color: var(--text_greebn);
}

.color_lightblue {
  color: var(--lightblue);
}

.color_gray {
  color: var(--gray);
}

.color_lightgray {
  color: var(--lightgray);
}

.sub_heading {
  font-weight: 600;
  display: inline-block;
  color: #458dff;
  line-height: 1.3;
  font-size: 18px;
  text-transform: uppercase;
}

.heading_h1 {
  font-size: 56px;
  font-weight: 800;
}

.heading_h2 {
  font-size: 42px;
  font-weight: 700;
}

.heading_h4 {
  font-size: 32px;
  font-weight: 600;
}

.heading_h6 {
  font-size: 24px;
  font-weight: 500;
}

.section_padding {
  padding: 100px 0;
}

.faq_para {
  font-size: 15px;
  font-weight: 700;
}

/* end footer css  */

.logo {
  /* width: 600  px; */
  height: 50px;
  object-fit: cover;
}

.nav_menu {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
}

.aizelle_btn:hover {
  box-shadow: 0 10px 15px -3px #488aec4f, 0 4px 6px -2px #488aec17;
}

.sticky-nav {
  position: sticky !important;
  top: 0;
  z-index: 999;
  animation: slideDown .8s ease forwards;
  /* background: #ffffff; */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}

@keyframes slideDown {
  0% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

/* .aizelle_btn:hover {
  box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #3c4fe0;
  transform: translateY(-0.1em);
} */


#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 35px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition-duration: .5s;
}

.bars {
  width: 80%;
  height: 4px;
  background-color: rgb(25 17 43);
  border-radius: 4px;
}

#bar2 {
  transition-duration: .8s;
}

#bar1 {
  width: 80%;
}

#bar2 {
  width: 60%;
}

#checkbox:checked+.toggle .bars {
  position: absolute;
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .1s;
}

#checkbox:checked+.toggle #bar1 {
  width: 70%;
  transform: rotate(45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar3 {
  width: 70%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}


.uiverse-btn {
  cursor: pointer;
  /* background: linear-gradient(to bottom, #6366f1, #4f46e5); */
  /* padding: 12px 24px; */
  /* border-radius: 12px; */
  /* border: 1px solid #64748b; */
  /* color: #ffffff; */
  font-weight: 500;
  /* box-shadow: 0px 4px 32px rgba(99, 102, 241, 0.7); */
  overflow: hidden;
}

.uiverse-inner {
  position: relative;
  overflow: hidden;
}

.uiverse-text-1,
.uiverse-text-2 {
  transition: 1.125s cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
}

.uiverse-text-1 {
  transform: translateY(0);
}

.uiverse-btn:hover .uiverse-text-1 {
  transform: translateY(-28px);
}

.uiverse-text-2 {
  position: absolute;
  top: 28px;
  left: 0%;
  /* transform: translateX(-50%); */
}

.uiverse-btn:hover .uiverse-text-2 {
  top: 0;
}


.aizelle_btn {}

/* .aizelle_btn:hover {
    background-position: right bottom;
    color: #000;
} */

/* .aizelle_btn:active {
  box-shadow: inset 0px 0.1em 0.6em #3c4fe0;
  transform: translateY(0em);
} */

/* .navbar {
  background: var(--body-color);
} */
.header_menu {
  background: #a7dff227;
  padding: 10px 15px;
  border-radius: 40px;
  backdrop-filter: blur(15px);
  transition: all .5s ease-in-out;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding: 0px 23px;
  cursor: pointer;
}

.menu_padding {
  font-weight: 500;
  /* color: var(--black); */
  color: var(--white);
}

.menu_padding:hover {
  color: #67cff3;
}

.aizelle_navbar {
  padding: 12px;
  position: absolute;
  z-index: 999;
  /* transition:
    padding 0.3s ease,
    box-shadow 0.3s ease; */
  /* border-bottom: 1px solid #0000005a; */
}

.dropwown_icon::before {
  content: "+";
  position: absolute;
  left: auto;
  right: 5px;
  top: 50%;
  text-align: center;
  z-index: 9999;
  font-size: 16px;
  display: block;
  cursor: pointer;
  transform: translateY(-50%);
  font-weight: 400;
}

.dropwown_icon:hover::before {
  display: none;
}

.dropwown_icon:hover::after {
  content: "-";
  position: absolute;
  left: auto;
  right: 5px;
  top: 50%;
  text-align: center;
  z-index: 9999;
  font-size: 16px;
  display: block;
  cursor: pointer;
  transform: translateY(-50%);
  font-weight: 400;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  /* margin-top: 26px; */
}

.nav_menu:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  border: none;
  padding-top: 16px;
  background: var(--secondary-color);
  color: var(--white);
  /* margin-top: 20px; */
}

.nav_menu:hover .dropdown-menu li a {
  color: var(--white) !important;
}

.cards_style {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 80px;
  position: relative;
  z-index: 1;
  display: block;
  background: #fff;
}

.hover-effect {
  transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-5px);
}

.monthly {
  background-color: #0b1a47;
}

.why_us {
  background-color: #eceff3;
  ;
}

.dropdown-item:hover {
  background: none;
}

.join_community {
  padding: 48px;
}

/* ------vision------ */
.left_right_shape img {
  animation: movers 1s infinite alternate;
  position: absolute;
  top: -100px;
  right: 47%;
  height: 510px;
}

.mision_left_right_shape img {
  position: relative;
  bottom: 350px;
  right: 100%;
  opacity: 0.2;
}

/* start footer css  */
.aizelle_footer {
  /* background-image: url("../images/footer/footerbg.png"); */
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  font-weight: 400;
}

.aizelle_footer .number_padding {
  background-color: #67cff3;
}

.aizelle_footer a:hover {
  color: #0b0b16;
}

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

.faq .accordion-button {
  background: linear-gradient(0deg, #ffffff14, rgba(255, 255, 255, 0.08)) !important;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff !important;
  border: none;
  margin: 20px 0px 0px 0px;
  padding: 20px 20px !important;
  border-radius: 0px 0px 0px 0px;
  /* box-shadow: 0px 7px 10px 0px rgb(47 47 47 / 89%); */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq .accordion-button.collapsed {
  border-radius: 10px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 10px !important;

}

.accordion-item {
  background-color: transparent;
}

.accordion-body {
  background-color: #ffffff26 !important;
  color: var(--white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

}

.faq .accordion-item {
  border: none;
}

.aizelle_footer_top {
  padding: 70px 0 10px;
  font-size: 16px;
  color: var(--white);
  border-top: 1px solid #3f3f3fdd;
}


.aizelle_footer_bottom {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
}

.border_hr {
  border: 1px solid #75b5df1c;
}

.fotter_social_icon {
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff5d;
  transition: all 0.4s linear;
}

/* .newletter_input {
  font-size: 13px;
  padding: 15px 60px 15px 20px;
  color: var(--input);
  overflow: hidden;
  border-radius: 5px;
  background: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
} */
.pacakge_btn,
.aizelle_btn,
.aizelle_btn:hover,
.aizelle_btn_border {
  color: var(--white);
  padding: 14px 30px;
  /* background-color: var(--blue); */
  border-radius: 3px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #56289B 0%, #5C8ACB 50%, #62EDFA 100%);
  border: none;
}

.aizelle_btn_border,
.aizelle_btn_border:hover {
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: 2px solid rgb(0, 59, 64);
}

.aizelle_btn_border {
  color: var(--black);
}

.small_info {
  background-color: #7cd04d;
  width: 100%;
  z-index: 99;
  transition: all 300ms ease-in-out;
  padding: 14px 0;
}

.font_14 {
  font-size: 14px;
}

.small_info a {
  color: var(--black) !important;
  font-size: 13px;
  font-weight: 500;
}

.aizelle_bg {
  position: relative;
  /* background-color: #7cd04d; */
  /* background: linear-gradient(0deg, #050e2f, var(--blue)); */
  padding: 150px 0 100px;
  /* background: linear-gradient(300deg, #b6effa, #554dac); */
}

.aizelle_bg::after {
  content: "";
  background-image: url("../images/home/hero_bg3.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
}

.yellow_card img {
  max-width: 80%;
}

.yellow_card,
.black_card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(90deg, #56289B 0%, #5C8ACB 50%, #62EDFA 100%);
  padding: 1px !important;

}

.yellow_card::before,
.black_card::before {
  content: "";
  position: absolute;
  width: 98%;
  height: 98%;
  border-radius: 20px;
  background: linear-gradient(90deg, #56289B 0%, #5C8ACB 50%, #62EDFA 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.yellow_card>*,
.black_card>* {
  position: relative;
  z-index: 1;
  background: var(--body-color);
  border-radius: 20px;
  padding: 15px;
}


.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.why_choose {
  padding: 40px;
}

.black_card {
  background-image: url("../images/new_home/blackcard.webp");
}

.assets_card {
  cursor: pointer;
}

.assets_card img {
  height: 219px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 10px 4px rgba(0, 0, 0, 207.25));
}

.assets_card:hover img {
  transition: transform 0.3s ease;
  transform: rotateY(180deg);
}

.yellow_card:hover img {
  transform: scale(1.2);
  transition-duration: .5s;

  transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36);
}

.aizelle_hero {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 100%;
  animation: spinZoom 5s linear infinite;
}

.hero_img {
  position: relative;
}

@keyframes spinZoom {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.01);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.robot_hero {
  animation: smoothMover 3s ease-in-out infinite;
}

@keyframes smoothMover {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}



.why_choose_card:hover h4 {
  color: #E2B500;
  transition: all .3s ease 0s;
}

.why_choose_card:hover h6 {
  color: #E2B500;
  transition: all .3s ease 0s;
}

.why_us_bg {
  background-image: url("/assets/images/home/bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.mission_section {
  padding: 180px 0;
  display: block;
  width: 100%;
}

.yellow_bg {
  background-color: #7cd04d;
}

.core_value_section {
  /* background-image: url("../images/home/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat; */
  /* background: var(--secondary-color); */
}

.faq {
   background: var(--secondary-color);
}

.core_value_section img {
  width: 73px;
  height: 73px;
  position: relative;
  z-index: 3;
}

.form-control {
  background-color: #FAFAFA;
  border-color: #ECECEC;
  padding: 20px 30px;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--black);
  outline: 0;
  box-shadow: none;
}

.top_bottom_shape img {
  /* -webkit-animation: mover 1s infinite  alternate; */
  animation: mover 1s infinite alternate;
}

.main_img {
  position: absolute;
  bottom: 0;
  left: 300px;
}

.top_right_shape {
  animation: movers 1s infinite alternate;
}

.aizelle_top {
  /* background-color: #458DFF !important; */
  background: linear-gradient(90deg, #56289B 0%, #5C8ACB 50%, #62EDFA 100%);
  border-radius: 0 !important;
  right: 30px !important;
  bottom: 40px !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}

.aizelle_top svg {
  fill: var(--white) !important;
  width: 20px !important;
  height: 20px !important;
}

.footer_logo {
  width: 50%;
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

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

@keyframes movers {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30px);
  }
}

.contact_img {
  position: relative;
}


.why_Choose {
  background-color: #ECEFF3;
}

.number_padding {
  width: 40px;
  height: 40px;
  padding: 9px 16px;
  background-color: var(--blue);
}

.about_bg {
  background-image: url("/assets/images/home/bg_hero.svg");
  background-repeat: no-repeat;
  background-position: center right;
}

.step {
  padding: 30px;
}

.section_testimonal {
  background-color: #458DFF;
  color: var(--gray);
}

.testimonal_card h2 {}






/* end footer css  */
.swiper-button-about-prev,
.swiper-button-about-next {
  width: 16px;
  height: 16px;
}

.btn_about_prev,
.btn_about_next {
  background-color: #e8505b;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.service_icon {
  display: inline-block;
  position: relative;
  padding: 5px;
  font-size: 50px;
  line-height: 50px;
  color: #04004d;
  transition: all ease .3s;
}

.images {
  position: relative;
  z-index: 3;
}

/* .service_icon::before {
  position: absolute;
  content: '';
  right: -30px;
  top: -15px;
  width: 60px;
  height: 60px;
  border: 1px dashed #E2B500 !important;
  border-radius: 100%;
  z-index: 1;
  transition: all 0.3s ease 0s;
  animation: spin 10s linear infinite;
} */

.heading_h5 {
  font-size: 20px;
}

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

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

/* .service_icon::after {
  content: '';
  left: 70px;
  top: 20px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  background: #60cdeb;
  display: block !important;
  animation: none;
  opacity: 1;
  visibility: visible;
  z-index: 2;
} */

.service_small_icon::after {
  width: 40px;
  height: 40px;
  left: 55px;
}

.service_small_icon::before {
  width: 40px;
  height: 40px;
  right: -25px;
  top: -5px;
}

.why_choose_card {
  padding: 30px;
  box-shadow: 0px 0px 50px #5564a83b inset;
  height: 100%;
  border-radius: 10px;
}

.error_message {
  color: rgb(240, 4, 4);
}

.trade_table thead {
  background: #448dff;
  color: #fff;
}

.trade_table thead tr th {
  padding: 12px 16px;
}

.trade_table tbody tr td {
  padding: 12px 16px;
}

.trade_table thead td:first-child,
.trade_table thead th:first-child {
  border-radius: 8px 0 0 0px;
}

.trade_table thead td:last-child,
.trade_table thead th:last-child {
  border-radius: 0 8px 0px 0;
}

.trade_table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

.trade_table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

.trade_table tbody tr:nth-child(even) {
  background-color: #efefef;
}

.trade_history_hero {
  /* background-color: var(--blue); */
  background-image: url("../images/home/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

.trade_card {
  background: linear-gradient(0deg, rgba(125, 208, 77, 0.799) 47%, rgb(207 238 2 / 42%) 100%);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 5px 5px #dedede;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.trade_card:hover {
  box-shadow: none;
}

.trade_card img {
  opacity: 0.03;
}

.trade_card:hover img {
  width: 80px !important;
  height: 80px !important;
  opacity: 1;
}

.trade_card h3 {
  font-size: 34px;
  font-weight: 600;
}

.index_2 {
  z-index: 2;
  position: relative;
}

.blog_img {
  height: 225px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog_card {
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 100%;
  min-height: 535px;
}

.blog_card_padding {
  padding: 20px;
}

.timeline {
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
  counter-reset: section;
}


.timeline:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #005baa;
  position: absolute;
  top: 0;
  left: -54px;
  border-radius: 40px 40px;
}

.timeline--entry {
  position: relative;
  background-color: #005baa;
  padding: 30px;
  margin: 20px 0;
}

.timeline--entry__title {
  color: #fff;
}

.timeline--entry__detail {
  margin: 0;
}

.timeline--entry:before {
  content: "";
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #71bf44;
  border: 3px solid white;
  border-radius: 50%;
  position: absolute;
  background-image: url("/assets/images/new_home/star.svg");
  background-repeat: no-repeat;
  background-position: center center;
  text-shadow: 0 1px 0 #424242;
  left: -13%;
}

.timeline--entry:nth-of-type(even):before {
  left: -14%;
}

.pacakge_card {
  position: relative;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  padding: 40px 28px 40px;
  background-color: #C1BA9C;
  /* background-color: #99c1ff63; */
  border-radius: 30px 30px 30px 30px;
  height: 100%;
}


.pacakge_back4:hover {
  opacity: 1;
}

.bg_sky {
  background-color: #e6f3ff;
}

.pacakge_btn {
  padding: 14px 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.pacakge_btn:hover {
  color: #fff;
}

.tab-link {
  color: #000 !important;
}

.nav-pills .tab-link.active,
.nav-pills .show>.tab-link {
  background-color: #224dcf !important;
  color: #fff !important;

}

/* .blur_card {
  display: flex;
}

.blur_card:hover .pacakge_card {
  filter: blur(5px);
  transform: scale(0.9);
}

.blur_card .pacakge_card:hover {
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
} */

.faq_btn:not(.collapsed)::after {
  background-image: url("/assets/images/new_home/minus.svg") !important;
}

.faq_btn::after {
  background-image: url("/assets/images/new_home/plus_icon.svg") !important;
}

/* .accordion-item:first-of-type .faq_btn {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;

}

.accordion-item:last-of-type .faq_btn.collapsed {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
} */

.faq_btn:focus {
  box-shadow: none !important;
}

.card_img {
  border-radius: 20px;
}

.mission_card {
  background-color: #005baa;
  color: var(--white);
  height: 100%;
}

.sub_title {
  font-family: 32px;
  font-weight: 600;
}

.table-responsive {
  box-shadow: 0px 20px 50px 0px #00000026;
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 7px;
  height: 73px;
  min-width: 100px;
}

.payment-card img {
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: rgb(255 255 255 / 33%);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #00000052;
  border-radius: 14px;
}

.pricing-table th {
  background-color: #00000078;
  padding: 20px 15px;
  color: white;
}



.pricing-table td {
  padding: 16px 24px;
  color: white;
}

.purple_bg {
  background: #005baa;
  /* background-color: #0b0b16; */
  border-radius: 50% 50% 0px 0px;
  width: 3061px;
  position: relative;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.pacakgeitem_bg {
  background: linear-gradient(180deg, rgba(18, 27, 113, 0) 0%, #0E1A88 60.24%, #121E85 100%);
  height: 100%;
  width: 100%;
}

.pricing-table td:first-child {
  text-align: left;
  padding-left: 20px;
  white-space: nowrap;
}

.pricing-table th:first-child .get_plan_btn {
  display: none;
  white-space: nowrap;
}

.pricing-table tr:nth-child(even) {
  background-color: #00000078;
  /* border-bottom: 1px solid #224dcf; */
}

/* .pricing-table tr {
  border-bottom: 1px solid #224dcf;
} */

.pricing-table .get_plan_btn {
  background-color: #224dcf;
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.pricing-table tr:hover {
  background-color: #97b1ff08;
}

.tab_nav {
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 60px;
  background: #00000078;
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 30px;
  overflow-x: auto;
}

.table_round {
  border-radius: 16px;
  border: 1px solid hsla(0, 0%, 100%, .3);
}

.tab-button {
  border-radius: 60px;
  background: none;
  border: none;
  padding: 10px;
  font-size: 16px;
  color: #ffffff99;
  max-width: 700px;
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  gap: 10px;
  display: flex;
  align-items: center;
}

.tab-button.active {
  border-radius: 60px;
  color: #000 !important;
  background-color: #ffff;
}

.tab-button:hover {
  border-radius: 60px;
  /* color: #ffffff87 !important;
  background-color: #2375bd85; */
}

.faq_main {
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
}

.faq_main a {
  text-decoration: none;
}

.faq_list {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}

.faq_list:hover {
  background-color: #005baa17;
}

.faq_art {
  font-weight: bold;
  font-size: 1.25rem;
  margin-left: 15px;
}

.faq_question {
  color: #000;
}

.faq_question:hover {
  color: #005baa;
}

.faq_card {
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
  height: 100%;
}

.faq_card img {
  width: 35px;
  height: 35px;
}

.faq_body {
  padding: 20px;
}

.faq_card_img {
  background-color: rgb(245, 245, 245);
  border-radius: 8px;
  margin-right: 20px;
}

.faq_text {
  color: #737373;
}

.faq_shadow {
  box-shadow: rgba(0, 0, 0, 0.05);
}

.article_box {
  background-color: #005baa21;
  border-radius: 10px;
  border: 1px solid #005baa;
  padding: 24px;
}

.dropdown-menu {
  z-index: 1050 !important;
}


.submenu {
  display: block !important;
}

.add_exp {
  margin-right: 25px;
}

.faq_pay {
  margin-right: 15px;
}

.package_card_container {
  position: relative;
}

.package_card {
  position: relative;
  z-index: 1;
  background: radial-gradient(244.14% 100% at 50% 0, #005baac9 0, #1b3ea7e0 45%);
  transition: all 0.2s ease-in-out;
  padding: 40px 28px 40px;
  border-radius: 16px;
  /* height: 100% !important; */
  min-height: 628px;
  color: #fff;
  overflow: hidden;
  text-align: start;
}

.pacakge_back1 {
  color: #fff;
  background: radial-gradient(244.14% 100% at 50% 0%, #7806ae 0%, #2a054f 60%);
  position: relative;
  z-index: 1;
}

.pacakge_back2 {
  color: #fff;
  background: radial-gradient(244.14% 100% at 50% 0, #005baac9 0, #1b3ea7e0 45%)
}

.pacakge_back3 {
  color: #fff;
  background: radial-gradient(244.14% 100% at 50% 0, #005baac9 0, #1b3ea7e0 45%)
}

.pacakge_back4 {
  color: #fff;
  background: radial-gradient(244.14% 100% at 50% 0, #005baac9 0, #1b3ea7e0 45%)
}

.popularplan {
  position: relative;
  /* top: 20px; */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 700;
}

.hover-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.package_card:hover .hover-text {
  opacity: 1;
  visibility: visible;
}

.package_bg {
  background: linear-gradient(0deg, rgb(6 105 191 / 71%) 7%, rgba(87, 119, 217, 0.7455357142857143) 51%, rgb(25 140 237 / 34%) 93%);

}

.content {
  padding: 40px;
  background-color: var(--text_greebn);
  background: linear-gradient(120deg, #2a79bec7 0%, #70a8ffb5 100%);
  border-radius: 10px;
  position: relative;
  background-position: 0 0;
  background-size: cover;
  height: 100%;
}

.text_grey {
  color: hsla(0, 0%, 100%, .6);
}

.text_white {
  color: hsla(0, 0%, 100%, .4);
}

.text_muted {
  color: hsla(0, 0%, 100%, .75);
}

.content:hover {
  animation: bg-animation 15s ease infinite;
}

.package.active .package_card {
  z-index: 3;
}

.more_sec {
  padding-top: 6px;
}

@keyframes bg-animation {
  0% {
    background-position: top;
  }

  50% {
    background-position: bottom;
  }

  100% {
    background-position: top;
  }
}

.aizelle_news {
  position: fixed;
  bottom: 0;
  font-size: 12px;
  display: block;
  width: 100%;
  text-align: center;
  z-index: 999999999;
}

.package.active {
  border-radius: 30px;
  position: relative;
  box-shadow: 0px 4px 15px rgba(127, 63, 242, 0.3);
  z-index: 1;
  background: radial-gradient(244.14% 100% at 50% 0, #7806ae 0, #2a054f 45%);
  transition: all 0.2s ease-in-out;
  /* padding: 40px 28px 40px; */
  height: 100% !important;
  color: #fff;
}

.package.active::before {
  content: "";
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.package_card:hover+.hover-text {
  opacity: 1;
  visibility: visible;
}

.cardss {
  margin-top: 0;
}

.active-popular {
  top: -35px;
  left: 0%;
  font-size: 16px;
  padding: 10px 0px 0px 0px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #00305a -1.15%, #00305a 9.33%);
  transition: all 0.2s ease-in-out;
  border-radius: 22px;
  color: #fff;
  overflow: hidden;
}

.payment {
  width: 75% !important;
}

.left_shadow,
.right_shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  /* Adjust width as needed */
  pointer-events: none;
  /* Ensures it doesn't block hover events */
  z-index: 2;
}

.left_shadow {
  left: 12%;
  background: linear-gradient(270deg, rgba(23, 30, 98, 0.00) 0%, #849ce4 90%)
    /* Adjust colors as needed */
    /* Adjust colors as needed */
}

.right_shadow {
  right: 12%;
  background: linear-gradient(90deg, rgba(23, 30, 98, 0.00) 0%, #849ce4 90%)
    /* Adjust colors as needed */
    /* Adjust colors as needed */
  ;
}

.payment-container {
  position: relative;
  /* To position the shadows relative to the marquee */
  overflow: hidden;
}

/* linear-gradient(0deg, rgb(6 105 191 / 71%) 7%, rgba(87, 119, 217, 0.7455357142857143) 51%, rgb(25 140 237 / 34%) 93%) */
.privacypolicy {
  background-color: var(--body-color);
}

.scroll {
  overflow: hidden;
  height: 600px;
  padding: 50px 25px;
  background-color: var(--secondary-color);
}

.scroll-inner {
  overflow-y: scroll;
  height: 100%;
  padding-right: 20px;
}

.scroll-inner::-webkit-scrollbar {
  width: 10px;
  height: 50px;
}

.scroll-inner::-webkit-scrollbar-thumb {
  /* background: #7cd04d; */
  background: linear-gradient(290deg, #56289B 0%, #5C8ACB 50%, #62EDFA 100%);
  border-radius: 10px;
}

/* .account-size-bg {
  background-image: linear-gradient(90deg,#080663,#0d0aa7) !important; 
  border-bottom: 1px solid #224dcf;
} */

/* .first-cell-bg {
  background-image: linear-gradient(90deg,#080663,#0d0aa7) !important; 
  border-bottom: 1px solid #224dcf;
} */

.package:hover {
  color: #fff;
}

.compare-table th {
  /* background-color: #00213e; */
  /* background-color: #00305a; */
  /* background: #2a79bec7; */
  background: #005baa;
  padding: 30px 20px;
  color: white;
}

.compare-table tr:nth-child(even) {
  /* background-color: #00213e; */
  /* background: radial-gradient(244.14% 100% at 50% 0, #005baac9 0, #1b3ea7e0 45%); */
  /* background: #005baa; */
  /* background: linear-gradient(120deg, #2a79bec7 0%, #70a8ffb5 100%); */
  /* background: #70a8ffb5; */
  background: #70a8ff30;
}

.compare-table td:first-child {
  text-align: left;
  padding-left: 20px;
  white-space: nowrap;
  font-weight: 700;
}

.compare-table td {
  padding: 16px 24px;
  /* color: white; */
  color: #000;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  /* background: linear-gradient(120deg, #2a79bec7 0%, #70a8ffb5 100%); */
  border-radius: 14px;
}

.tab_nav::-webkit-scrollbar {
  margin-top: 10px;
  width: 10px;
  height: 3px;
}

.tab_nav::-webkit-scrollbar-track {
  background: #232e3300;
  border-radius: 3px;
}

.tab_nav::-webkit-scrollbar-thumb {
  background: #6BAF8D;
  width: 10px;
  border-radius: 3px;
}

.rounded_220 {
  border-radius: 220px !important;
}

.probidexworld_logo {
  width: 200px;
}

/* === Token Start ==== */

.progress__item {
  margin-bottom: 20px;
  /* background: #23304033; */
  padding: 15px;
  border-radius: 15px;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.12); */
  box-shadow: 0px 0px 50px #5564a83b inset;
}

.progress__title {
  font-size: 18px;
}

.progress__item .progress {
  height: 4px;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: transparent;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: width 0.6s ease;
}

.progress__item .progress-bar {
  background: linear-gradient(90deg, #865FFC 0%, #3e4af1 100%);
}

.pro_matter ul li {
  font-size: 15px;
  font-weight: 400;
  color: #c1c1c1;
}

.progress_para p {
  font-size: 15px;
  font-weight: 400;
  color: #c1c1c1;
}

.section_padding {
  scroll-margin-block: 80px;
}



/* === Token End === */

.probidexworld_mo_logo {
  width: 170px;
}

@media (min-width: 1024px) {
  .timeline {
    display: grid;
    grid-gap: 4.75em;
    grid-template-areas: ".  entry1" "entry2  ." ". entry3" "entry4 ." ". entry5" "entry6 . " ". entry7" "entry8 . " ". entry9" "entry10 ." ". entry11" "entry12 . ";
  }

  .timeline:before {
    left: 50.5%;
  }

  .timeline--entry:nth-child(1) {
    grid-area: entry1;
  }

  .timeline--entry:nth-child(2) {
    grid-area: entry2;
  }

  .timeline--entry:nth-child(3) {
    grid-area: entry3;
  }

  .timeline--entry:nth-child(4) {
    grid-area: entry4;
  }

  .timeline--entry:nth-child(5) {
    grid-area: entry5;
  }

  .timeline--entry:nth-child(6) {
    grid-area: entry6;
  }

  .timeline--entry:nth-child(7) {
    grid-area: entry7;
  }

  .timeline--entry:nth-child(8) {
    grid-area: entry8;
  }

  .timeline--entry:nth-child(9) {
    grid-area: entry9;
  }

  .timeline--entry:nth-child(10) {
    grid-area: entry10;
  }

  .timeline--entry:nth-child(11) {
    grid-area: entry11;
  }

  .timeline--entry:nth-child(12) {
    grid-area: entry12;
  }

  .timeline--entry:nth-of-type(odd):before {
    left: -10%;
  }

  .timeline--entry:nth-of-type(even):not(:nth-of-type(odd)) .timeline--entry__title:before {
    left: 100%;
    border-left: 10px solid #ec407a;
    border-right: 0;
  }

  .timeline--entry:nth-of-type(even):before {
    left: 101%;
  }
}

@media (max-width: 1440px) {
  .heading_h1 {
    font-size: 48px;
  }

  .section_padding {
    padding: 80px 0;
  }

  .cardss {
    margin-top: 0;
  }

  .mision_left_right_shape img {
    bottom: 427px;
    right: 83%;
    width: 87px;
  }

  .left_right_shape img {
    right: 35%;
  }

  .heading_h2 {
    font-size: 36px;
  }

  .heading_h6 {
    font-size: 22px;
  }

  .main_img {
    left: 190px;
  }

  .form-control {
    padding: 18px 30px;
  }


}

@media (max-width:1439px) {}

@media (max-width:1199px) {
  .packages_section {
    overflow: auto;
  }

  .header_menu {
    max-width: 100% !important;
  }

  .navbar-collapse {
    position: fixed;
    top: -12px;
    left: -250px;
    width: 260px;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 9999;
    transition: left 0.3s ease;
    padding-top: 20px;
  }

  .navbar-collapse.show {
    left: -14px;
  }

  .navbar-nav {
    padding-top: 18px;
  }

  .nav_menu {
    padding: 8px 18px;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding: 8px 0px;
  }
}

@media(max-width:1280px) {
  .more_sec {
    padding-top: 37px;
  }

  .package_card {
    min-height: 607px;
  }
}

@media (max-width: 1024px) {
  .section_padding {
    padding: 70px 0;
  }

  .more_sec {
    padding-top: 0;
  }


  .pricing-table .get_plan_btn {
    padding: 10px 11px;
  }

  .why_choose {
    padding: 32px;
  }


  .timeline--entry:nth-of-type(odd):before {
    left: -14%;
  }

  .main_img {
    left: 100px;
  }

  .why_us_bg {
    background-position: center right;
  }

  .sub_heading {
    font-size: 16px;
  }

  .faq .accordion-button {
    font-size: 16px;
  }

  .heading_h1 {
    font-size: 42px;
  }

  .heading_h2 {
    font-size: 32px;
  }

  .heading_h6 {
    font-size: 20px;
  }

  .cards_style {
    padding: 20px;
  }


  .dropwown_icon:hover::after {
    position: relative;
    right: 0;
    text-align: right;
    transform: translateY(-100%);
  }

  .dropwown_icon:hover::before {
    display: none;
  }

  .dropwown_icon::before {
    text-align: right;
    display: block;
    transform: translateY(-50%);
    font-weight: 400;
  }

  .product-dropdown:hover .sub-menu {
    padding: 13px 0;

  }

  .dropdown-menu {
    padding: 12px 0;
    width: max-content;
  }

  .product-dropdown .sub-menu {
    width: 100%;
    box-shadow: none;
  }

  .navbar-nav .dropdown-menu {
    position: inherit;
    border: none;
  }

  .dropdown-menu {
    margin-top: 0;
  }


  /* .contact-form {
    padding: 70px 60px 50px;
  } */

  .left_right_shape img {
    top: 54px;
    right: 35%;
    height: 280px;
  }

  .mision_left_right_shape img {
    bottom: 395px;
    right: 63%;
    width: 70px;
  }

  .step {
    padding: 22px;
  }

  .aizelle_footer_top {
    padding: 48px 0 0px;
  }

  .fotter_social_icon {
    width: 36px;
    height: 36px;
  }

  .heading_h5 {
    font-size: 18px;
  }

  .form-control {
    padding: 14px 20px;
  }

  .aizelle_btn,
  .aizelle_btn:hover,
  .aizelle_btn_border {
    padding: 8px 13px;
  }

  .pacakge_card {
    padding: 30px 20px 30px;
  }

  .pacakge_btn {
    padding: 12px 60px;
  }

  .sub_title {
    font-size: 28px !important;
  }

  .nav_menu:hover .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .nav_menu .dropdown-toggle {
    pointer-events: auto;
  }

  .nav_menu .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .nav_menu.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropwown_icon {
    display: none;
  }

  .nav_remove {
    padding: 8px 0;
  }

  .package_card {
    min-height: 545px;
  }

  .cardss {
    margin-top: -32px;
  }

  .probidexworld_logo {
    width: 180px;
  }
}

@media (max-width:912px) {
  .pricing-table .get_plan_btn {
    padding: 10px 7px;
  }
}

@media (max-width:768px) {
  /* .contact-form {
    padding: 55px 45px 40px;
  } */

  .why_choose {
    padding: 26px;
  }

  .purple_bg {
    width: 2000px;
  }

  .pricing-table th {
    padding: 20px 10px;
    white-space: break-spaces;
  }

  .tab_nav {
    max-width: 900px !important;
    width: 100%;
    overflow-x: scroll;
  }

  .tab-button {
    max-width: 635px;
  }

  .pricing-table .get_plan_btn {
    padding: 10px 11px;
  }

  .aizelle_footer_top {
    padding: 40px 0 0px;
  }

  .wrapper {
    padding: 0px 0 0 85px;
  }

  .timeline {
    display: block;
    /* Stacks the entries vertically */
  }

  .timeline:before {
    left: 4%;
  }

  .timeline--entry {
    margin-left: 0;
    /* Remove extra margin for smaller screens */
    padding-left: 20px;
    /* Add some padding to separate content from the edge */
    position: relative;
    /* Ensure proper positioning */
  }

  .timeline--entry:before {
    left: 0;
    /* Align the counter to the left */
    top: 10px;
    /* Adjust top spacing */
    transform: translateY(0);
    /* Reset vertical alignment */
  }

  .font_14 {
    font-size: 13px;
  }

  .step {
    padding: 24x;
  }

  .join_community {
    padding: 32px;
  }

  .heading_h2 {
    font-size: 28px;
  }

  .heading_h1 {
    font-size: 36px;
  }

  .heading_h6 {
    font-size: 18px;
  }

  .why_choose_card {
    padding: 26px;
  }

  .sub_para {
    font-size: 15px;
  }

  .footer_logo {
    width: 30%;
  }

  .cards_style {
    padding: 28px;
  }

  .fotter_social_icon {
    width: 34px;
    height: 34px;
  }

  .aizelle_btn,
  .aizelle_btn:hover,
  .aizelle_btn_border {
    padding: 10px 15px;
  }

  .aizelle_top {
    right: 36px !important;
    bottom: 60px !important;
  }

  .number_padding {
    width: 38px;
    height: 38px;
  }

  .pacakge_card {
    padding: 26px 20px 26px;
  }

  .faq .accordion-button {
    padding: 20px 24px !important;
  }

  .pacakge_btn {
    padding: 12px 36px;
  }

  .package_card {
    min-height: 498px;
  }

  .probidexworld_logo {
    width: 160px;
  }

  .probidexworld_mo_logo {
  width: 160px;
}
}

@media (max-width:600px) {
  /* .contact-form {
    padding: 30px 26px 0px;
  } */

  .payment {
    width: 100% !important;
  }

  .aizelle_footer_bottom {
    padding: 0 0 20px;
  }

  .pacakge_btn {
    padding: 12px 55px;
  }

  .why_choose {
    padding: 26px;
  }

  .aizelle_footer_top {
    padding: 28px 0 0px;
  }

  .footer_logo {
    width: 40%;
  }

  .purple_bg {
    border-radius: 0;
    width: auto;
  }

  .wrapper {
    padding: 0px 0 0 70px;
  }

  .timeline:before {
    left: 7%;
  }

  .timeline--entry:nth-of-type(odd):before,
  .timeline--entry:nth-of-type(even):before {
    left: -21%;
  }

  .aizelle_btn,
  .aizelle_btn:hover,
  .aizelle_btn_border {
    padding: 8px 12px;
  }

  .fotter_social_icon {
    width: 30px;
    height: 30px;
  }

  .join_community {
    padding: 28px;
  }

  .why_choose_card {
    padding: 20px;
  }

  .step {
    padding: 18px;
  }

  .why_card {
    padding: 5px;
  }

  .heading_h5 {
    font-size: 16px;
  }

  .about_bg {
    background-position: center center;
  }

  .form-control {
    padding: 12px 18px;
  }

  .sub_para {
    font-size: 14px;
  }

  .cards_style {
    padding: 20px;
  }

  .sub_heading {
    font-size: 14px;
  }

  .heading_h6 {
    font-size: 20px;
  }

  .heading_h2 {
    font-size: 26px;
  }

  .heading_h1 {
    font-size: 30px;
  }


  .nav_width {
    width: auto;
    margin-right: 0 !important;
  }

  .aizelle_top {
    right: 36px !important;
    bottom: 20px !important;
  }

  .blog_card {
    min-height: 472px;
  }

  .faq .accordion-button {
    padding: 18px !important;
  }

  .pacakge_card {
    padding: 24px 20px 24px;
  }

  .faq .accordion-button {
    font-size: 14px;
  }

  .package_card {
    min-height: 496px;
  }

  .package_card {
    min-height: 495px;
  }

  .hover-text {
    font-size: 14px;
  }

  .left_shadow {
    left: -60px;
  }

  .right_shadow {
    right: -60px;
  }

  .tab-button {
    padding: 4px 12px;
    gap: 1px;
  }

  .pricing-table .get_plan_btn {
    padding: 10px 10px;
  }

  .progress__item {
    padding: 10px;
  }

  .pro_matter {
    padding: 10px;
  }

    .probidexworld_mo_logo {
  width: 150px;
}
}

@media (max-width:375px) {
  .timeline--entry:before {
    width: 40px;
    height: 40px;
  }

  .wrapper {
    padding: 0px 0 0 60px;
  }

  .timeline:before {
    left: 6%;
  }

  .timeline--entry:nth-of-type(odd):before,
  .timeline--entry:nth-of-type(even):before {
    left: -19%;
  }

  .pacakge_btn {
    padding: 12px 43px;
  }

  .package_card {
    min-height: 520px;
  }
}

@media (max-width:320px) {
  .navbar-collapse {
    width: 217px;
  }

  .pacakge_btn {
    padding: 12px 28px;
  }

  .why_choose {
    padding: 24px;
  }

  .font_14 {
    font-size: 12px;
  }

  .small_info a {
    font-size: 12px;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding: 4px 0px;
  }

  .package_card {
    min-height: 580px;
  }

  .timeline--entry:nth-of-type(odd):before,
  .timeline--entry:nth-of-type(even):before {
    left: -25%;
  }
}

#whyus {
  background: var(--secondary-color);
}

.aizelle_footer_top a {
  color: var(--white);
}

.aizelle_footer_top a:hover {
  color: #67cff3;
}

.fotter_social_icon:hover {
  background: linear-gradient(300deg, #84DAF8 0%, #46408f 100%);
}

.border_btn {
  background: transparent;
  border: 1px solid white;
}

.border_btn:hover {
  background: transparent;
  border: 1px solid white;
}

.get_started {
  background: var(--white) !important;
  color: var(--black) !important;
}

.get_started>p {
  font-weight: 500;

}

.get_started :hover {
  color: var(--black) !important;
}

.navbar-toggler {
  padding-inline: 5px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: #67cff3 !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.contact_form {
  padding: 30px;
  background-color: #67d0f30f;
  border-radius: 30px;
}

.detail_form {
  padding: 30px;
  background-color: #ffffff0a;
  border-radius: 30px;
}


.input-row {
  margin-bottom: 14px;
}

.glass-input,
.glass-textarea {
  width: 100%;
  border-radius: 30px;
  padding: 14px 16px;
  border: none;
  background: #ffffff0d;
  color: var(--white);
  outline: none;
  font-size: 14px;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
  caret-color: var(--accent-to);
  resize: none;
}

.glass-input::placeholder,
.glass-textarea::placeholder {
  color: rgba(230, 239, 248, 0.45);
}


.glass-input:focus,
.glass-textarea:focus {
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.12);
  border-color: rgba(108, 92, 231, 0.5);
  transform: translateY(-2px);
}

.glass-textarea {
  border-radius: 15px;
}


/* actions row */
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.nav-link:focus,
.nav-link:hover {
  color: #67cff3;
}

.yellow_card p {
  font-size: 15px;
  color: #c1c1c1;
}

@media (max-width:768px) {
  .yellow_card img {
    width: 90px;
  }

  .heading_h4 {
    font-size: 28px;
  }

  .detail_form,
  .contact_form {
    padding: 20px;
  }
}