/* variables  */
:root {
  /* --default-font-family: "Nunito Sans", sans-serif; */
  --font-nunito: "Nunito Sans", sans-serif;
  --color-clifford: #da373d;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #1a2342;
  --color-secondary: #f0f7fa;
  --color-info: #2a94b2;
  --color-success: #198754;
  /* --color-warning: #eda000; */
  --color-warning: #f7be3a;
  --color-warning-50: rgba(247, 190, 58, 0.5);
  --color-error: #d73c5c;
  --color-dark: #3c3c3c;
  --color-light: #fbeaed;
  --color-header: #1a2342;
  --drop-shadow-hero: 0 4px 12px rgba(0, 0, 0, 0.09);
  --breakpoint-2xl: 120rem;
}

* {
  box-sizing: border-box;
}
*:after,
*:before {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background-color: #f6f6f7;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
body {
  padding-top: 65px;
}

a,
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
  outline: none !important;
}
a:focus,
a:active {
  background-color: transparent;
  outline: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* Grid */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/*  */
.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.order-none {
  order: 0;
}
/* justify content */
.justify-normal {
  justify-content: normal;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

/* justify items */
.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

/* align items */
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* align content */
.content-normal {
  align-content: normal;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.content-baseline {
  align-content: baseline;
}

.content-stretch {
  align-content: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.self-baseline {
  align-self: baseline;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

gap-0 {
  gap: 0px;
}

.gap-x-0 {
  column-gap: 0px;
}

.gap-y-0 {
  row-gap: 0px;
}

.gap-px {
  gap: 1px;
}

.gap-x-px {
  column-gap: 1px;
}

.gap-y-px {
  row-gap: 1px;
}

.gap-0-5 {
  gap: 2px;
}

.gap-x-0-5 {
  column-gap: 2px;
}

.gap-y-0-5 {
  row-gap: 2px;
}

.gap-1 {
  gap: 4px;
}

.gap-x-1 {
  column-gap: 4px;
}

.gap-y-1 {
  row-gap: 4px;
}

.gap-1-5 {
  gap: 6px;
}

.gap-x-1-5 {
  column-gap: 6px;
}

.gap-y-1-5 {
  row-gap: 6px;
}

.gap-2 {
  gap: 8px;
}

.gap-x-2 {
  column-gap: 8px;
}

.gap-y-2 {
  row-gap: 8px;
}

.gap-2-5 {
  gap: 10px;
}

.gap-x-2-5 {
  column-gap: 10px;
}

.gap-y-2-5 {
  row-gap: 10px;
}

.gap-3 {
  gap: 12px;
}

.gap-x-3 {
  column-gap: 12px;
}

.gap-y-3 {
  row-gap: 12px;
}

.gap-3-5 {
  gap: 14px;
}

.gap-x-3-5 {
  column-gap: 14px;
}

.gap-y-3-5 {
  row-gap: 14px;
}

.gap-4 {
  gap: 16px;
}

.gap-x-4 {
  column-gap: 16px;
}

.gap-y-4 {
  row-gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-x-5 {
  column-gap: 20px;
}

.gap-y-5 {
  row-gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-x-6 {
  column-gap: 24px;
}

.gap-y-6 {
  row-gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.gap-x-7 {
  column-gap: 28px;
}

.gap-y-7 {
  row-gap: 28px;
}

.gap-8 {
  gap: 32px;
}

.gap-x-8 {
  column-gap: 32px;
}

.gap-y-8 {
  row-gap: 32px;
}
.gap-9 {
  gap: 36px;
}

.gap-x-9 {
  column-gap: 36px;
}

.gap-y-9 {
  row-gap: 36px;
}
.gap-10 {
  gap: 40px;
}

.gap-x-10 {
  column-gap: 40px;
}

.gap-y-10 {
  row-gap: 40px;
}

/* Height */
.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-screen {
  height: 100vh;
}

.h-18 {
  height: 72px;
}

.h-6 {
  height: 24px;
}
.h-8 {
  height: 32px;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.max-h-0 {
  max-height: 0px;
}

.max-h-px {
  max-height: 1px;
}

.max-h-full {
  max-height: 100%;
}

.max-h-screen {
  max-height: 100vh;
}

.h-0 {
  height: 0px;
}

.h-px {
  height: 1px;
}

/* Height */
.w-1-3 {
  width: 33.333333%;
}
.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.max-w-none {
  max-width: none;
}

.max-w-full {
  max-width: 100%;
}

.w-0 {
  width: 0px;
}

.w-px {
  width: 1px;
}

.max-w-360 {
  max-width: 360px;
}
.min-w-52 {
  min-width: 208px;
}

/* Position */
.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

/* Top / Right / Bottom / Left */
.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

/* Font Family */
.font-nunito {
  font-family: var(--font-nunito);
}

/* Font Size */
.text-xs {
  font-size: 12px;
  line-height: 16px;
}

.text-sm {
  font-size: 15px;
  line-height: 23px;
}

.text-base {
  font-size: 16px;
  line-height: 30px;
}

.text-lg {
  font-size: 17px;
  line-height: 28px;
}

.text-xl {
  font-size: 20px;
  line-height: 28px;
}

.text-2xl {
  font-size: 26px;
  line-height: 34px;
}

.text-3xl {
  font-size: 28px;
  line-height: 51px;
}

.text-4xl {
  font-size: 36px;
  line-height: 46px;
}

.text-5xl {
  font-size: 51px;
  line-height: 60px;
}

.text-6xl {
  font-size: 58px;
  line-height: 60px;
}

/* Line Height */
.leading-3 {
  line-height: 12px;
}

.leading-4 {
  line-height: 16px;
}

.leading-5 {
  line-height: 20px;
}

.leading-6 {
  line-height: 24px;
}

.leading-7 {
  line-height: 28px;
}

.leading-8 {
  line-height: 32px;
}

.leading-9 {
  line-height: 36px;
}

.leading-10 {
  line-height: 40px;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

/* Text align */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/* Text transform */
.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Text Overflow */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

/* Font Style */
.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

/* Font weight */
.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

/* List Style Type */
.list-none {
  list-style-type: none;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

/* Text Decoration */
.underline {
  text-decoration-line: underline;
}

.overline {
  text-decoration-line: overline;
}

.line-through {
  text-decoration-line: line-through;
}

.no-underline {
  text-decoration-line: none;
}

/* Word Break */
.break-normal {
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.break-keep {
  word-break: keep-all;
}

/* Margin */
.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.ms-0 {
  margin-inline-start: 0px;
}

.me-0 {
  margin-inline-end: 0px;
}

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

.mr-0 {
  margin-right: 0px;
}

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

.m-1 {
  margin: 4px;
}

.mx-1 {
  margin-left: 4px;
  margin-right: 4px;
}

.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.ms-1 {
  margin-inline-start: 4px;
}

.me-1 {
  margin-inline-end: 4px;
}

.mt-1 {
  margin-top: 4px;
}

.mr-1 {
  margin-right: 4px;
}

.mb-1 {
  margin-bottom: 4px;
}

.m-1-5 {
  margin: 6px;
}

.mx-1-5 {
  margin-left: 6px;
  margin-right: 6px;
}

.my-1-5 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.ms-1-5 {
  margin-inline-start: 6px;
}

.me-1-5 {
  margin-inline-end: 6px;
}

.mt-1-5 {
  margin-top: 6px;
}

.mr-1-5 {
  margin-right: 6px;
}

.mb-1-5 {
  margin-bottom: 6px;
}

.ml-1-5 {
  margin-left: 6px;
}

.m-2 {
  margin: 8px;
}

.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.ms-2 {
  margin-inline-start: 8px;
}

.me-2 {
  margin-inline-end: 8px;
}

.mt-2 {
  margin-top: 8px;
}

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

.mb-2 {
  margin-bottom: 8px;
}

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

.m-2-5 {
  margin: 10px;
}

.mx-2-5 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-2-5 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.ms-2-5 {
  margin-inline-start: 10px;
}

.me-2-5 {
  margin-inline-end: 10px;
}

.mt-2-5 {
  margin-top: 10px;
}

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

.mb-2-5 {
  margin-bottom: 10px;
}

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

.m-3 {
  margin: 12px;
}

.mx-3 {
  margin-left: 12px;
  margin-right: 12px;
}

.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.ms-3 {
  margin-inline-start: 12px;
}

.me-3 {
  margin-inline-end: 12px;
}

.mt-3 {
  margin-top: 12px;
}

.mr-3 {
  margin-right: 12px;
}

.mb-3 {
  margin-bottom: 12px;
}

.ml-3 {
  margin-left: 12px;
}

.m-4 {
  margin: 16px;
}

.mx-4 {
  margin-left: 16px;
  margin-right: 16px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.ms-4 {
  margin-inline-start: 16px;
}

.me-4 {
  margin-inline-end: 16px;
}

.mt-4 {
  margin-top: 16px;
}

.mr-4 {
  margin-right: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.ml-4 {
  margin-left: 16px;
}

.m-5 {
  margin: 20px;
}

.mx-5 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ms-5 {
  margin-inline-start: 20px;
}

.me-5 {
  margin-inline-end: 20px;
}

.mt-5 {
  margin-top: 20px;
}

.mr-5 {
  margin-right: 20px;
}

.mb-5 {
  margin-bottom: 20px;
}

.ml-5 {
  margin-left: 20px;
}

.m-6 {
  margin: 24px;
}

.mx-6 {
  margin-left: 24px;
  margin-right: 24px;
}

.my-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.ms-6 {
  margin-inline-start: 24px;
}

.me-6 {
  margin-inline-end: 24px;
}

.mt-6 {
  margin-top: 24px;
}

.mr-6 {
  margin-right: 24px;
}

.mb-6 {
  margin-bottom: 24px;
}

.ml-6 {
  margin-left: 24px;
}

.m-7 {
  margin: 28px;
}

.mx-7 {
  margin-left: 28px;
  margin-right: 28px;
}

.my-7 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.ms-7 {
  margin-inline-start: 28px;
}

.me-7 {
  margin-inline-end: 28px;
}

.mt-7 {
  margin-top: 28px;
}

.mr-7 {
  margin-right: 28px;
}

.mb-7 {
  margin-bottom: 28px;
}

.ml-7 {
  margin-left: 28px;
}

.m-8 {
  margin: 32px;
}

.mx-8 {
  margin-left: 32px;
  margin-right: 32px;
}

.my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.ms-8 {
  margin-inline-start: 32px;
}

.me-8 {
  margin-inline-end: 32px;
}

.mt-8 {
  margin-top: 32px;
}

.mr-8 {
  margin-right: 32px;
}

.mb-8 {
  margin-bottom: 32px;
}
.mt-9 {
  margin-top: 36px;
}
.mb-9 {
  margin-bottom: 36px;
}

.ml-8 {
  margin-left: 32px;
}

.m-10 {
  margin: 40px;
}

.mx-10 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-10 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.ms-10 {
  margin-inline-start: 40px;
}

.me-10 {
  margin-inline-end: 40px;
}

.mt-10 {
  margin-top: 40px;
}

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

.mb-10 {
  margin-bottom: 40px;
}

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

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Padding */
.p-0 {
  padding: 0px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.ps-0 {
  padding-inline-start: 0px;
}

.pe-0 {
  padding-inline-end: 0px;
}

.pt-0 {
  padding-top: 0px;
}

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

.pb-0 {
  padding-bottom: 0px;
}

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

.py-0-5 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.p-1 {
  padding: 4px;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.ps-1 {
  padding-inline-start: 4px;
}

.pe-1 {
  padding-inline-end: 4px;
}

.pt-1 {
  padding-top: 4px;
}

.pr-1 {
  padding-right: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.pl-1 {
  padding-left: 4px;
}

.p-1-5 {
  padding: 6px;
}

.px-1-5 {
  padding-left: 6px;
  padding-right: 6px;
}

.py-1-5 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.ps-1-5 {
  padding-inline-start: 6px;
}

.pe-1-5 {
  padding-inline-end: 6px;
}

.pt-1-5 {
  padding-top: 6px;
}

.pr-1-5 {
  padding-right: 6px;
}

.pb-1-5 {
  padding-bottom: 6px;
}

.pl-1-5 {
  padding-left: 6px;
}

.p-2 {
  padding: 8px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.ps-2 {
  padding-inline-start: 8px;
}

.pe-2 {
  padding-inline-end: 8px;
}

.pt-2 {
  padding-top: 8px;
}

.pr-2 {
  padding-right: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pl-2 {
  padding-left: 8px;
}

.p-2-5 {
  padding: 10px;
}

.px-2-5 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-2-5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ps-2-5 {
  padding-inline-start: 10px;
}

.pe-2-5 {
  padding-inline-end: 10px;
}

.pt-2-5 {
  padding-top: 10px;
}

.pr-2-5 {
  padding-right: 10px;
}

.pb-2-5 {
  padding-bottom: 10px;
}

.pl-2-5 {
  padding-left: 10px;
}

.p-3 {
  padding: 12px;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.ps-3 {
  padding-inline-start: 12px;
}

.pe-3 {
  padding-inline-end: 12px;
}

.pt-3 {
  padding-top: 12px;
}

.pr-3 {
  padding-right: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pl-3 {
  padding-left: 12px;
}

.p-3-5 {
  padding: 14px;
}

.px-3-5 {
  padding-left: 14px;
  padding-right: 14px;
}

.py-3-5 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.ps-3-5 {
  padding-inline-start: 14px;
}

.pe-3-5 {
  padding-inline-end: 14px;
}

.pt-3-5 {
  padding-top: 14px;
}

.pr-3-5 {
  padding-right: 14px;
}

.pb-3-5 {
  padding-bottom: 14px;
}

.pl-3-5 {
  padding-left: 14px;
}

.p-4 {
  padding: 16px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.ps-4 {
  padding-inline-start: 16px;
}

.pe-4 {
  padding-inline-end: 16px;
}

.pt-4 {
  padding-top: 16px;
}

.pr-4 {
  padding-right: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pl-4 {
  padding-left: 16px;
}

.p-5 {
  padding: 20px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ps-5 {
  padding-inline-start: 20px;
}

.pe-5 {
  padding-inline-end: 20px;
}

.pt-5 {
  padding-top: 20px;
}

.pr-5 {
  padding-right: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pl-5 {
  padding-left: 20px;
}

.p-6 {
  padding: 24px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.ps-6 {
  padding-inline-start: 24px;
}

.pe-6 {
  padding-inline-end: 24px;
}

.pt-6 {
  padding-top: 24px;
}

.pr-6 {
  padding-right: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pl-6 {
  padding-left: 24px;
}

.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}

.p-10 {
  padding: 40px;
}

.px-10 {
  padding-left: 40px;
  padding-right: 40px;
}

.ps-10 {
  padding-inline-start: 40px;
}

.pt-44 {
  padding-top: 176px;
}

.rotate-180 {
  transform: rotate(180deg);
}
.object-cover {
  object-fit: cover;
}

/* Background Color  */
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  background-color: var(--color-white);
}
.bg-header {
  background-color: var(--color-header);
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-warning {
  background-color: var(--color-warning);
}
.bg-info {
  background-color: var(--color-info);
}
.bg-clifford {
  background-color: var(--color-clifford);
}

.bg-info-500 {
  background-color: #cee5eb;
}
.bg-green-500 {
  background-color: #dfe9cc;
}
.bg-red-500 {
  background-color: #ffe9e4;
}
.bg-gray-50 {
  background-color: #f7f7f7;
}
.bg-gray-500 {
  background-color: #dbe2f1;
}
.bg-blue-900 {
  background-color: #18244d;
}

/* Background Attachment */
.bg-fixed {
  background-attachment: fixed;
}

/* Text Color */
.text-black {
  color: var(--color-black);
}

.text-white {
  color: var(--color-white);
}

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

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

.text-success {
  color: var(--color-success);
}

.text-info {
  color: var(--color-info);
}

.text-warning {
  color: var(--color-warning);
}

.text-error {
  color: var(--color-error);
}

.text-light {
  color: var(--color-light);
}

.text-dark {
  color: var(--color-dark);
}

/* Box Shadow */
.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.drop-shadow-hero {
  box-shadow: var(--drop-shadow-hero);
}

.drop-shadow {
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1))
    drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
}
.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.5));
}
.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.7))
    drop-shadow(0 2px 2px rgb(0 0 0 / 0.6));
}

/* Background Size */
.bg-auto {
  background-size: auto;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

/* Background Repeat */
.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

/* Background Position */
.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-left {
  background-position: left;
}

.bg-left-bottom {
  background-position: left bottom;
}

.bg-left-top {
  background-position: left top;
}

.bg-right {
  background-position: right;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-right-top {
  background-position: right top;
}

.bg-top {
  background-position: top;
}

/* Border Radius */
.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 2px;
}

.rounded {
  border-radius: 4px;
}

.rounded-md {
  border-radius: 6px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 10px;
}

.rounded-2xl {
  border-radius: 16px;
}
.rounded-3xl {
  border-radius: 20px;
}

/* Visibility */
.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

/* Z-Index */
.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}

.overflow-y-scroll {
  overflow-y: auto;
}

/* Start button */
.k-button .k-button-text {
  font-size: 15px;
}

.join-button {
  background-color: var(--color-info);
}

.plan-button {
  background-color: var(--color-primary);
}

.join-button,
.plan-button {
  display: inline-block;
  min-width: 146px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-white);
  padding: 9px 12px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.plan-button:hover {
  background-color: #1d4ed8;
}
.join-button:hover {
  background-color: #41aecc;
}

.free .plan-button {
  background-color: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}
.free .plan-button:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.core .plan-button {
  background-color: var(--color-info);
  border-color: var(--color-info);
  color: var(--color-white);
}
.core .plan-button:hover {
  background-color: var(--color-info);
  color: var(--color-white);
}

.join-button.bg-warning,
.explorer .plan-button {
  background-color: var(--color-warning);
  border-color: var(--color-warning);
  color: var(--color-black);
}
.join-button.bg-warning:hover,
.explorer .plan-button:hover {
  background-color: var(--color-warning);
  color: var(--color-white);
}

a:hover .k-button-solid-warning,
a.bg-warning:hover {
  background-color: var(--color-warning);
  color: var(--color-white);
}

.investor .plan-button {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.investor .plan-button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.free .plan-button.disabled,
.free .plan-button.disabled:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.core .plan-button.disabled,
.core .plan-button.disabled:hover {
  background-color: var(--color-info);
}

.join-button.disabled.bg-warning,
.explorer .plan-button.disabled,
.join-button.disabled.bg-warning:hover,
.explorer .plan-button.disabled:hover {
  background-color: var(--color-warning);
}

.pro .plan-button.disabled,
.pro .plan-button.disabled:hover,
.investor .plan-button.disabled,
.investor .plan-button.disabled:hover {
  background-color: var(--color-primary);
}

.free .plan-button.disabled,
.free .plan-button.disabled:hover,
.core .plan-button.disabled,
.core .plan-button.disabled:hover,
.join-button.disabled.bg-warning,
.explorer .plan-button.disabled,
.join-button.disabled.bg-warning:hover,
.explorer .plan-button.disabled:hover,
.pro .plan-button.disabled,
.pro .plan-button.disabled:hover,
.investor .plan-button.disabled,
.investor .plan-button.disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
}

.k-button-solid-warning {
  border-color: var(--color-warning);
  color: var(--color-black);
  background-color: var(--color-warning);
}

.k-button-solid-info {
  border-color: var(--color-info);
  color: var(--color-white);
  background-color: var(--color-info);
}

/* End button */

.container {
  /* max-width: 1321px; */
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
}

/* Start Header */
.header {
  gap: 10px;
  min-height: 65px;
  padding-inline-start: 28px;
  padding-inline-end: 18px;
  box-shadow: var(--drop-shadow-hero);
}

.header .left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.header .logo img {
  height: 24px;
}

.header .search {
  position: relative;
  display: none;
}

.header .search input {
  padding: 0.5rem 2rem 0.5rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
}

.header .search .icon {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: gray;
}
.header .mx-45 {
  margin-inline: 45px;
}

.pro-badge {
  justify-content: center;
  align-items: center;
  background-color: #da373d;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  padding: 0 6px;
  text-transform: uppercase;
  position: relative;
  margin-left: -10px;
  left: -3px;
  bottom: -3px;
  border-radius: 12px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.h-full {
  height: 100%;
}
#nav-new a {
  font-size: 12.8px;
  border-bottom: 3px solid transparent;
}
#nav-new .menu .dropdown .nav-item,
#nav-new .menu .dropdown a {
  cursor: pointer;
}
#nav-new .menu .dropdown .nav-item svg {
  position: relative;
  top: -2px;
  left: 5px;
}
#nav-new .menu .dropdown .dropdown-menu {
  display: none;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
#nav-new .menu .dropdown .dropdown-menu {
  min-width: 130px;
  display: none;
  flex-direction: column;
}

#nav-new .menu .dropdown .dropdown-menu li {
  padding: 0;
  text-align: left;
}

#nav-new .menu .dropdown .dropdown-menu li:hover {
  background-color: #e9ecef;
}

#nav-new .menu .dropdown .dropdown-menu li a,
#nav-new .menu .dropdown .dropdown-menu li a.on-hover:hover,
#nav-new .menu .dropdown .dropdown-menu li a.active-link {
  border-bottom: none !important;
}
#mobile-menu .submenu .active-link-mobile,
#mobile-menu .submenu .dropdown-menu .active-link-mobile,
.profile .submenu .dropdown-menu .active-link-mobile {
  text-decoration: underline !important;
}
#mobile-menu .submenu .dropdown-toggle.active-link-mobile,
.profile .submenu .dropdown-toggle.active-link-mobile{
  text-decoration: none !important;
}

#mobile-menu .submenu a,
#mobile-menu .submenu .dropdown-menu a,
.profile .submenu .dropdown-menu a {
  transition: background-color text-decoration 0.2s !important;
}

#mobile-menu .submenu a:active,
#mobile-menu .submenu .dropdown-menu a:active,
.profile .submenu .dropdown-menu a:active {
  background-color: rgba(51, 181, 229, 0.4) !important; /* Light blue */
  text-decoration: underline !important;
}

#nav-new .menu .dropdown .dropdown-menu li a {
  display: flex;
  color: #000;
  white-space: nowrap;
  text-transform: capitalize;
  padding: 8px 16px;
  margin: 0;
}
#nav-new .menu .dropdown .dropdown-menu li a:hover {
  color: #000;
}

#nav-new .menu .dropdown:hover .dropdown-menu {
  display: block;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 3px 3px;
}

#nav-new .profile .submenu .relative {
  position: relative;
}
#mobile-menu .submenu a,
.profile .submenu a,
#nav-new .profile .submenu a {
  padding: 0 !important;
  margin: 0 !important;
  color: #000 !important;
}
.profile .submenu .dropdown-menu,
#nav-new .profile .submenu .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  position: absolute;
  top: 0;
  left: 100%;
}

#mobile-menu .submenu a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  border-bottom: none !important;
}
#mobile-menu .submenu a svg {
  transform: rotate(-90deg) scale(0.9);
}
#mobile-menu .submenu .dropdown-menu {
  width: 150px;
  display: none;
}

#mobile-menu .submenu li.relative:hover .dropdown-menu {
  display: block;
}
/* End Header */

/* Start footer */
.footer {
  background-color: #0c1b3b;
  padding: 65px 15px 62px;
}

.footer-container {
  margin: auto;
  gap: 30px;
}

.footer-logo {
  width: 227px;
  margin-bottom: 45px;
}

.footer-links h4 {
  font-size: 18px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 21px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.footer-right {
  /* flex: 1 1 35%; */
  width: 232px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-location h4 {
  font-size: 18px;
  line-height: 21px;
  margin: 0 0 8px;
}

.footer-location p {
  font-size: 14px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.54);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 21px;
  margin-top: 6px;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

footer a:hover {
  text-decoration: underline;
}

.copyright {
  color: rgba(255, 255, 255, 0.54);
}

.copyright strong,
.copyright a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .footer-right {
    padding-top: 0;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer {
    position: relative;
    padding-bottom: 120px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 16px;
    margin: 0;
  }
  .footer-right {
    gap: 40px;
    width: 100%;
    padding-top: 0;
  }
  .copyright {
    color: rgba(255, 255, 255, 0.54);
    position: absolute;
    margin: 0;
    bottom: 40px;
  }
  .container {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .profile .submenu .dropdown-menu,
  #nav-new .profile .submenu .dropdown-menu {
    position: static;
    border: none;
  }
  #mobile-menu .submenu {
    width: 100% !important;
  }
  #mobile-menu .submenu .dropdown-menu {
    width: 100%;
  }
  .profile .submenu li,
  .profile .submenu a {
    font-size: 14px !important;
  }
  .profile .submenu li {
    padding-inline: 5px !important;
    border-top: 1px solid #dcdcdc;
  }
  .profile .submenu li:first-child {
    border-top-color: transparent;
  }
  .profile .submenu a {
    padding-inline: 0 !important;
  }
  ul.submenu li:hover,
  ul.submenu a:hover {
    background-color: transparent;
  }
  .profile .submenu li.relative:last-child {
    padding-bottom: 0 !important;
  }
  .profile .submenu li.relative > a {
    padding-inline: 5px !important;
  }
  .profile .submenu .dropdown-parent .dropdown-menu {
    display: none !important;
  }
  .profile .submenu .dropdown-parent.open .dropdown-menu.show {
    display: block !important;
  }
  .profile .submenu .dropdown-menu{
    border-top: 1px solid #dcdcdc;
    padding: 5px 0 0;
    margin: 10px 0 0;
  }
  .profile .submenu .dropdown-menu li {
    border-top: none;
    padding-inline: 15px !important;
    padding-block: 5px !important;
  }
  .profile .submenu .dropdown-menu li a {
    font-weight: 400;
  }
  .profile .submenu .dropdown-parent .dropdown-toggle svg,
  #mobile-menu .submenu .dropdown-parent .dropdown-toggle svg {
    transform: rotate(0deg) scale(0.9);
  }
  .profile .submenu .dropdown-parent.open .dropdown-toggle svg,
  #mobile-menu .submenu .dropdown-parent.open .dropdown-toggle svg {
    transform: rotate(180deg) scale(0.9);
  }

  .footer {
    padding-bottom: 130px;
  }
  .copyright {
    max-width: 280px;
  }
}
/* End Footer */

