/* =========================================
/*
=========================================
Index
-----------------------------------------
# 00. Variable
# 01. Common
# 02. Header
# 03. Hero
# 04. Feature
# 05. Solution
# 06. Pricing
# 07. Accordion
# 08. Newsletter
# 09. Tags
# 10. Policy
# 11. Contact
# 12. 404
# 13. Footer
# 14. Responsive

*/
/* ======================================
 *  00. Variable
/* ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --lavender: #a570ff;
  --pink: #ff6eb2;
  --peach: #ffad66;
  --light: #ffffff;
  --light-50: #8181b1;
  --light-100: #8d8db9;
  --light-200: #9a9ac1;
  --light-300: #a6a6c9;
  --light-400: #b3b3d0;
  --light-500: #c0c0d8;
  --light-600: #cccce0;
  --light-700: #1a1d1e;
  --light-800: #e6e6ef;
  --light-900: #f2f2f7;
  --dark-50: #4e4e7e;
  --dark-100: #464672;
  --dark-200: #3e3e65;
  --dark-300: #363659;
  --dark-400: #2f2f4c;
  --dark-500: #27273f;
  --dark-600: #1f1f33;
  --dark-700: #171726;
  --dark-800: #101019;
  --dark-900: #08080d;
  --input-bg: #0000004d;
  --input-border: #3d2d5a;
  --gradient-lavender-pink-peach: linear-gradient(90deg, #62d6e5 0, #2c7487 51.04%, #092f44 100%);
  --gradient-w-500-w-100: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  --gradient-w-100-b-500: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
}

/* ======================================
 *  01. Common
/* ====================================== */
/* body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  background: #211334 url(../img/bg.svg) center/cover no-repeat;
  color: var(--light-300);
} */

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

p {
  line-height: 1.8;
}

input:focus {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

input::placeholder {
  color: #4e4e7e;
}

.title,
.title-2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  color: var(--light-700);
}

.title span,
.title-2 span {
  background: #20b5cc;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-2 {
  font-size: 40px;
  margin-bottom: 64px;
}

.btn {
  height: unset;
  min-height: unset;
  padding: 8px 16px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
}

.btn-secondary {
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  color: var(--light-600);
  border: 1px solid var(--light-100);
}

.btn-primary {
  border: 1px solid var(--pink);
  background: var(--gradient-lavender-pink-peach);
  padding: 12px 24px;
  color: var(--light);
}

.btn-tertiary {
  border: 1px solid var(--dark-600);
  background: var(--dark-800);
  padding: 12px 24px;
  color: var(--light-600);
}

.btn-secondary:hover,
.btn-tertiary:hover {
  border: 1px solid var(--lavender);
  background: var(--lavender);
  color: var(--light);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.mx-850 {
  max-width: 850px;
  margin: auto;
}

.pr-47 {
  padding-right: 47px;
}

.pl-47 {
  padding-left: 47px;
}

.mtb-192 {
  margin: 192px 0;
}

.mt-192 {
  margin-top: 192px;
}

.mb-192 {
  margin-bottom: 192px;
}

.py-80 {
  padding: 80px 0;
}

.mr-2{
    margin-right: 10px;
}

.ml-2{
    margin-left: 10px;
}

/* ======================================
 *  02. Header
/* ====================================== */
header {
  
}

header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

header nav ul li a {
  color: var(--light-300);
}

header nav ul li a:hover {
  color: #ff975c;
}

.desktop-header {
  display: block;
}

.mobile-header {
  display: none;
}

/* ======================================
 *  03. Hero
/* ====================================== */
.hero-area {
  padding-top: 96px;
}

.hero-area p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-area h1 {
    color: #fff;
    margin: 40px 0 0 0;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 48px;
}

.hero-chat {
  padding: 31px;
  margin-bottom: 96px;
  border: 1px solid #27243b;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  backdrop-filter: blur(8px);
}

.hero-chat-list {
  display: grid;
  gap: 24px;
}

.hero-chat-item {
  display: flex;
  gap: 12px;
}

.hero-chat-item-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--light-900);
  line-height: 1.5;
  margin-bottom: 4px;
}

