@charset "UTF-8";

:root {
  /* default */
  --white: #fff;
  --black: #000;
  --img: #eaeaea;

  /* new-var */
  --primary: #d84a21;
  --secondary: #2e2e2e;

  --gray-900: #180904;
  --gray-800: #202224;
  --gray-700: #292929;
  --gray-600: #3e3e3e;
  --gray-500: #3d3d3d;
  --gray-400: #f6f6f6;
  --gray-300: #f5f5f5;

  --gray-200: #2b2b2b;

  --brown: #0b0b0b;

  --font-base: 'Montserrat', system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-secondary: 'Zhi Mang Xing', system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --h1: clamp(32px, 3.23vw, 62px);
  --h2: clamp(28px, 2.6vw, 50px);
  --h3: clamp(22px, 2.08vw, 40px);
  --h4: clamp(20px, 1.25vw, 24px);
  --h5: clamp(18px, 1.04vw, 20px);
  --h6: clamp(16px, 0.94vw, 18px);

  --title-70: clamp(30px, 3.65vw, 70px);

  --base: clamp(16px, 1.04vw, 20px);
  --text-sm: clamp(17px, 0.94vw, 18px);
  --text-md: clamp(18px, 1.56vw, 30px);

  --transition: all 0.3s ease-in-out;

  --size-200: clamp(80px, 10.42vw, 200px);
  --size-190: clamp(75px, 9.90vw, 190px);
  --size-180: clamp(70px, 9.38vw, 180px);
  --size-170: clamp(65px, 8.85vw, 170px);
  --size-160: clamp(60px, 8.33vw, 160px);
  --size-150: clamp(55px, 7.81vw, 150px);
  --size-140: clamp(50px, 7.29vw, 140px);
  --size-130: clamp(50px, 6.77vw, 130px);
  --size-120: clamp(45px, 6.25vw, 120px);
  --size-110: clamp(40px, 5.73vw, 110px);
  --size-100: clamp(35px, 5.21vw, 100px);
  --size-90: clamp(35px, 4.69vw, 90px);
  --size-80: clamp(35px, 4.17vw, 80px);
  --size-70: clamp(30px, 3.65vw, 70px);
  --size-60: clamp(30px, 3.13vw, 60px);
  --size-50: clamp(30px, 2.60vw, 50px);
  --size-40: clamp(25px, 2.08vw, 40px);
  --size-30: clamp(20px, 1.56vw, 30px);
  --size-20: clamp(20px, 1.04vw, 20px);
  --size-10: clamp(10px, 0.52vw, 10px);

  --brd-10: clamp(8px, 0.52vw, 10px);
  --brd-15: clamp(10px, 0.78vw, 15px);
  --brd-20: clamp(14px, 1.04vw, 20px);
  --brd-25: clamp(16px, 1.30vw, 25px);
  --brd-30: clamp(18px, 1.56vw, 30px);
  --brd-210: clamp(60px, 10.94vw, 210px);

  --shadow-btn: 0 0 33px rgba(255, 159, 131, 0.5);
}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: var(--base);
  line-height: 1.6;
  color: var(--secondary);
  font-weight: 400;
  background: var(--base);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--black);
}

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

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-base);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0;
}

p+p {
  padding-top: 15px;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--gray-600);
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: var(--gray-600);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--gray-600);
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--gray-600);
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  row-gap: 10px;
}

.form-row>div {
  padding: 0 5px;
}

.form-row .form-control {
  height: 78px;
  font-size: var(--base);
  font-weight: 500;
  color: var(--gray-600);
  padding: 0 var(--size-30);
  width: 100%;
  border: 1px solid rgba(62, 62, 62, 0.3);
  background: var(--white);
  border-radius: 10px;
  outline: none;
  box-shadow: none;
}

