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

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Black.otf);
  font-weight: 800;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Extrabold.otf);
  font-weight: 900;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Extralight.otf);
  font-weight: 200;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Light.otf);
  font-weight: 300;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Semibold.otf);
  font-weight: 600;
}

@font-face {
  font-family: "switzer";
  src: url(../fonts/Switzer-Thin.otf);
  font-weight: 100;
}

body {
  font-family: "switzer", sans-serif;
  background: white;
}

a {
  text-decoration: none;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 29px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-btn span {
  position: relative;
  display: block;
  height: 2px;
  background: #101828;
  pointer-events: none;
  width: 100%;
  transition: 0.2s;
}

.menu-btn span::before {
  content: "";
  width: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: -10px;
  height: 100%;
  transition: 0.2s;
  background: #101828;
}

.menu-btn span::after {
  content: "";
  width: 100%;
  transition: 0.2s;
  position: absolute;
  display: block;
  left: 0;
  bottom: -10px;
  height: 100%;
  background: #101828;
}

.m-show {
  display: none !important;
}

.head-nav.open {
  width: 250px;
}

.menu-btn.open span {
  transform: rotate(-45deg);
}

.menu-btn.open span::before {
  opacity: 0;
  top: 0;
}

.menu-btn.open span::after {
  top: 0;
  transform: rotate(90deg);
}

.wow {
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

.cus-grid {
  display: grid;
  width: 100%;
}

/* ::-webkit-scrollbar {
    width: 0px;
    height: 0;
} */

h4 {
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -0.03em;
  color: #101828;
}

h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #101828;
}

p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #4d4d4f;
}

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

.gc3 {
  grid-template-columns: repeat(3, 1fr);
}

.gc4 {
  grid-template-columns: repeat(4, 1fr);
}

.gc5 {
  grid-template-columns: repeat(5, 1fr);
}

.gc6 {
  grid-template-columns: repeat(6, 1fr);
}

.gc7 {
  grid-template-columns: repeat(7, 1fr);
}

.gs1 {
  grid-gap: 10px;
}

.gs2 {
  grid-gap: 20px;
}

.gs3 {
  grid-gap: 30px;
}

.gs4 {
  grid-gap: 40px;
}

.gs5 {
  grid-gap: 50px;
}

.gs6 {
  grid-gap: 60px;
}

.gs7 {
  grid-gap: 70px;
}

.account-header {
  padding-top: 20px;
  width: 100%;
  padding-bottom: 40px;
}

.account-form-holder {
  width: 100%;
  max-width: 400px;
}

.account-form-holder form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-form-holder form h4 {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #111111;
  margin: 0;
}

.account-form-holder form ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.account-form-holder form ul li {
  display: flex;
  align-items: center;
  gap: 2px;
}

.account-form-holder form ul li label {
  white-space: nowrap;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #667085;
}

fieldset {
  position: relative;
}

#togglePassword {
  position: absolute;
  right: 10px;
  top: 15px;
}

#toggleConfirmPassword {
  position: absolute;
  right: 10px;
  top: 15px;
}

.account-form-holder form ul li a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #101828;
}

.main-account-page-holder {
  min-height: 100svh;
  padding: 0 0 80px 0;
  background-color: #f9fafb;
  position: relative;
  z-index: 1;
}

.main-account-page-holder::before {
  width: calc(40% - 20px);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: white;
}

.account-form-holder form input {
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  width: 100%;
  padding: 10px 14px;
  font-weight: 400;
  font-size: 16px;
}

.account-form-holder form input[type="checkbox"] {
  width: auto;
}

.sign-up-pass {
  top: 40px !important;
}

.account-form-holder form select {
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  width: 100%;
  padding: 10px 14px;
  font-weight: 400;
  font-size: 16px;
}

.account-form-holder form label {
  margin-bottom: 0;
  display: block;
}

.account-form-holder form input::placeholder {
  color: #667085;
}

.account-form-holder form button[type="submit"] {
  all: unset;
  background: #111111;
  border: 1px solid #111111;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
  color: #ffffff;
}

.separator {
  width: 100%;
  display: block;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #667085;
  position: relative;
  margin: 5px 0;
}

.separator::before {
  content: "";
  width: calc(50% - 25px);
  position: absolute;
  left: 0;
  top: 7px;
  height: 1px;
  background: #eaecf0;
}