.hero-chat-item-content span {
  color: var(--light-50);
  font-weight: 400;
  font-size: 14px;
}

.hero-chat-item-content p {
  font-size: 16px;
}

.hero-chat-item img {
  height: 32px;
  width: 32px;
}

.hero-chat-input {
  position: relative;
  margin-top: 40px;
  color: #fff;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 8px 8px 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-chat-input input {
  color: var(--white-700);
  width: 100%;
  background: transparent;
  border: none;
}

.hero-chat-input button {
  padding: 8px;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chat-input button svg {
  width: 24px;
  height: 24px;
}

.hero-brand p {
  margin-bottom: 32px;
}

.hero-brand ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ======================================
 *  04. Feature
/* ====================================== */

.feature-area .row {
  row-gap: 20px;
}

.feature-item {
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  border: 1px solid #28263f;
  padding: 31px;
  height: 100%;
}

.feature-item a {
  border-radius: 8px;
  border: 1px solid #302b49;
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  margin-top: 32px;
}

.feature-item h3 {
  margin: 32px 0 16px;
  color: var(--light-500);
  font-size: 25px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  font-size: 15px;
}

/* ======================================
 *  05. Solution
/* ====================================== */
.solution-item h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-item p {
  margin: 16px 0 32px;
  max-width: 566px;
}

.solution-item {
  padding: 31px;
  margin-bottom: 48px;
  border: 1px solid #2f2a49;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
}

.solution-single {
  border-radius: 8px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  padding: 16px;
  display: flex;
  gap: 15px;
}

.solution-single img {
  max-width: 24px;
}

.solution-single h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-single p {
  margin: 0;
  color: var(--white-500);
}

.solution-item-list {
  display: grid;
  gap: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.solution-item-chat {
  padding: 32px;
}

.solution-chat-message-item {
  display: flex;
  gap: 12px;
}

.solution-item .solution-chat-message-item img {
  width: 32px;
  height: 32px;
}

.solution-chat-message-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--light-900);
  line-height: 1.5;
  margin-bottom: 0;
}

.solution-chat-message-item h3 span {
  color: var(--light-50);
  font-weight: 400;
  font-size: 14px;
}

.solution-chat-message-item p {
  max-width: 458px;
  margin: 4px 0 0 0;
}

.solution-chat-message-item-content ol {
  padding: 10px 0 0 15px;
  margin: 0;
}

.solution-item img {
  width: 100%;
}

.solution-chat-message {
  display: grid;
  gap: 24px;
}

.solution-chat-message .hero-chat-input {
  margin-top: 0;
}

.solution-box-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.solution-box-item {
  border-radius: 8px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  padding: 16px;
}

.solution-box-item h4 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 15px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-box-item ul {
  display: grid;
  gap: 8px;
  font-size: 16px;
  margin-top: 15px;
}

.solution-item:last-child {
  margin-bottom: 0;
}

/* ======================================
 *  06. Pricing
/* ====================================== */
.pricing-item {
  border-radius: 16px;
  /* background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%); */
  border: 1px solid #bdbdbd;
  backdrop-filter: blur(8px);
  padding: 25px;
  height: 100%;
  /* text-align: center; */
  background: #1c1c1c;
}

.pricing-item h3 {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    margin: 10px 0;
    flex-direction: column;
}

.pricing-tab {
  max-width: fit-content;
  margin: auto;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #2f254e;
}

.pricing-tab button {
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  color: #a6a6c9;
  background: transparent;
}

.pricing-tab button.active {
  background: var(--light-700);
  color: #363659;
}

.pricing-item h4 {
  color: #20b5cc;
  font-size: 44px;
  font-weight: 600;
  background: 40px;
  background: #04040400;
  display: inline;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 20px 0;
  /* background: linear-gradient(90deg, #62d6e5 0, #2c7487 51.04%, #092f44 100%); */
}

.pricing-item h4 sub {
  font-size: 32px;
  font-weight: 400;
}

.pricing-button {
  display: grid;
  gap: 10px;
    margin-top: 15px;
}

.pricing-button button {
  border: 1px solid #2f254e;
  padding: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--light-600);
  border-radius: 8px;
  transition: 0.3s;
}