.form-row textarea.form-control {
  min-height: 144px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.form-row select.form-control {
  appearance: none;
  background-image: url(../images/icons/cheveron-icon.svg);
  background-repeat: no-repeat;
  background-position: center right 30px;
  background-size: 28px;
}

/*==============================================================
	Custom Style
==============================================================*/

.section {
  position: relative;
}

.container {
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
}

.h1 {
  font-size: var(--h1);
  line-height: 1.173;
}

.h2 {
  font-size: var(--h2);
  line-height: 1.277;
}

.h3 {
  font-size: var(--h3);
  line-height: 1.357;
}

.h4 {
  font-size: var(--h4);
  line-height: 1.416;
}

.h5 {
  font-size: var(--h5);
  line-height: 1.5;
}

.h6 {
  font-size: var(--h6);
  line-height: 1.55;
}

.text-base {
  font-size: var(--base);
  line-height: 1.625;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: 1.5;
}

.text-md {
  font-size: var(--text-md);
  line-height: 1.5;
}

/* space */

.pt-200 {
  padding-top: var(--size-200);
}

.pb-200 {
  padding-bottom: var(--size-200);
}

.pt-190 {
  padding-top: var(--size-190);
}

.pb-190 {
  padding-bottom: var(--size-190);
}

.pt-180 {
  padding-top: var(--size-180);
}

.pb-180 {
  padding-bottom: var(--size-180);
}

.pt-170 {
  padding-top: var(--size-170);
}

.pb-170 {
  padding-bottom: var(--size-170);
}

.pt-160 {
  padding-top: var(--size-160);
}

.pb-160 {
  padding-bottom: var(--size-160);
}

.pt-150 {
  padding-top: var(--size-150);
}

.pb-150 {
  padding-bottom: var(--size-150);
}

.pt-140 {
  padding-top: var(--size-140);
}

.pb-140 {
  padding-bottom: var(--size-140);
}

.pt-130 {
  padding-top: var(--size-130);
}

.pb-130 {
  padding-bottom: var(--size-130);
}

.pt-120 {
  padding-top: var(--size-120);
}

.pb-120 {
  padding-bottom: var(--size-120);
}

.pt-110 {
  padding-top: var(--size-110);
}

.pb-110 {
  padding-bottom: var(--size-110);
}

.pt-100 {
  padding-top: var(--size-100);
}

.pb-100 {
  padding-bottom: var(--size-100);
}

.pt-90 {
  padding-top: var(--size-90);
}

.pb-90 {
  padding-bottom: var(--size-90);
}

.pt-80 {
  padding-top: var(--size-80);
}

.pb-80 {
  padding-bottom: var(--size-80);
}

.pt-70 {
  padding-top: var(--size-70);
}

.pb-70 {
  padding-bottom: var(--size-70);
}

.pt-60 {
  padding-top: var(--size-60);
}

.pb-60 {
  padding-bottom: var(--size-60);
}

.pt-50 {
  padding-top: var(--size-50);
}

.pb-50 {
  padding-bottom: var(--size-50);
}

.pt-40 {
  padding-top: var(--size-40);
}

.pb-40 {
  padding-bottom: var(--size-40);
}

.pt-30 {
  padding-top: var(--size-30);
}

.pb-30 {
  padding-bottom: var(--size-30);
}

.pt-20 {
  padding-top: var(--size-20);
}

.pb-20 {
  padding-bottom: var(--size-20);
}

.pt-10 {
  padding-top: var(--size-10);
}

.pb-10 {
  padding-bottom: var(--size-10);
}

/* 🔹 Border Radius Utilities */

.brd-10 {
  border-radius: var(--brd-10);
}

.brd-15 {
  border-radius: var(--brd-15);
}

.brd-20 {
  border-radius: var(--brd-20);
}

.brd-25 {
  border-radius: var(--brd-25);
}

.brd-30 {
  border-radius: var(--brd-30);
}

.brd-210 {
  border-radius: var(--brd-210);
}

.gap-30 {
  /* display: flex; */
  /* flex-wrap: wrap; */
  row-gap: 30px;
}

.gap-30> :is(div, li) {
  padding: 0 15px;
}

/* space */

:is(.img-cover, .img-contain) {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--img);
}

:is(.img-cover, .img-contain) :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain :is(img, video, iframe) {
  object-fit: contain;
}

.bullet>ul li {
  padding-left: 25px;
  position: relative;
}