.separator::after {
  content: "";
  width: calc(50% - 25px);
  position: absolute;
  right: 0;
  top: 7px;
  height: 1px;
  background: #eaecf0;
}

.social-login-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-login-btn button {
  all: unset;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  width: 100%;
  padding: 10px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-sizing: border-box;
}

.already-have {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.already-have p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #667085;
}

.already-have a {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #101828;
}

.account-right {
  width: 100%;
}

.account-right h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #101828;
  margin-bottom: 60px;
}

.account-right h1 span {
  background: linear-gradient(57.7deg, #c33764 27.95%, #2535b4 76.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.account-right img {
  width: 100%;
  object-fit: contain;
  padding: 0 1rem;
}

.account-right ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 0 0;
  padding: 0;
}

.account-right ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.account-right ul li p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #101828;
}

.header {
  background: white;
  padding: 20px 0;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: block;
  width: 150px;
  cursor: pointer;
}

.logo img {
  width: 100%;
}

.header-content nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-content nav ul li {
  display: flex;
  list-style: none;
}

.header-content ul li a {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #101828;
  text-decoration: none;
}

.head-btn {
  display: flex;
  gap: 20px;
}

.head-btn a {
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #101828;
  padding: 7px 15px;
  text-decoration: none;
  border: 1px solid #101828;
  border-radius: 4px;
}