/* End Plans & Pricing */

.newsletter-container {
  height: 405px;
  background-image: linear-gradient(
      155.73deg,
      rgba(26, 35, 66, 0.1) 47.61%,
      rgba(252, 206, 139, 0.74) 111.12%
    ),
    linear-gradient(
      195.08deg,
      rgba(26, 35, 66, 0.69) 39.25%,
      rgba(36, 156, 191, 0.94) 107.87%
    ),
    url("./../images/bg-newsletter.jpg");
  background-size: cover;
  /* background-blend-mode: multiply; */
}

/* Start Ready to see Mining Hub */
.call-to-action-container {
  color: white;
  background-image: url("./../images/bg-section-banner.jpg");
  background-color: rgba(33, 44, 83, 1);
  background-size: cover;
  background-blend-mode: multiply;
}

.laptop-image {
  max-width: 750px;
  top: -41px;
  left: -178px;
}
.free-profile-content {
  max-width: 625px;
  padding-block: 107px;
}
.about-us .free-profile-content {
  padding-block: 138px;
}
/* End Ready to see Mining Hub */

/* Start newsletter */
.newsletter-inner-content {
  max-width: 740px;
}
.newsletter-inner-content.max-w-full {
  max-width: 100%;
}
h2 {
  font-size: 46px;
  line-height: 60px;
}
.newsletter-inner-content h2 {
  margin-bottom: 18px;
}
.newsletter-inner-content p {
  font-size: 18px;
  line-height: 30px;
}