.pricing-button button:hover {
  background: var(--light-700);
  color: #363659;
}

.pricing-button .chk-btn {
    color: #ffffff;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    background: #20b5cc;
    font-family: "DM Sans", sans-serif;
    border: 1px solid #a3a3a3;
}

.pricing-button .btn{
       width: 100%;
       background: #ffffff;
       border-radius: 10px;
       font-family: "DM Sans", sans-serif;
       font-weight: 600;
       padding: 11px;
       color: #000000;
} 
.pricing-button .btn:hover{
    background: #fff;
}

.pricing-item ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  /* border-bottom: 1px solid #2f254e38; */
  padding: 7px 0;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
}

.pricing-item ul li span{
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #20b5cc;
    padding: 5px;
    border-radius: 50%;
}

.pricing-item ul li span img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-item ul li:last-child {
  border-bottom: 0;
}

.pricing-item ul {
    margin-top: 15px;
    padding: 0;
}

/* ======================================
 *  07. Accordion
/* ====================================== */
.accordion {
  display: grid;
  gap: 8px;
}

.accordion-item:first-of-type .accordion-button {
  /* border-radius: 8px; */
}

.accordion-button:not(.collapsed) {
  background: transparent;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0px 20px 20px;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0;
  border: 0;
  /* background: linear-gradient(180deg, #221736 0%, #211734 100%); */
  overflow: hidden;
  margin: 6px 0;
  border-bottom: 1px solid #ffffff26;
}

.accordion-button {
  background: transparent;
}

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

h2.accordion-header button,
.accordion-button:not(.collapsed) {
  font-size: 20px;
  color: var(--light-500);
  font-weight: 500;
}

.accordion-body {
  color: #ffffff;
  max-width: 778px;
  font-family: sans-serif;
  background: #20b5cc;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
  background-size: 17.33px;
}

.accordion-button::after {
  background-image: url(../img/plus.svg);
  background-size: 17.33px;
}

/* ======================================
 *  08. Newsletter
/* ====================================== */
.ready-section {
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 96px 0;
  border: 1px solid #34294b;
}

.ready-section .title-2 {
  margin-bottom: 20px;
}

.ready-section p {
  margin-bottom: 30px;
  font-size: 20px;
}

/* ======================================
 *  09. Tags
/* ====================================== */
.tags-area ul li a {
  background: #262044;
  color: var(--light-50);
  border: 1px solid #342d59;
  height: unset;
  min-height: unset;
  padding: 8px 16px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  display: block;
  transition: 0.3s;
}

.tags-area ul li a:hover {
  border: 1px solid var(--pink);
  background: var(--gradient-lavender-pink-peach);
  color: var(--light);
}

.tags-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tags-area {
  text-align: center;
  margin-bottom: 64px;
}

.tags-area h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--light-600);
  margin-bottom: 32px;
}

.tags-area:last-child {
  margin-bottom: 0;
}

/* ======================================
 *  10. Policy
/* ====================================== */
.policy-area .pills-tab {
  display: grid;
  justify-content: flex-start;
  gap: 20px;
}

.policy-area .pills-tab button {
  text-align: left;
  color: #363659;
  font-size: 20px;
  padding-left: 15px;
}

.policy-area .pills-tab button.active {
  background: var(--gradient-lavender-pink-peach);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-left: 4px solid #a570ff;
}

.policy-area .tab-content {
  border-left: 1px solid #1f1f33;
  padding-left: 58px;
}

.policy-area .tab-content h3 {
  border-top: 1px solid #1f1f33;
  padding-top: 45px;
  margin-top: 45px;
  font-size: 24px;
  color: #c0c0d8;
  margin-bottom: 25px;
}

.policy-area .tab-content h3:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* ======================================
 *  11. Contact
/* ====================================== */
.contact-content {
  padding: 31px;
  margin-bottom: 48px;

  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
     background: #2c2c2c;
}

.contact-form {
  padding: 31px;
  margin-bottom: 48px;
  border: 1px solid #322a4e;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
}

.contact-content h5 {
}

.contact-content img {
  margin-bottom: 25px;
}

.contact-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 67px;
}