a.site-btn {
  background: #101828 !important;
  color: white !important;
  padding: 7px 15px;
  border: 1px solid #101828;
  border-radius: 4px;
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

a.site-btn2 {
  background: #101828 !important;
  color: white !important;
  padding: 7px 15px;
  border: 1px solid #101828;
  border-radius: 4px;
  display: block;
  width: fit-content;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.banner {
  background-color: #f9fafb;
  width: 100%;
  padding: 80px 0 0 0;
  background-image: url(../images/banner-bg.svg);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
  background-blend-mode: difference;
}

.banner-1 {
  background-color: #fff;
  width: 100%;
  padding: 80px 0 0 0;
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
  background-blend-mode: difference;
}

.banner-contnet {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.banner-contnet h1 {
  font-weight: 700;
  font-size: 72px;
  text-align: center;
  color: #101828;
}

.banner-contnet h2 {
  font-weight: 700;
  font-size: 60px;
  text-align: left;
}
.color-text {
  background: linear-gradient(57.7deg, #c33764 27.95%, #2535b4 76.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.color-text-2 {
  background: linear-gradient(57.7deg, #c33764 60.95%, #2535b4 108.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

h3 {
  font-weight: 700;
  font-size: 56px;
  line-height: 101.1%;
  color: #101828;
}

.banner-contnet p {
  color: #344054;
  opacity: 0.9;
}

.banner-contnet ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 20px 0 80px 0;
  gap: 20px;
}

.banner-contnet ul li {
  list-style: none;
}

.headphone-img {
  width: 110px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: inline-block;
}

.banner-contnet ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #1a284f;
  text-decoration: none;
}

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

.logo-section {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 40px 0;
}

.logo-section ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.logo-section ul li {
  list-style: none;
}

.trust-logo-holder {
  display: flex;
  align-items: center;
}

.today-wave-img {
  width: 100%;
}

.today-wave-img img {
  width: 100%;
}

.trust-logo-holder P {
  white-space: nowrap;
  margin-right: 20px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #596576;
}

section {
  padding: 40px 0;
  position: relative;
}

.logo-section ul li p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 0;
  color: #596576;
}

.logo-section ul li img {
  width: auto;
}

.wave-img {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

.cd-holder {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0 auto;
}

.cd-holder ul {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(10, 1fr);
}

.cd-holder ul li {
  list-style: none;
}

.cd-holder ul li img {
  width: 100%;
  aspect-ratio: 1/1;
}

.heared-box {
  width: 100%;
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  gap: 10px;
  height: 100%;
}

.heared-box img {
  width: 24px;
}

.heared-box h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #101828;
  margin: 0;
}

.heared-box p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #344054;
  opacity: 0.6;
}

.tech-img-holder {
  width: 100%;
  margin: 40px 0 80px 0;
}

.tech-img-holder ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.tech-img-holder ul li {
  width: 100%;
  list-style: none;
}

.tech-img-holder ul li img {
  width: 100%;
}

.tech-img-holder ul li:first-child img {
  border-top-left-radius: 50px;
}

.tech-img-holder ul li:last-child img {
  border-bottom-right-radius: 50px;
}

.special-list {
  width: 100%;
}

.special-list-sec {
  background: #f9fafb;
  padding: 80px 0;
}

.special-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.special-list ul li {
  display: flex;
  gap: 10px;
}

.special-list ul li img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.special-list ul li p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #344054;
}

.off-canvas-img {
  width: 40%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.special-list-sec .off-canvas-img {
  top: 0;
  left: 0;
  border-radius: 0px 32px 32px 0px;
}

.noise-sec {
  padding: 80px 0;
}

.noise-sec p {
  margin: 30px 0;
}

.full-img {
  width: 100%;
  object-fit: cover;
}

.effective ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.effective ul li {
  list-style: none;
  background: #f9fafb;
  border-radius: 8px;
  padding: 20px;
}

.effective ul li p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #344054;
  padding-left: 20px;
  position: relative;
}

.effective ul li p::before {
  width: 5px;
  height: 5px;
  background: #101828;
  border-radius: 50px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 12px;
}

.start-today-sec {
  width: 100%;
  padding: 80px 0;
  background: #f9fafb;
}

.start-today-sec .off-canvas-img {
  top: 0;
  right: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.start-today-sec {
  text-align: center;
}

.start-today-sec a {
  margin: 30px auto;
}

.schedual-sec {
  padding: 80px 0;
}

.schedual-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #344054;
  margin: 0;
}

.schedual-box {
  width: 100%;
  display: flex;
  gap: 15px;
}

.schedual-box span {
  background: #eaecf0;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #101828;
}

.schedual-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.schedual-list ul li {
  list-style: none;
}

.pricing-section a {
  display: block;
  background: linear-gradient(57.7deg, #c33764 27.95%, #2535b4 76.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 400;
  font-size: 24px;
}

.get-in-touch-sec {
  margin-bottom: 80px;
}

.get-in-touch-box {
  background: #101828;
  border-radius: 32px;
  padding: 80px 20px;
}

.get-in-touch-box {
  text-align: center;
}

.get-in-touch-box h4 {
  color: white;
  margin-bottom: 40px;
}

.touch-box {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.touch-box p,
.touch-box a {
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  color: #fcfcfd;
  text-decoration: none;
}

.touch-box img {
  margin-bottom: 20px;
}

.footer {
  padding-bottom: 40px;
}

.footer-content {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid black;
}

.foot-social {
  width: 100%;
}

.foot-social ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.foot-social ul li {
  list-style: none;
}

.foot-social ul li a {
  background: #eaecf0;
  border-radius: 50px;
  display: block;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.foot-social ul li a:hover {
  background: #101828;
}

.foot-social ul li a:hover img {
  filter: invert(1);
}

.footer-content {
  width: 100%;
}

.footer-content h6 {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  margin: 0;
  color: #000000;
  /* hideme */
}

ul.foot-nav {
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul.foot-nav li {
  list-style: none;
}

ul.foot-nav li a {
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #1d2939;
  text-decoration: none;
  transition: 0.2s;
}

ul.foot-nav li a:hover {
  color: #c33764;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.foot-bottom p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #667085;
}

.trusted-sec {
  padding: 80px 0;
}

.trusted-logo-img {
  width: 100%;
  max-width: 990px;
  margin: 20px auto 0 auto;
}

.trusted-logo-img img {
  width: 100%;
}

.how-it-work {
  background-color: #f9fafb;
  width: 100%;
  padding: 80px 0;
  background-image: url(../images/banner-bg.svg);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
  background-blend-mode: difference;
}

.work-box-holder {
  width: 100%;
  max-width: 767px;
  margin: 20px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-box {
  width: 100%;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  padding: 25px 35px;
}

.work-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.work-box ul li:last-child {
  justify-self: flex-end;
  margin-left: auto;
}

.work-box ul li {
  list-style: none;
}

.work-box ul li span {
  background: #eaecf0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #101828;
}

.work-box ul li h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #101828;
  margin-bottom: 0px;
}

.work-box ul li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #344054;
  margin: 0;
}

.how-work-img {
  background: linear-gradient(57.7deg, #c33764 27.95%, #2535b4 76.15%);
  border-radius: 50px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.how-work-img img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pricing-section {
  padding: 80px 0;
}

.billing-switch {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.billing-switch ul {
  margin: 0;
  padding: 0;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 20px;
}

.billing-switch ul li {
  list-style: none;
  text-align: left;
}

.billing-switch ul li p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #344054;
}

.custom-switch {
  padding-left: 2.25rem;
  margin-right: -12px;
}

.billing-switch ul li span {
  background: #111322;
  border-radius: 16px;
  padding: 2px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  color: #eff1f5;
}

.top-cost {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.top-cost p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #101828;
}

.top-cost p span {
  margin-left: 5px;
}

.range-slider-holder {
  margin: 40px auto;
  max-width: 550px;
  width: 100%;
}

.range-slider-holder ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-slider-holder ul li {
  list-style: none;
}

.range-slider-holder ul li p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #667085;
}

.slider-bar {
  width: 100%;
}

.slider-bar input {
  width: calc(100% - 70px);
  margin: 0 auto;
}

.impression-holder {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.impression-box {
  width: fit-content;
  display: flex;
  text-align: left;
  gap: 20px;
}

.impression-box p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  color: #344054;
  white-space: nowrap;
}

.impression-box span {
  display: block;
  font-weight: 600;
  height: fit-content;
  font-size: 21px;
  color: #344054;
  padding: 8px 15px;
  border-radius: 10px;
  border: 2px solid #d0d5dd;
}

.pricing-section button {
  all: unset;
  margin: 30px auto 20px auto;
  background: #101828;
  border-radius: 4px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #ffffff;
  display: block;
  width: fit-content;
}

.price-bottom-parah {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #98a2b3;
  margin: 0;
}

.generate-header {
  padding: 80px 0;
  border: none;
}

.generate-section {
  padding: 40px 0;
}

.field-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.field-box label {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
  color: #101828;
}

.field-box span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  color: #344054;
  margin-bottom: 5px;
}

.field-box textarea {
  min-height: 100px;
}

.field-box textarea,
.field-box input[type="text"] {
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 5px 5px;
}

.generate-section button {
  text-decoration: none;
  background: #101828;
  border-radius: 4px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #ffffff;
  display: block;
  width: fit-content;
  margin-top: 60px;
}

.generate-right-img {
  width: 100%;
  text-align: center;
}

.generate-right-img img {
  width: 100%;
  display: block;
  max-width: 140px;
  height: 100%;
  margin: 180px auto 0 auto;
  object-fit: contain;
}

.generate-back a {
  font-weight: 500;
  font-size: 16px;
  color: #344054;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  text-decoration: none;
}

.result-alert-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fcfcfd;
  border: 1px solid #f9fafb;
  padding: 8px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.result-alert-box p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #1d2939;
}

.result-box {
  width: 100%;
  margin: 30px 0;
}

.result-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-box ul li {
  list-style: none;
}

.result-box ul li h4 {
  font-weight: 700;
  font-size: 24px;
  color: #101828;
}

.result-box ul li button {
  all: unset;
  font-weight: 700;
  font-size: 14px;
  color: #667085;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid #d0d5dd;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-box ul li button:active {
  color: white;
  background: linear-gradient(57.7deg, #c33764 27.95%, #2535b4 76.15%);
}

.response-box {
  width: 100%;
  background: #fcfcfd;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  padding: 15px;
}

.response-box p {
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  color: #344054;
}
.launch-btn {
  text-decoration: none;
  background: #101828;
  border-radius: 4px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #ffffff;
  display: block;
  width: fit-content;
  margin-top: 60px;
}

/* SUPPORT  */
#support_ticket,
#support-w-ticket {
  cursor: pointer;
}

.support-ticket-links {
  height: 0.5px;
  opacity: 0;
  transition: 1s ease;
  overflow: hidden;
  cursor: pointer;
  margin-left: 5px;
  margin-top: 5px;
}

ul.support-ticket-links li a {
  font-weight: 400;
  font-size: 18px;
}

.support-ticket-links.show-links {
  height: 150px;
  opacity: 1;
}

.foot-bottom .foot-logo {
  width: 200px;
}

.foot-bottom .foot-logo img {
  width: 100%;
}

.carousel-item {
  display: block;
  width: auto;
  height: auto;
  max-width: 130px;
  max-height: 130px;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.adp {
  width: 100vw;
  height: 100vh;
  text-align: center;
  top: 0;
  left: 0;
  padding-top: 5rem;
  position: fixed;
  background: white;
  z-index: 999;
}

body:has(.adp) {
  overflow-y: hidden;
}