.newsletter-form {
  margin-top: 44px;
}
.newsletter-form .k-rounded-lg {
  border-radius: 10px;
}
/* End newsletter */

/* Start Join our Comunity */
.join-our-community {
  padding-top: 109px;
  padding-bottom: 144px;
  padding-inline: 30px;
}

/* .splide splide--loop splide--ltr splide--draggable is-active is-overflow is-initialized */
.join-our-community .brand-logo-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 16px;
}

.brand-logo-wrapper p {
  max-width: 210px;
  margin-inline: auto;
  margin-top: 32px;
}

.splide,
.carousel__wrapper {
  resize: horizontal;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 33px 60px 23px;
}

.splide p,
.carousel__wrapper p {
  margin-top: 16px;
}

.category-item.active {
  border-color: var(--color-info);
}

.join-our-community .brand-logo img,
.join-our-community .carousel__item img {
  max-width: 130px;
  height: auto;
  display: block;
  margin: auto;
}

.carousel__next,
.carousel__prev {
  width: 36px;
  height: 36px;
  background-color: var(--color-white);
  color: var(--color-black);
  margin-top: 25px;
  border-radius: 50%;
  box-shadow: 0px 2.67px 8px 0px rgba(0, 0, 0, 0.09);
}
.carousel__prev {
  left: -78px;
}
.carousel__next {
  right: -77px;
}
.carousel__next span,
.carousel__prev span {
  display: flex;
}