.contact-content h4 {
  font-size: 14px;
  font-weight: 400;
}

.contact-content h5 {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 10px 0;
  color: #ffffff;
  display: inline-block;
  border-bottom: 5px solid #ffffff;
}

.contact-brand {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-brand img {
  margin: 0;
}

.contact-form .form-group input {
    color: var(--white-700);
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    padding: 10px;
    border-radius: 8px !important;
    margin-bottom: 20px;
    color: #000;
    font-family: "DM Sans", sans-serif;
}

.contact-form .form-group .input-group {
  flex-wrap: nowrap;
  gap: 20px;
}

.contact-form .form-check-input {
  background-color: #fff;
  border: 1px solid var(--input-border);
  width: 24px;
  height: 24px;
}

.contact-form .form-check-input:focus {
  box-shadow: none;
  border-color: var(--lavender);
}

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

.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 40px;
  font-family: "DM Sans", sans-serif;
}

.contact-form p {
  margin: 15px 0 35px;
}

/* ======================================
 *  12. 404
/* ====================================== */
.error-area {
  text-align: center;
  padding: 280px 0 0;
}

.error-area h2 {
  margin: 0;
  font-size: 96px;
}

.error-area h3 {
  font-size: 48px;
  color: var(--light-700);
  margin-bottom: 20px;
}

.error-area p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* ======================================
 *  13. Footer
/* ====================================== */
footer {
  padding: 80px 0 0;
  /* border-top: 1px solid #201c39; */
  background: #141414;
}

footer p {
  margin-top: 20px;
  font-size: 15px;
  color: #ffffff;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin: 30px 0;
}