.bullet>ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 10px;
  background: var(--primary);
}

.bullet>ol {
  counter-reset: item 0;
}

.bullet>ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet>ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--primary);
}

.bullet>ol li ol {
  margin-top: 12px;
}

.bullet>ol li ol li {
  padding-left: 0;
}

.bullet>ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet>ol li ol ol {
  padding-left: 20px;
}

.bullet-icon>ul {
  display: flex;
  flex-direction: column;
}

.bullet-icon>ul>li {
  padding-left: 35px;
  position: relative;
}

.bullet-icon>ul>li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: clamp(24px, 1.46vw, 28px);
  height: clamp(24px, 1.46vw, 28px);
  background: url(../images/icons/bullet-icon.svg) no-repeat center / contain;
}

.bullet-icon.text-white>ul>li::before {
  background: url(../images/icons/bullet-white-icon.svg) no-repeat center / contain;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  text-align: left;
  min-height: 72px;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--brd-10);
  padding: 20px 46px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 2px solid transparent;
  outline: none !important;
  box-shadow: none !important;
}

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

.btn:is(:hover, :focus, :active) {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: transparent !important;
}

.btn-play {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 28px;
  color: var(--secondary);
}

.btn-play span {
  display: inline-flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--primary);
}

.btn-play .icon-box {
  flex-shrink: 0;
  color: var(--white);
  width: 62px;
  height: 62px;
  display: grid;
  color: var(--white);
  place-items: center;
  border-radius: 1000px;
  border: 3px solid var(--white);
  background: var(--primary);
  box-shadow: var(--shadow-btn);
}

.btn-play.btn-white {
  color: var(--white);
}

.btn-play.btn-white span {
  border-color: currentColor;
}

/* .btn.btn-md {
  font-size: 18px;
  padding: 16px 50px;
} */

/* .btn.btn-primary,
.btn.btn-secondary:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary);
  border: transparent;
} */

/* .btn.btn-secondary,
.btn.btn-primary:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--secondary);
  border: transparent;
} */

/* .btn.btn-white {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
} */

/* .btn.btn-white:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
} */

/* .btn-link {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  column-gap: 20px;
  padding: 13px 0;
  position: relative;
  border-bottom: 1px solid currentColor;
}

.btn-link.btn-white {
  color: var(--white);
}

.link {
  font-size: 24px;
  line-height: 1;
  text-decoration: underline;
  transition: var(--transition);
}

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

.link.primary:is(:hover, :focus, :active) {
  color: var(--secondary);
}

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

.link.secondary:is(:hover, :focus, :active) {
  color: var(--primary);
}

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

.link.white:is(:hover, :focus, :active) {
  color: var(--primary);
} */

/*==============================================================
	Common Css 
==============================================================*/

.title-wrap>h2 {
  font-weight: 400;
}

.title-wrap>h2>strong {
  font-weight: 700;
}

.title-wrap.text-white>h2 {
  color: var(--white);
}

.mike-box {
  position: relative;
  color: var(--white);
  width: clamp(80px, 7.5vw, 144px);
  height: clamp(80px, 7.5vw, 144px);
  display: grid;
  color: var(--white);
  place-items: center;
  border-radius: 1000px;
  border: 8px solid var(--white);
  background: var(--primary);
  box-shadow: var(--shadow-btn);
  z-index: 1;
}

.mike-box .icon {
  width: clamp(30px, 4.06vw, 78px);
  height: auto;
}

.service-box .service-img {
  padding: var(--size-20);
  display: grid;
  place-items: center;
  aspect-ratio: 1/0.4347;
  background: var(--white);
  border: 1px solid var(--primary);
}

.episode-box {
  color: var(--white);
  text-align: center;
  position: relative;
  background: var(--primary);
  padding: var(--size-30) var(--size-120) var(--size-60);
}

.episode-box>img {
  position: absolute;
  inset: 0;
}

.episode-box .icon-box {
  width: clamp(80px, 6.25vw, 120px);
  height: clamp(80px, 6.25vw, 120px);
  margin: 0 auto;
}

.podcast-box {
  position: relative;
  color: var(--white);
}