.carousel__next:hover,
.carousel__prev:hover {
  color: #e5e5e5;
}

.carousel__next--disabled,
.carousel__prev--disabled {
  opacity: 0.3;
}

.splide__arrow {
  width: 36px;
  height: 36px;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 50%;
  box-shadow: 0px 2.67px 8px 0px rgba(0, 0, 0, 0.09);
}
.splide__arrow .k-button-text {
  display: flex;
  align-items: center;
  justify-self: center;
}
.splide__arrow--prev {
  left: -16px;
}
.splide__arrow--next {
  right: -16px;
}
.splide__arrow--prev svg {
  transform: scaleX(1);
}
/* End Join our Comunity */

/* Start How we work */

.card {
  border: 1px solid rgba(42, 148, 178, 0.13);
  background: linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(0deg, rgba(42, 148, 178, 0.03), rgba(42, 148, 178, 0.03));
  padding: 60px 40px 21px 44px;
  margin: 0;
  border-radius: 15px;
}
.card h3 {
  font-size: 26px;
  line-height: 34px;
  letter-spacing: -1%;
}
.card .icon {
  margin: 0 0 50px;
}

.discover-area {
  padding-top: 139px;
  padding-bottom: 135px;
}

.discover-area button {
  margin-top: 0;
}

.discover-inner-content {
  margin-bottom: 127px;
}