.footer-item h2 {
  font-size: 23px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-item ul li a {
  color: #1a1d1e;
  font-size: 16px;
  font-weight: 400;
}

.footer-item ul li a:hover {
     color: #20b5cc;
}

.footer-item ul.prdct-list {
    column-count: 2;
}

.footer-item ul.prdct-list li{
    padding: 5px 0;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
}

.footer-copyright {
  border-top: 1px solid #ffffff2b;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-copyright ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.footer-copyright ul li a {
  color: var(--light-300);
  font-size: 12px;
}

.footer-copyright ul li a:hover {
  color: var(--lavender);
}

/* ======================================
 *  14. Responsive
/* ====================================== */
@media screen and (max-width: 991px) {
  /* body {
    padding: 0 16px;
    background: linear-gradient(to right,
        rgba(33, 19, 52, 1) 0%,
        50%,
        rgba(38, 23, 64, 1) 100%);
  } */

  header {
    padding: 15px 25px;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 30px;
    background: linear-gradient(180deg, #2b153f 0%, #180f28 100%);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu.show-menu {
    right: 0;
  }

  .mobile-menu nav ul {
    display: grid;
    gap: 15px;
    margin-top: 10px;
    justify-content: left;
  }

  .mobile-menu nav ul li a {
    color: var(--light-700);
  }

  .mobile-menu strong svg {
    position: absolute;
    right: 30px;
    height: auto;
    width: 26px;
    top: 20px;
    cursor: pointer;
    color: var(--light-700);
  }

  .mobile-header span svg {
    height: auto;
    width: 30px;
    cursor: pointer;
    color: var(--light-700);
  }

  .mobile-menu .btn {
    margin-top: 30px;
  }

  .hero-area {
    padding: 70px 0 0;
  }

  .hero-area p {
    font-size: 16px;
  }

  .title {
    font-size: 48px;
  }

  .title-2 {
    font-size: 38px;
  }

  .solution-item {
    margin-bottom: 25px;
  }

  .pl-47,
  .pr-47 {
    padding: 0;
  }

  .mt-30 {
    margin-top: 30px;
  }

  .mtb-192 {
    margin: 95px 0;
  }

  .mt-192 {
    margin-top: 95px;
  }

  .mb-192 {
    margin-bottom: 95px;
  }

  footer {
    margin-top: 95px;
  }

  .footer-copyright ul {
    justify-content: center;
  }

  .footer-copyright p {
    margin: auto;
    text-align: center;
  }

  .footer-copyright {
    margin-top: 95px;
  }

  .ready-section p {
    font-size: 16px;
  }

  .tags-area h2 {
    font-size: 38px;
  }

  .policy-area .tab-content {
    border-left: none;
    padding-left: 0;
    margin-top: 50px;
  }

  .contact-brand {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .error-area p {
    font-size: 16px;
  }

  .error-area h3 {
    font-size: 38px;
  }

  .hero-brand ul {
    justify-content: center;
  }
}

@media screen and (max-width: 430px) {
  .title {
    font-size: 38px;
  }

  .title-2 {
    font-size: 28px;
  }

  .solution-box-list {
    grid-template-columns: 1fr;
  }
}

.hero-chatbot {
  text-align: center;
}

.hero-chatbot img {
  max-width: 400px;
  width: 100%;
}

.checkout_area .form-control{
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: transparent;
    /* border: 1px solid #513c6e; */
    box-shadow: none;
    outline: none;
        color: #ffffff;
    background-color: #95adbb;
    min-height: 50px;
    font-family: "DM Sans", sans-serif;
}

.checkout_area select{
    padding: 12px;
    border-radius: 5px;
    background-color: #95adbb;
    border: 1px solid #fff;
    box-shadow: none;
    outline: none;
    color: #ffffff;
    appearance: auto;
    width: 100%;
    /* border: 1px solid #513c6e; */
    margin-bottom: 15px;
    min-height: 50px;
    font-family: "DM Sans", sans-serif;
}

.checkout_area .form-control::placeholder{
    color: #fff;
}

.creat_account{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.login-section {
  background-image: url("../images/login-bg.jpg");
  background-size: cover;
  height: 100%;
  padding-left: calc(40px + 120 * (100vw - 991px) / 929);
  padding-right: calc(40px + 120 * (100vw - 991px) / 929);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
  padding-top: 52px;
}
@media (max-width: 991px) {
  .login-section {
    padding-left: calc(15px + 25 * (100vw - 320px) / 1600);
    padding-right: calc(15px + 25 * (100vw - 320px) / 1600);
    height: auto;
    padding-bottom: 0;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.login-section .row {
  width: 100%;
}
.login-section .login-box {
  background: rgba(58, 237, 177, 0.05);
  border: 1px solid rgba(var(--title-color), 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: calc(30px + 20 * (100vw - 991px) / 929);
  height: 100%;
  min-height: calc(100vh - 150px);
}
@media (max-width: 991px) {
  .login-section .login-box {
    height: auto;
    min-height: unset;
    padding: 30px 20px;
    margin-top: calc(60px + 50 * (100vw - 320px) / 1600);
    margin-bottom: calc(60px + 50 * (100vw - 320px) / 1600);
  }
}
.login-section .login-box h2 {
  font-size: calc(26px + 4 * (100vw - 991px) / 929);
  font-weight: 500;
  color: rgba(var(--white), 1);
  margin-bottom: calc(15px + 20 * (100vw - 991px) / 929);
  text-align: center;
  margin-top: calc(-3px + -3 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .login-section .login-box h2 {
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
  }
}
.login-section .login-box h2 span {
  color: rgba(var(--theme-color), 1);
}
.login-section .login-box .nav-tabs {
  border-bottom: 2px solid rgba(var(--theme-color), 0.1);
  margin-bottom: calc(25px + 5 * (100vw - 320px) / 1600);
}
.login-section .login-box .nav-tabs .nav-link {
  color: rgba(var(--content-color), 1);
  width: 100%;
  background-color: transparent;
  border: none;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  outline: none;
}
.login-section .login-box .nav-tabs .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.login-section .login-box .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  border-bottom: 2px solid rgba(var(--theme-color), 1);
  width: 100%;
  left: 0;
  bottom: 0;
}
.login-section .login-box .nav-tabs .nav-item {
  width: 50%;
  text-align: center;
}
.login-section .social-btn {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.login-section .social-btn li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(var(--white), 0.8);
  border-radius: 8px;
}
.login-section .social-btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: calc(40px + 10 * (100vw - 320px) / 1600);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login-section .btn-absolute {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: calc(100% - 100px);
}
@media (max-width: 991px) {
  .login-section .btn-absolute {
    position: relative;
    left: unset;
    bottom: unset;
    width: 100%;
  }
}

.login-animation {
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .login-animation {
    height: calc(360px + 140 * (100vw - 320px) / 1600);
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    margin-bottom: 40px;
  }
}
.login-animation .img-base {
  position: absolute;
  bottom: 0;
}
.login-animation .img-light {
  position: absolute;
  bottom: calc(60px + 30 * (100vw - 991px) / 929);
  mix-blend-mode: color-dodge;
}
@media (max-width: 991px) {
  .login-animation .img-light {
    bottom: 60px;
  }
}
.login-animation .img-face {
  position: absolute;
  bottom: calc(30px + 50 * (100vw - 991px) / 929);
  left: calc(30px + 60 * (100vw - 991px) / 929);
}
[dir=rtl] .login-animation .img-face {
  left: unset;
  right: calc(30px + 60 * (100vw - 991px) / 929);
}
@media (max-width: 991px) {
  .login-animation .img-face {
    bottom: 30px;
    left: 120px;
  }
  [dir=rtl] .login-animation .img-face {
    left: unset;
    right: 120px;
  }
}
.login-animation .img-face img {
  -webkit-animation: flip 3s linear infinite alternate;
          animation: flip 3s linear infinite alternate;
  mix-blend-mode: color-dodge;
}
@keyframes flip{
    0% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
100% {
    -webkit-transform: none;
    transform: none;
}
}

.login-section .btn.btn-secondary{
    margin-top: 15px;
}

.login-section input{
    background: transparent;
    border-radius: 4px;
    padding: 12px;
    box-shadow: none;
    outline: none;
    color: #fff;
}

.login-section input::placeholder{
    color: #fff;
}

.login-section input:focus{
    background-color: transparent;
    box-shadow: none;
    color: #fff;
}

/* Comparison Table */

.comparison_sec table {
     border-collapse: collapse;
    border-spacing: 0;
    width: 2000px;
    border: 1px solid #686868;
    border-radius: 10px;
    background: #ddd;
    overflow: hidden;
    background: rgb(5, 38, 56);
    background: linear-gradient(49deg, rgb(32 32 32) 0%, rgb(39 39 40) 41%, rgb(93 86 100) 73%, rgb(6 207 170) 100%);
}

.comparison_sec th,.comparison_sec td {
  text-align: center;
  padding: 9px 20px;
}

.comparison_sec th:first-child, .comparison_sec td:first-child {
  text-align: left;
  font-family: "DM Sans", sans-serif;
}

.comparison_sec th{
     border-right: 1px solid #ffffff63;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    background: #101010;
    padding: 15px 20px;
}

.comparison_sec .fa-check {
  color: #ffffff;
}

.comparison_sec .fa-times {
  color: #ffffff;
}

.comparison_sec tr{
    background-color: transparent;
    padding: 0;
}

.comparison_sec td{
    border-top: 1px solid #ffffff54;
    border-bottom: 1px solid #ffffff4f;
    border-right: 1px solid #ffffff4a;
    color: #ffffff;
}

.comp-table{
  overflow: auto;
}

/* Packages Page */

.feature-section .feature-box {
    background-color: var(--light-800);
    padding: 30px;
    border-radius: 5px;
    position: relative;
    height: 100%;
    background: rgb(5,26,37);
    background: rgb(5,38,56);
    background: #222222;
    border-radius: 20px;
    text-align: center;
}

.feature-section .feature-box .feature-top h3 {
    margin-bottom: 0;
    color: #ffffff;
    position: relative;
    /* padding-left: 30px; */
    padding: 20px 0;
    font-size: 24px;
}

.feature-section .feature-box .feature-top {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-section .feature-box .feature-top .feature-icon {
    width: calc(62px + 10*(100vw - 320px) / 1600);
    height: calc(62px + 10*(100vw - 320px) / 1600);
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 20px 0 0;
    background: #20b5cc;
    padding: 10px;
    border-radius: 40px;
    text-align: center;
    display: flex;
    margin: 0 auto;
    border-radius: 30px 30px 30px 0;
}

.feature-section .feature-box .feature-top .feature-icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 59%;
    filter: invert(0.9);
}

.feature-section .feature-box p {
    color: #ffffff;
    margin-bottom: 25px;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    line-height: 1.5;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
}

.feature-section .feature-box .link-overflow {
    width: 100%;
    /* overflow: hidden; */
}

.feature-section .feature-box:after {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    /* background: linear-gradient(98deg,
      #a570ff 0%,
      #ff6eb2 50%,
      #ffad66 100%); */
    border-radius: 4px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.feature-section .feature-box a svg {
    fill: rgba(59, 237, 178, 1);
    margin-left: 34px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box a {
    font-size: 16px;
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    /* -webkit-transform: translateX(-112px); */
    /* transform: translateX(-112px); */
    transition: all 0.5s ease;
    align-items: center;
    color: #ffffff;
    background: #20b5cc;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

.feature-section .feature-box:hover a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}



.feature-section .fa-long-arrow-alt-right{
    font-size: 25px;
    margin-left: 15px;
    transition: 0.5s all;
    background: linear-gradient(98deg,      #a570ff 0%,      #ff6eb2 50%,      #ffad66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-section .feature-box:hover .fa-long-arrow-alt-right{
    margin-left: 15px;
}

.feature-section .feature-box .feature-top .feature-icon .outline-icon {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box .feature-top .feature-icon .bold-icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    transform: translate(-50%, -50%) scaleX(-1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box:hover .feature-icon .outline-icon {
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    transform: translate(-50%, -50%) scaleX(-1);
}

.feature-section .feature-box:hover .feature-icon .bold-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* Checkout */

.order-summary-total{
}
.order-summary{
	padding: 40px;
	border-radius: 16px;
	/* background: linear-gradient(180deg, rgba(141, 141, 185, 0.16) 0%, rgba(8, 8, 12, 0) 100%); */
	border: 1px solid #d1d1d1;
	backdrop-filter: blur(8px);
}

.order-summary-total{
}

.check-sum td{
	background: #d9d9d8;
	border: none;
}

.check-sum td{
	background: transparent;
	border: none;
	color: #d9d9d8;
	font-family: "DM Sans", sans-serif;
}

#order-cart-section tr{
    border-top: 1px solid #74747440;
}

.accpt{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-content p a{
    color: #ffffff;
}

.contact-content p{
    color: #ffffff;
}

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #222222;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: #000000;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #000000;
    }
    .hero-area{
          background: #0c173e;
          background-size: cover;
          padding: 130px 0 120px;
          margin-top: -90px;
    }
  
    .order_box label{
            font-family: "DM Sans", sans-serif;
    }
    .order-bttn{
        background: #ddd;
        font-size: 20px;
    }
    .order-summary input::placeholder {
  color: #000;
}
.order-summary h2{
    font-size: 30px;
}
.order-summary h3{
    font-size: 30px;
}
.contact-form{
    background: #ffffff;
    border: 1px solid #ddd;
}
.contact-form h2{
    font-size: 30px;
}
.contact-form input{
    font-size: 16px;
    background: #ffffff;
}
.order_details .order-summary{
    border: 0;
}
.login-area {
    background: #efefef;
    padding: 20px;
}
.login-area label{
    font-size: 30px;
        font-family: "DM Sans", sans-serif;
}
.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e);
}
.maintb{
    width: 33%;
}
.subtb{
    width: 60%;
}
.faq-sec .accordion-collapse {
    background: #464646;
    border: 0;
}
.cont-men a{
       font-size: 17px;
    color: #000;
    font-family: fantasy;
    font-weight: 200;
}
.cont-men i {
    color: #8d8d8d;
    font-size: 20px;
    margin-right: 6px;
}
.whos-tx ul{
    margin-bottom: 40px;
}
.produ-test h4{
    font-size: 20px;
}
.produ-test h4 img{
        width: 30px;
    margin-right: 10px;
}
.prod-img-sec img{
      border-radius: 30px 30px 30px 0;
    background: #20b5cc;
    padding: 10px;
    height: 80px;
    width: 80px !important;
}

.pricing-item:hover .pricing-item img {
    background: #ffffff;

}