.podcast-box .img-cover {
  aspect-ratio: 1/1.08;
  border-radius: var(--brd-30);
  overflow: hidden;
}

.podcast-box .img-cover .overlay {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  color: var(--white);
  border-radius: var(--brd-30);
  border: 1px solid var(--primary);
  background-image: linear-gradient(0deg, rgba(47, 13, 3, 0.9999999999999999) 20%, rgba(47, 13, 3, 0.6690952858926562) 49%, rgba(105, 182, 217, 0) 100%);
  transition: var(--transition);
}

.podcast-box .img-cover .overlay .icon {
  transition: var(--transition);
}

.podcast-box h3 {
  font-size: clamp(18px, 1.56vw, 30px);
  line-height: 1.3;
  color: var(--white);
  padding-bottom: 8px;
  transition: var(--transition);
}

.podcast-box .meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 51px;
}

.podcast-box .meta li {
  display: inline-flex;
  align-items: center;
  /* column-gap: 10px; */
  font-size: 15px;
}

.podcast-box .meta li span {
  display: inline-flex;
}

.podcast-box .meta li span:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
}

.podcast-box .meta li .icon {
  margin-right: 10px;
}

.podcast-box:not(:hover) .img-cover .overlay {
  opacity: 0;
}

.podcast-box:hover h3 {
  color: var(--primary);
}

.testimonial-box {
  height: 100%;
  position: relative;
  text-align: center;
  padding: 114px var(--size-40) var(--size-40);
  border-radius: var(--brd-20);
  background: rgba(61, 61, 61, 0.07);
}

.testimonial-box .icon {
  position: absolute;
  top: 32px;
  left: 32px;
  display: inline-flex;
  color: var(--gray-500);
  opacity: 0.2;
  margin-right: auto;
  width: 90px;
  height: auto;
}

.testimonial-box p {
  max-width: 485px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.4615;
  color: var(--gray-500);
}

.testimonial-box .name {
  display: inline-flex;
  color: var(--gray-500);
  font-size: clamp(16px, 1.2vw, 23px);
  font-weight: 500;
  font-style: italic;
  margin: 0 auto;
  padding-top: 75px;
}

.testimonial-box .logo {
  position: absolute;
  left: -20px;
  bottom: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 115px;
  border-radius: var(--brd-20);
  background: var(--gray-300);
}

/* === HEADER === */
.header-wrap {
  background: var(--white);
}

.header-wrap header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
}

.header-wrap .container {
  display: flex;
}

header .logo a {
  display: inline-block;
  transition: var(--transition);
}

header .header-menu .menu li>a {
  transition: var(--transition);
}

header .header-menu .menu li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-ancestor, .current_page_item)>a {
  color: var(--primary);
  font-weight: 700;
}

/* === HEADER === */

/* === FOOTER === */
.footer-wrap {
  background: var(--gray-200);
}

.footer-wrap .logo {
  position: relative;
  top: -14px;
  margin-bottom: -14px;
}

.footer-wrap .logo a {
  width: clamp(220px, 27.45vw, 527px);
  padding: 34px var(--size-70);
  display: inline-flex;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--brd-10);
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  justify-content: center;
}

.footer-menu ul li {
  color: var(--white);
  display: inline-flex;
}

.footer-menu ul li:not(:last-child)::after {
  content: "|";
  color: currentColor;
  margin: 0 20px;
}

.footer-menu ul li a {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  transition: var(--transition);
}

footer .social li a {
  width: clamp(50px, 3.65vw, 70px);
  height: clamp(50px, 3.65vw, 70px);
}

.footer-menu ul li a:hover {
  color: var(--primary);
}

.footer-wrap .footer-bottom {
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  background: var(--primary);
  position: relative;
  z-index: 1;
}

.footer-wrap .footer-bottom a {
  display: inline-block;
  color: currentColor;
  transition: var(--transition);
}

.footer-wrap .footer-bottom a:hover {
  color: var(--secondary);
}

/* === FOOTER === */
/* === BANNER === */
.banner {
  padding: var(--size-120) 0 var(--size-100);
  position: relative;
}