.discover-top-area .discover-inner-content {
  margin-bottom: 0;
}

.how-we-work {
  padding-top: 80px;
  padding-bottom: 120px;
  padding-inline: 15px;
}

.feature-column .tooltip-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.tooltip-wrapper .custom-tooltip {
  width: 300px;
  white-space: normal;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
  font-style: normal;
  left: calc(100% + 5px);
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  border-radius: 8px;
}
.tooltip-wrapper .custom-tooltip.tooltip-top {
  left: 50%;
  top: auto;
  width: 130px;
  bottom: calc(100% + 7px);
  transform: translateX(-50%);
}
.tooltip-wrapper .custom-tooltip.tooltip-top:before {
    bottom: -5px;
}

.horizontal-title {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-black);
  z-index: 1;
}
.horizontal-title:before {
  content: "";
  height: 1px;
  background-color: rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}

/* Start Banner */
.banner-section {
  color: white;
  min-height: 400px;
  padding: 40px 15px;
}

/* Start Plasn & Pricing */
.billing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 49px;
  height: 24px;
}

.billing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-toggle .switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 25px;
  transition: 0.4s;
}

.billing-toggle .switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.billing-toggle input:checked + .switch-slider {
  background-color: var(--color-primary);
}

.billing-toggle input:checked + .switch-slider:before {
  transform: translateX(25px);
}