.banner .hero-bg {
  position: absolute;
  inset: 0;
}

.banner.hero-banner .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  opacity: 0.86;
}

.banner .hero-bg>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .container {
  position: relative;
  z-index: 1;
}

.banner .banner-info {
  position: relative;
  z-index: 2;
}

.banner .banner-info .sub-title {
  display: inline-flex;
  font-size: var(--title-70);
  line-height: 1.202;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--font-secondary);
}

.banner .banner-title {
  font-weight: 400;
  color: var(--white);
}

.banner .banner-title :is(span, strong) {
  font-weight: 700;
}

.banner .text-box {
  line-height: 1.5;
  color: var(--white);
}


.banner .hero-img {
  aspect-ratio: 1/1;
  /* overflow: hidden; */
  background: transparent;
  /* border-bottom-left-radius: 0; */
}

.banner .hero-img img {
  border-radius: var(--brd-210);
  border-bottom-left-radius: 0;
}

.banner .mike-box {
  position: absolute;
  left: -72px;
  bottom: 60px;
}

.banner .audo-shape {
  width: clamp(200px, 15.52vw, 298px);
}



/* .banner.inner-banner {
  padding: clamp(90px, 7.29vw, 140px) 0 clamp(100px, 8.23vw, 158px);
}

.banner.inner-banner .banner-info {
  text-align: center;
}

.banner.inner-banner .banner-info .banner-title {
  font-size: var(--title-61);
}

.banner .breadcrumb {
  margin: 0;
  justify-content: center;
  color: var(--white);
}

.banner .breadcrumb li {
  font-size: var(--h6);
  color: currentColor;
  padding: 0;
}

.banner .breadcrumb li a {
  color: currentColor;
}

.banner .breadcrumb-item+.breadcrumb-item::before {
  content: "|";
  color: currentColor;
  margin: 0;
  padding: 0 14px;
} */

/* === BANNER === */

/* === HOME === */
.customAccordion {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.customAccordion .accordion-item {
  border-radius: 0;
  border: 0;
  transition: var(--transition);
  background: var(--primary-600);
  border-radius: 10px;
  background: var(--gray-300);
}

.customAccordion .accordion-item .accordion-header {
  width: 100%;
  padding: 0;
}

.customAccordion .accordion-item .accordion-header button {
  text-align: left;
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  padding: 30px 80px 30px 39px;
  color: var(--gray-600);
}

.customAccordion .accordion-item .accordion-header button .icon-box {
  display: grid;
  place-items: center;
  position: absolute;
  top: 25px;
  right: 39px;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--gray-500);
  border-radius: 100px;
}

.customAccordion .accordion-item .accordion-header button .icon-box .icon {
  transition: var(--transition);
}

.customAccordion .accordion-item .accordion-header button.collapsed .icon-box .icon {
  transform: rotate(90deg);
}

.customAccordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 39px 40px !important;
  color: var(--gray-600);
}

.home-faq .customAccordion {
  max-width: 871px;
  margin: 0 auto;
}

.home.is-podcast {
  position: relative;
  background: no-repeat center / cover;
}

.home.is-podcast::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #110602;
  opacity: 0.6;
}

.home.is-podcast .container {
  position: relative;
  z-index: 1;
}

.home.is-podcast .is-podcast-img {
  aspect-ratio: 1/0.9531;
  border: 1px solid var(--primary);
}

.home.is-podcast .cirlce-shape {
  position: absolute;
  top: -32%;
  left: -35%;
  width: clamp(150px, 28.13vw, 540px);
}

.home.is-podcast .podcast-list ul {
  display: flex;
  flex-direction: column;
}

.home.is-podcast .podcast-list li {
  padding: 30px 18px 35px;
  border-bottom: 1px solid rgba(243, 255, 255, 0.25);
}

.home.is-podcast .podcast-list li>div {
  column-gap: 20px;
  justify-content: space-between;
}

.home.is-podcast .podcast-list li .info h3 {
  font-size: clamp(18px, 1.56vw, 30px);
  line-height: 1.3;
  color: var(--primary);
}