.billing-toggle .active {
  color: var(--color-primary);
}

.badge,
.save {
  color: #10b981;
}

.badge,
.save {
  background-color: #fde6a8; /* light yellow */
  font-size: 14px;
  line-height: 20px;
  color: #000;
  padding: 4px 11px;
  border-radius: 3px;
  font-weight: 400;
  font-family: sans-serif;
  position: relative;
  display: inline-block;
}

.badge::before,
.save::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fde6a8;
}

/* End Plasn & Pricing */

@media (max-width: 1600px) {
  .laptop-image {
    max-width: 670px;
    top: -25px;
    left: -58px;
  }
  .about-us .free-profile-content,
  .free-profile-content {
    padding-block: 95px;
    padding-inline-end: 15px;
  }
}
@media (max-width: 1521px) {
  .discover-inner-content.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card .icon {
    margin-inline: auto;
  }
}

@media (max-width: 1366px) {
  .laptop-image {
    left: -18px;
  }

  .free-profile-content button {
    margin-top: 0;
  }
}

@media (max-width: 1280px) {
  .laptop-image {
    max-width: 570px;
    top: -25px;
    left: 20px;
  }
  .tab-feature-container h2,
  .layer h2,
  .text-5xl,
  .free-profile-content h2 {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  .how-we-work .card {
    padding: 30px 20px;
  }
  .card h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .laptop-image {
    display: none;
  }

  .free-profile-content {
    margin: auto;
  }

  .footer {
    padding-inline: 20px;
  }
  .join-our-community {
    padding-block: 70px;
    padding-inline: 20px;
  }
  .carousel__item {
    text-align: center;
  }

  .how-we-work,
  .newsletter-container {
    padding-inline: 15px;
  }
  .how-we-work .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .tab-feature-container h2,
  .layer h2,
  .text-5xl,
  .free-profile-content h2,
  h2 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
}
@media (max-width: 768px) {
  .newsletter-container .absolute {
    left: 15px;
    right: 15px;
  }
  .newsletter-inner-content {
    max-width: 100%;
  }
  .text-4xl {
    font-size: 28px;
    line-height: 38px;
  }
  .banner-section {
    min-height: 100%;
    padding-block: 60px;
  }

  .about-us .free-profile-content,
  .free-profile-content {
    padding-block: 70px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 0;
  }
  .search:focus {
    width: 240px;
  }
  #main-nav-user-name {
    display: none;
  }
  .discover-inner-content.grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .how-we-work .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .card-grid {
    flex-direction: column;
  }
  .card-grid .w-1-3 {
    width: 100%;
  }
  .card-grid .w-1-3 .max-w-360 {
    max-width: 100%;
  }
  .text-3xl {
    font-size: 24px;
    line-height: 32px;
  }
  .newsletter-form {
    flex-direction: column;
    padding-inline: 15px;
  }
  .newsletter-form .k-input {
    width: 100% !important;
  }

  .free-profile-content {
    max-width: 100%;
    padding-block: 80px;
    padding-inline: 15px;
    text-align: center;
  }
  .free-profile-content > .flex.gap-4 {
    flex-direction: column;
  }

  .pro-badge {
    font-size: 8px;
    line-height: 12px;
    margin: 0;
    left: 2px;
    bottom: 0;
  }

  .free-profile-content h2 {
    max-width: 270px;
    margin-inline: auto;
    margin-bottom: 24px;
  }
  .free-profile-content p {
    max-width: 290px;
    line-height: 24px;
  }
  .join-our-community .brand-logo img {
    max-width: 100px;
  }
}
@media (max-width: 320px) {
  h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

/* End How we work */