.home.is-podcast .podcast-list li .info p {
  color: var(--white);
}

.home.is-podcast .podcast-list li>div .btn-play {
  flex-shrink: 0;
}

.home.is-podcast .shape {
  position: absolute;
  right: 57px;
  bottom: 27px;
  width: clamp(200px, 31.77vw, 610px);
}

.home.meet-host .content-box>ul {
  row-gap: 13px;
}

.home.meet-host .content-box> :is(ul, ol) {
  padding: 16px 0;
}

.home.meet-host .content-box> :is(ul, ol):first-child {
  padding-top: 0;
}

.home.meet-host .content-box>:is(ul, ol):last-of-type {
  padding-bottom: 0;
}

.home.meet-host .host-img .img-cover {
  aspect-ratio: 1/0.8464;
}

.home.meet-host .host-img .circle-shape {
  position: absolute;
  left: -21%;
  bottom: -13%;
  z-index: 1;
  width: clamp(80px, 13.59vw, 261px);
  height: clamp(80px, 13.59vw, 261px);
}

.home.meet-host .host-img .dot-shape {
  position: absolute;
  top: -15px;
  right: -15px;
  width: clamp(40px, 5.05vw, 97px);
}

.home.listen-in {
  background: #18191a;
}

.home.every-topics {
  background: var(--primary);
}

.home.every-topics .title-wrap h2 strong {
  display: block;
}

.home.every-topics .topic-gallery {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}

.home.every-topics .topic-gallery .img-cover {
  aspect-ratio: initial;
  height: 100%;
}

.home.every-topics .topic-gallery>li {
  padding: 0 9px;
}

.home.every-topics .topic-gallery>li:nth-child(1) {
  width: 65%;
}

.home.every-topics .topic-gallery>li:nth-child(2) {
  width: 35%;
}

.home.every-topics .content-box>ul {
  row-gap: 13px;
}

.home.every-topics .content-box>ul>li {
  font-weight: 600;
}

.home.free-download .form-wrap {
  background: var(--gray-400);
  padding: var(--size-60) var(--size-50);
}

.home.free-download .title-wrap {
  max-width: 433px;
}

.home.free-download .mike-shape {
  position: absolute;
  top: -95%;
  left: -38%;
  width: clamp(100px, 29.22vw, 561px);
  z-index: -1;
}

.home.on-help {
  position: relative;
}

.home.on-help::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-700);
  opacity: 0.8;
}

.home.on-help .title-wrap h2 strong {
  display: block;
}

.home.on-help .on-help-gallery {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}

.home.on-help .on-help-gallery .img-cover {
  aspect-ratio: initial;
  height: 100%;
}

.home.on-help .content-box>ul {
  row-gap: 13px;
}

.home.on-help .on-help-gallery>li {
  padding: 0 9px;
}

.home.on-help .on-help-gallery>li:nth-child(1) {
  width: 65%;
}

.home.on-help .on-help-gallery>li:nth-child(2) {
  width: 35%;
}

.home.on-help .content-box> :is(ul, ol) {
  padding: 16px 0;
}

.home.on-help .content-box> :is(ul, ol):first-child {
  padding-top: 0;
}

.home.on-help .content-box>:is(ul, ol):last-of-type {
  padding-bottom: 0;
}

.home.be-guest .title-wrap h2 strong {
  display: block;
}

.home.be-guest .form-wrap {
  background: var(--gray-400);
  padding: var(--size-60) var(--size-50);
}

.home.be-guest .title-wrap {
  max-width: 433px;
}

.home.be-guest .be-guest-shape {
  position: absolute;
  right: -10%;
  bottom: -19%;
  width: clamp(100px, 29.22vw, 561px);
  z-index: -1;
}

.home.testimonial {
  background: var(--gray-300);
}

.home.testimonial .swiper-slide {
  height: initial;
}

.home.testimonial .testimonial-pagination {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}

.home.testimonial .testimonial-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 29px;
  border-radius: 10px;
  background: #cecece;
  opacity: 1;
}

.home.testimonial .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #3e3e3e;
}

/* === HOME === */