@charset "UTF-8";

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

  /* new-var */
  --primary: #92288c;
  --primary-900: #af77c3;
  --primary-800: #d7c1e5;
  --primary-700: #fff3fe;
  --primary-600: #fff3fd;

  --secondary: #3d217b;

  --gray-400: #3e3e3e;
  --gray-500: #333333;
  --gray-600: #191919;
  --gray-700: #131313;
  --gray-800: #121212;
  --gray-900: #0b0b0b;

  --font-primary: 'Montserrat', sans-serif;

  --h1: clamp(32px, 4.48vw, 86px);
  --h2: clamp(28px, 2.4vw, 46px);
  --h3: clamp(22px, 1.67vw, 32px);
  --h4: clamp(20px, 1.35vw, 26px);
  --h5: clamp(18px, 1.04vw, 20px);
  --h6: clamp(16px, 0.94vw, 18px);
  --title-61: clamp(30px, 3.18vw, 61px);
  --title-50: clamp(28px, 2.6vw, 50px);

  --base: clamp(16px, 1.04vw, 20px);
  --text-md: clamp(17px, 1.15vw, 22px);

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

  --size-120: 120px;
  --size-110: 110px;
  --size-100: 100px;
  --size-60: 100px;

  --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.6vw, 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-30: clamp(15px, 1.56vw, 30px);
}

/* 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-primary);
  font-size: var(--base);
  line-height: 1.5;
  color: var(--gray-500);
  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(--gray-500);
  font-family: var(--font-primary);
}

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-500);
}

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

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

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

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 -14px;
  row-gap: 28px;
}

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

.form-row .form-control {
  font-size: var(--h5);
  font-weight: 500;
  color: var(--gray-500);
  padding: 0 var(--size-30);
  height: 74px;
  width: 100%;
  border: transparent;
  background: var(--primary-600);
  border-radius: 6px;
  outline: none;
  box-shadow: none;
}

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

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

.section {
  position: relative;
}

.container {
  max-width: 1460px;
  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-md {
  font-size: var(--text-md);
  line-height: 1.555;
}

/* space */

.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);
}

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

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

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

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

.row-gap-30 {
  row-gap: 30px;
}

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

/* 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;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  color: var(--white);
  background: var(--primary);
  border-radius: 1000px;
  padding: 21px 62px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 2px solid transparent;
}

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

.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 .sub-title {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
}

.box-card {
  background: var(--white);
  height: 100%;
  padding: clamp(25px, 2.24vw, 43px) clamp(20px, 1.77vw, 34px);
  border: 2px solid rgba(51, 51, 51, 0.17);
}

.box-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 4.9vw, 94px);
  height: clamp(40px, 4.9vw, 94px);
}

.box-card h3 {
  line-height: 1.230;
}

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

.social li {
  display: inline-flex;
}

.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--primary);
  border-radius: 100%;
  transition: var(--transition);
}

.social li a:hover {
  background: var(--secondary);
}

.event-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.event-box .event-img {
  aspect-ratio: 1/0.4498;
}

.event-box .event-img a {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 20px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: rgba(146, 40, 140, 0.7);
  transition: var(--transition);
}

.event-box:not(:hover) .event-img a {
  opacity: 0;
}

.event-box .event-img a .icon-box {
  width: clamp(30px, 3.33vw, 64px);
  height: clamp(30px, 3.33vw, 64px);
  border-radius: 100%;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--primary);
  justify-content: center;
  padding: 6px;
}

.event-box.large .event-img {
  aspect-ratio: 1/0.7369;
}

:is(.blog-box, .event-box) .meta {
  display: flex;
  flex-wrap: wrap;
}

:is(.blog-box, .event-box) .meta li {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1;
  font-weight: 600;
  color: var(--gray-500);
}

:is(.blog-box, .event-box) .meta li:not(:last-child)::after {
  content: "|";
  margin: 0 clamp(10px, 0.89vw, 17px);
}

.blog-box .blog-info h3,
.event-box .event-info h3 {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.454;
}

.event-box.large .event-info h3 {
  font-size: clamp(22px, 1.88vw, 36px);
}

.blog-box .blog-info h3 a,
.event-box .event-info h3 a {
  display: block;
  color: currentColor;
  transition: var(--transition);
}

.blog-box:hover .blog-info h3 a,
.event-box:hover .event-info h3 a {
  color: var(--primary);
}

.blog-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.blog-box .blog-img {
  display: block;
  aspect-ratio: 1/0.8205;
}

.blog-box .blog-info .btn-wrap {
  width: 100%;
  position: relative;
  padding: 0 28px;
  text-align: right;
  color: var(--gray-500);
  transition: var(--transition);
}

.blog-box .blog-info .btn-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  margin: auto 0;
  background: currentColor;
}

.blog-box .blog-info .btn-wrap a {
  display: inline-flex;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 5px 26px;
  background: var(--white);
  position: relative;
  z-index: 1;
  color: currentColor;
}

.blog-box:hover .blog-info .btn-wrap {
  color: var(--primary);
}

.section .shape {
  overflow: hidden;
  width: clamp(150px, 22.55vw, 433px);
  aspect-ratio: 1/1.1431;
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.section:has(.shape) .container {
  position: relative;
  z-index: 2;
}

.section .shape.right {
  right: 0;
}

.section .shape.right img {
  margin-left: 50%;
}

.section .shape.left {
  left: 0;
}

.section .shape.left img {
  margin-left: -50%;
}

/* === HEADER === */
.header-wrap {
  position: relative;
}

.header-wrap header {
  display: flex;
  flex-direction: column;
}

.header-wrap header .head-top {
  padding: var(--size-30) 0;
}

.header-wrap header .head-top .container {
  display: flex;
  justify-content: flex-end;
  column-gap: 87px;
}

.header-wrap header .head-top ul {
  display: flex;
  align-items: center;
  column-gap: var(--size-30);
}

.header-wrap header .head-top ul li {
  display: inline-flex;
  font-size: var(--h6);
  font-weight: 600;
  color: var(--gray-400);
}

.header-wrap header .head-top ul li a {
  display: inline-flex;
  align-items: center;
  color: currentColor;
  column-gap: var(--size-10);
}

.header-wrap header .head-top ul li a .icon {
  color: var(--primary);
}

.header-wrap header .head-top .head-btn-wrap {
  display: inline-flex;
  column-gap: var(--size-20);
}

.header-wrap header .head-top .btn {
  padding-left: 15px;
  padding-right: 15px;
  min-width: 222px;
  justify-content: center;
}

.header-wrap header .head-bottom {
  background: var(--primary);
}

.header-wrap header .head-bottom .container {
  position: relative;
}

.header-wrap header .head-bottom .menu ul {
  display: inline-flex;
  column-gap: 28px;
}

.header-wrap header .head-bottom .menu ul li {
  display: inline-flex;
}

.header-wrap header .head-bottom .menu ul li a {
  display: inline-flex;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  padding: 35px 0;
}

.header-wrap header .head-bottom .logo {
  position: absolute;
  bottom: 0;
  left: 15px;
  z-index: 1;
}

.header-wrap header .head-bottom .logo a {
  display: block;
  width: 252px;
  transition: var(--transition);
}

.header-wrap header .head-bottom .logo a img {
  width: 100%;
}

@media(max-width:1360px) {
  .header-wrap header .head-top .container {
    column-gap: 50px;
  }

  .header-wrap header .head-top .btn {
    font-size: 20px;
    min-width: 180px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header-wrap header .head-bottom .logo a {
    width: 200px;
  }

  .header-wrap header .head-bottom .menu ul {
    column-gap: 20px;
  }

  .header-wrap header .head-bottom .menu ul li a {
    font-size: 18px;
  }

  .header-wrap header .head-bottom .menu ul li a {
    padding: 30px 0;
  }
}

@media(min-width:1200px) {
  .menu-toggle {
    display: none;
  }

  header .header-menu {
    display: none;
  }
}

@media(max-width:1199px) {
  .menu-toggle button {
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    color: var(--white);
    width: 32px;
    height: 32px;
  }

  .header-wrap header .head-top {
    padding: 8px 0;
  }

  .header-wrap header .head-top .container {
    column-gap: 30px;
  }

  .header-wrap header .head-top .head-btn-wrap {
    column-gap: 10px;
  }

  .header-wrap header .head-top .btn {
    font-size: 16px;
    min-width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-wrap header .head-bottom .logo {
    bottom: -10px;
  }

  .header-wrap header .head-bottom .logo a {
    width: 127px;
  }

  .header-wrap header .head-bottom .menu {
    display: none;
  }

  .header-wrap header .head-bottom {
    padding: 10px 0;
  }

  .header-wrap header .head-bottom .container {
    text-align: right;
  }

  .header-wrap header .head-bottom .menu-toggle {
    display: inline-flex;
  }


  /* .header-wrap .menu-toggle {
    margin-left: auto;
  } */

  header .header-menu .menu-toggle button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--primary);
  }

  header .header-menu .top-link {
    display: none;
  }

  header .header-menu {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--white);
    width: 320px;
    padding: 70px 15px 20px;
    z-index: 3;
    transition: var(--transition);

  }

  header .header-menu .menu {
    height: 100%;
    overflow: auto;
  }

  header .header-menu:not(.menu-open) {
    right: -320px;
  }

  header .header-menu .menu-toggle button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 15px 10px;
    justify-content: flex-end;
    color: var(--primary);
  }

  header .header-menu .menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  header .header-menu .menu li {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  header .header-menu .menu li>a {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 17px 0;
    color: var(--primary);
  }

  header .header-menu .menu .sub-menu {
    padding: 0 8px;
    display: none;
  }

  header .header-menu .menu-arrow .icon {
    transition: var(--transition);
  }

  header .header-menu .menu-arrow.active .icon {
    transform: rotate(180deg);
  }

  header .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0.7;
    z-index: 2;
    transition: var(--transition);
  }

  header .overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
  }
}

@media(max-width:1024px) {
  .header-wrap header .head-top ul {
    column-gap: 10px;
  }

  .header-wrap header .head-top ul li {
    font-size: 0;
  }

  .header-wrap header .head-top ul li a {
    column-gap: 0;
  }

  .header-wrap header .head-top ul li a .icon {
    width: 20px;
    height: 20px;
  }

  .header-wrap header .head-top .head-btn-wrap {
    column-gap: 8px;
  }

  .header-wrap header .head-top .btn {
    font-size: 10px;
    padding: 8px;
  }

  .header-wrap header .head-top .container {
    column-gap: 10px;
  }

  .header-wrap header .head-bottom {
    padding: 8px 0;
  }

  .header-wrap header .head-bottom .logo {
    bottom: -8px;
  }

  .header-wrap header .head-bottom .logo a {
    width: 90px;
  }
}

.head-notification {
  padding: 5px 0;
  background: var(--primary-700);
}
.head-notification p{
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
}
.head-notification .btn-wrap{
  flex-shrink: 0;
  padding-left: 10px;
}
.head-notification .btn{
  font-size: 12px;
  padding: 7px 15px;
  background: var(--warning);
}

/* === HEADER === */

/* === FOOTER === */

footer .logo a {
  display: inline-flex;
  transition: var(--transition);
}

footer .logo a img {
  width: 100%;
}

footer .footer-title {
  font-size: var(--title-50);
}

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

.footer-menu ul li {
  display: inline-flex;
}

.footer-menu ul li a {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1;
  font-weight: 500;
  color: var(--white);
}

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

.footer-wrap {
  overflow: hidden;
  position: relative;
  background: no-repeat center / cover;
}

.footer-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-600);
  opacity: 0.9;
}

.footer-wrap .shape.right {
  bottom: -23%;
}

.footer-wrap footer {
  position: relative;
  z-index: 2;
}

.footer-wrap .footer-bottom {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  background: var(--black);
  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(--primary);
}

.footer-wrap .copyright {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 8px;
  row-gap: 8px;
}

.footer-wrap .copyright ul {
  display: flex;
  align-items: center;
}

.footer-wrap .copyright ul li:not(:last-child)::after {
  content: "|";
  margin: 0 14px;
}

.footer-wrap .design-by a {
  color: var(--primary);
  text-decoration: underline;
}

/* === FOOTER === */

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

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

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

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

.banner .hero-bg .shape {
  position: absolute;
  left: 22px;
  bottom: 0;
  width: clmap(200px, 24.43vw, 469px);
  z-index: 1;
}

.banner .hero-bg .shape img {
  width: 100%;
  height: auto;
}

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

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

.banner .banner-info .sub-title {
  display: inline-flex;
  line-height: 1.202;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
  padding: 12px 40px;
  border-radius: 100px;
}

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

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

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

.banner ul.btn-wrap {
  max-width: 590px;
}


.banner .hero-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
  row-gap: 30px;
}

.banner .hero-gallery li {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 0 13px;
}

.banner .hero-gallery .img-cover {
  aspect-ratio: 1/0.7532;
  overflow: hidden;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.banner .hero-gallery .img-cover.large {
  aspect-ratio: 1/1.1153;
}


.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 === */

.toolkit-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toolkit-box .icon-box {
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.toolkit-box .icon-box img {
  width: auto;
  height: 100%;
}

.toolkit-box h3 {
  font-size: clamp(20px, 1.67vw, 32px);
}


.about-wrap .about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}

.about-wrap .about-images .about-shape {
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--size-100);
  height: var(--size-100);
  z-index: 1;
}

.about-wrap .about-img .img-cover {
  aspect-ratio: 1/1.3111;
}

.about-wrap .about-img:last-child {
  padding-top: var(--size-130);
}

.home.about-wrap .content-box p strong {
  font-size: clamp(17px, 1.25vw, 24px);
  color: var(--primary);
}

.about-wrap .content-box.bullet-icon ul {
  row-gap: 15px;
  padding-top: 12px;
}

.about-wrap .content-box.bullet-icon ul li {
  font-weight: 600;
}

.about-wrap .shape.right {
  bottom: -20%;
}

.about-wrap .shape.left {
  bottom: -15%;
}

.about-wrap .content-box .info-box {
  border-radius: 15px;
  background: var(--primary-600);
  border: 1px solid var(--primary);
  padding: 35px 40px;
  font-size: var(--h6);
  line-height: 1.666;
  font-weight: 700;
  color: var(--gray-500);
}

.about-wrap .content-box .info-box a {
  color: currentColor;
  transition: var(--transition);
}

.about-wrap .content-box .info-box a:hover {
  color: var(--primary);
}

.about-wrap .content-box .info-box h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  color: var(--primary);
  padding-bottom: 15px;
}

.about-wrap .coaching-content .btn {
  font-size: 20px;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
}

.about-wrap .coaching-content .content-box {
  font-weight: 500;
}

.about-wrap .coaching-content .content-box p strong {
  color: var(--black);
  font-size: var(--base);
}

.about-wrap .coaching-content .content-box p a {
  color: var(--primary);
}

.about-wrap.hotlines .content-box a {
  font-weight: 700;
  color: var(--primary);
}

.home-help {
  background: var(--primary-800);
}

.home-help .img-cover {
  aspect-ratio: 1/0.7542;
}

.home-help .content-box p+p {
  padding-top: 10px;
}

.home-help .shape.left {
  bottom: -41%;
}

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

.home-toolkit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-800);
  opacity: 0.9;
}

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

.home-toolkit .shape.left {
  bottom: -38%;
}

.home-service .img-cover {
  aspect-ratio: 1.1255;
}

.home-service .service-list ul {
  margin: 0 -16px;
  row-gap: 32px;
}

.become-stronger {
  overflow: hidden;
  position: relative;
  background: no-repeat center / cover;
}

.become-stronger .img-parallax {
  position: absolute;
  inset: 0;
}

.become-stronger .img-parallax img {
  position: absolute;
  width: 120%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  will-change: transform;
}

.become-stronger .img-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  opacity: 0.7;
}

.become-stronger .container {
  position: relative;
  z-index: 2;
}

.become-stronger .become-stronger-box {
  max-width: 1026px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
}

.become-stronger .become-stronger-box h3 {
  font-size: var(--title-61);
}

.home-podcast .video-box {
  aspect-ratio: 1/0.7503;
}

.home-podcast .shape.right {
  bottom: -27%;
}

.home-podcast .video-box {
  position: relative;
}

.home-podcast .video-box .icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--size-100);
  height: auto;
  color: var(--white);
  opacity: 0.7;
}

.home-events {
  background: var(--primary-700);
}

.home-events .shape.left {
  bottom: -32%;
}

.home-blog .title-wrap .sub-text {
  max-width: 850px;
}

.home-blog .shape.right {
  bottom: -22%;
}

.customAccordion {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

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

.customAccordion .accordion-item:has(.show) {
  border-color: var(--primary);
}

.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 70px 30px 39px;
}

.customAccordion .accordion-item .accordion-header button span {
  position: absolute;
  top: 25px;
  right: 39px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 100px;
}

.customAccordion .accordion-item .accordion-header button span::after,
.customAccordion .accordion-item .accordion-header button span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 13px;
  height: 2px;
  background: var(--white);
  margin: auto;
  transition: var(--transition);
}

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

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

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

.home-faq .shape.left {
  bottom: -22%;
}

.home-contact .contact-form {
  border: 1px solid var(--primary);
  padding: var(--size-70) var(--size-80);
  /* background: var(--white); */
}

/* === HOME === */

/* === CONTACT === */
.contact-wrap .map-wrap .map {
  aspect-ratio: 1/0.2640;
}

.contact-wrap .form-row {
  row-gap: 10px;
}

.contact-wrap .form-row .form-control {
  background: var(--white);
  border: 1px solid var(--primary);
}

.contact-wrap .form-row textarea.form-control {
  min-height: 213px;
}

.contact-wrap .contact-box {
  background: var(--primary-600);
  border: 1px solid var(--primary);
  padding: var(--size-50) var(--size-50);
}

.contact-wrap .contact-box h3 {
  color: var(--primary);
  font-size: clamp(22px, 1.98vw, 38px);
}

.contact-wrap .contact-box ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.contact-wrap .contact-box ul li {
  font-size: var(--h4);
  font-weight: 600;
  color: var(--gray-500);
}

.contact-wrap .contact-box ul li a {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  transition: var(--transition);
}

.contact-wrap .contact-box ul li a:hover {
  color: var(--primary);
}

.contact-wrap .contact-box ul li a .icon {
  color: var(--primary);
  width: clamp(40px, 2.71vw, 52px);
  height: auto;
}

/* === CONTACT === */

/* === DONATE === */

.donate-wrap .sub-text {
  max-width: 800px;
}

.donate-wrap .donate-form .radio-btn input {
  display: none;
}

.donate-wrap .donate-form .radio-btn label {
  min-width: 158px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 700;
  color: var(--gray-500);
  border-radius: 5px;
  border: 1px solid var(--gray-500);
  background: var(--white);
  padding: 16px 10px;
  transition: var(--transition);
}

.donate-wrap .donate-form .radio-btn input:checked+label {
  color: var(--primary);
  border-color: var(--primary);
}

.donate-wrap .donate-form {
  max-width: 990px;
  padding: var(--size-40);
  background: var(--primary-600);
}

.donate-wrap .donate-form h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  color: var(--primary);
}

.donate-wrap .donate-form .nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 10px;
  border: 0;
}

.donate-wrap .donate-form .nav li {
  width: 50%;
  padding: 0 15px;
}

.donate-wrap .donate-form .nav li button {
  width: 100%;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 700;
  color: var(--gray-500);
  border-radius: 5px;
  border: 1px solid var(--gray-500);
  background: var(--white);
  padding: 16px 10px;
  transition: var(--transition);
}

.donate-wrap .donate-form .nav li button:is(:hover, .active) {
  color: var(--primary);
  border-color: var(--primary);
}

.donate-wrap .tab-content .tab-pane ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 10px;
}

.donate-wrap .tab-content .tab-pane ul li {
  padding: 0 15px;
}

.donate-wrap .donate-form .select-ammout {
  padding-bottom: 8px;
  padding-left: 18px;
  padding-right: 18px;
  display: inline-flex;
  font-size: var(--h4);
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.donate-wrap .donate-form .remember input {
  display: none;
}

.donate-wrap .donate-form .remember label {
  cursor: pointer;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  padding: 5px 0 5px 45px;
  position: relative;
}

.donate-wrap .donate-form .remember label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: clamp(24px, 1.46vw, 28px);
  height: clamp(24px, 1.46vw, 28px);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 5px;
}

.donate-wrap .donate-form .remember label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 10px;
  height: 17px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.donate-wrap .donate-form .remember input:checked+label::after {
  opacity: 1;
}


/* === DONATE === */

/* === PODCAST === */

.pagination {
  display: inline-flex;
  column-gap: 10px;
  row-gap: 8px;
}

.pagination li {
  display: inline-flex;
}

.pagination li a {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1;
  font-weight: 500;
  color: var(--primary);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  transition: var(--transition);
}

.pagination li a:is(:hover, .currecnt) {
  color: var(--white);
  background: var(--primary);
}

.podcast-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  padding: 22px 20px;
  border-radius: var(--brd-20);
  border: 1px solid var(--primary);
  background: var(--primary-600);
}

.podcast-box .img-cover {
  aspect-ratio: 1/0.5632;
}

.podcast-box .img-cover .icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--size-100);
  height: auto;
  color: var(--white);
  opacity: 0.7;
}

.podcast-box .img-cover::after{}

.podcast-box .podcast-info {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  column-gap: 28px;
}

.podcast-box .title {
  font-size: 16px;
}

.podcast-box .podcast-info .meta {
  display: inline-flex;
  align-items: center;
  column-gap: 28px;
  row-gap: 10px;
  padding-top: 10px;
}

.podcast-box .podcast-info .meta li {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--gray-500);
}

.podcast-box .podcast-info .meta li .icon {
  color: var(--primary);
}

.podcast-box .podcast-info .btn {
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}

.podcast-box .podcast-info .btn .icon {
  width: 48px;
  height: auto;
}

.podcast-wrap .podcast-list>ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
}

.podcast-wrap .podcast-list>ul>li {
  width: 50%;
  padding: 0 15px;
  display: inline-flex;
  column-gap: 10px;
}
.podcast-box .podcast-info .btn-wrap {
  flex-shrink: 0;
}

/* === PODCAST === */

/* === RESOURCE === */
.resource-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 22px;
  background: var(--primary-600);
}

.resource-box .img-cover {
  width: 41.464%;
  aspect-ratio: 1/0.9338;
}

.resource-box .resource-info {
  width: 58.536%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.resource-box .resource-info .title {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-box .resource-info .meta {
  display: inline-flex;
  align-items: center;
  column-gap: 28px;
  row-gap: 10px;
  padding-top: 10px;
}

.resource-box .resource-info .meta li {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--gray-500);
  column-gap: 5px;
}

.resource-box .resource-info .meta li .icon {
  color: var(--primary);
}

.resource-box .resource-info .btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.resource-box .resource-info .btn-wrap .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: var(--white);
  margin-left: auto;
}
.resource-box .resource-info .btn-wrap .icon-box a{
  color: currentColor;
}

.resource-box .resource-info .user-name-box {
  display: flex;
  column-gap: 15px;
}

.resource-box .resource-info .user-name-box .user-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.resource-box .resource-info .user-name-box .user-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}

.resource-box .resource-info .user-name-box .user-name span {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--gray-500);
  padding-bottom: 10px;
}

.resource-box .resource-info .user-name-box .user-name a {
  font-size: 18px;
  line-height: 1.444;
  color: var(--gray-500);
}

.resource-wrap .resource-list>ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
}

.resource-wrap .resource-list>ul>li {
  width: 50%;
  padding: 0 15px;
}

/* === RESOURCE === */

/* === BLOG SINGLE === */
.blog-single .blog-img {
  aspect-ratio: 1/0.5368;
}

.blog-single .blot-title {
  font-weight: 800;
  font-size: clamp(28px, 2.08vw, 40px);
}

.blog-single .blog-meta {
  border-bottom: 1px solid rgba(119, 121, 121, 0.3);
}

.blog-single .blog-meta ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: var(--size-30);
}

.blog-single .blog-meta ul li {
  display: inline-flex;
  font-size: var(--h6);
  line-height: 1;
  font-weight: 600;
  color: var(--gray-500);
}

.blog-single .blog-meta ul li:not(:last-child)::after {
  content: "|";
  margin: 0 15px;
}


/* common-content-box */

.common-content-box :is(p, li) {
  font-size: var(--h5);
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--gray-500);
}

.common-content-box img {
  width: 100%;
  margin: 30px 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.common-content-box :is(p, img, h1, h2, h3, h4, h5, h6, ol, ul):first-child {
  padding-top: 0;
  margin-top: 0;
}

.common-content-box :is(p, img, h1, h2, h3, h4, h5, h6, ol, ul):last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.common-content-box :is(p, h1, h2, h3, h4, h5, h6, ol, ul)+img {
  margin-top: 10px;
}

.common-content-box img+ :is(h1, h2, h3, h4, h5, h6, ol, ul) {
  margin-top: 0;
}

.common-content-box h3 {
  font-size: clamp(22px, 1.77vw, 34px);
  padding-bottom: clamp(20px, 1.04vw, 20px);
}

.common-content-box h4 {
  font-size: clamp(20px, 1.46vw, 28px);
  padding-left: 15px;
  padding-bottom: clamp(10px, 0.68vw, 13px);
}

.common-content-box ul {
  display: flex;
  flex-direction: column;
}

.common-content-box>ul li {
  font-size: var(--h5);
  line-height: 1.625;
  padding-left: 35px;
  position: relative;
  margin-bottom: 16px;
}

.common-content-box>ul li::after {
  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;
}

.common-content-box>ul li strong {
  display: block;
}

/* common-content-box */

.sidebar {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2.08vw, 40px);
}

.sidebar .side-item {
  padding: 44px 24px;
  border-radius: 15px;
  background: var(--primary-600);
  border: 1px solid var(--primary);
}

.sidebar .side-item .side-search .input-box {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.sidebar .side-item .side-search .input-box .form-control {
  color: #363636;
  font-size: 16px;
  line-height: 400;
  height: 56px;
  padding: 0 18px;
  background: var(--white);
  border-radius: 5px;
  border: 1px solid var(--primary);
  box-shadow: none;
  outline: none;
}

.sidebar .side-item .side-search .input-box .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: 363636;
}

.sidebar .side-item .side-search .input-box .form-control:-moz-placeholder {
  opacity: 1;
  color: 363636;
}

.sidebar .side-item .side-search .input-box .form-control::-moz-placeholder {
  opacity: 1;
  color: 363636;
}

.sidebar .side-item .side-search .input-box .form-control:-ms-input-placeholder {
  opacity: 1;
  color: 363636;
}

.sidebar .side-item>div>h3 {
  padding-bottom: 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 800;
}

.sidebar .side-item .side-category ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.sidebar .side-item .side-category ul li {
  display: flex;
}

.sidebar .side-item .side-category ul li:not(:last-child) {
  border-bottom: 1px solid rgba(1, 9, 21, 0.07);
}

.sidebar .side-item .side-category ul li a {
  display: inline-block;
  font-size: var(--h6);
  line-height: 1.3;
  font-weight: 600;
  color: #4d4d4d;
  transition: var(--transition);
  padding: 7px 0;
}

.sidebar .side-item .side-category ul li a:hover {
  color: var(--primary);
}

.sidebar .recent-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.sidebar .recent-box .img-cover {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1/0.5917;
}

.sidebar .recent-box .recent-info .meta {
  display: flex;
  flex-wrap: wrap;
}

.sidebar .recent-box .recent-info .meta li {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--primary);
}

.sidebar .recent-box .recent-info .meta li:not(:last-child)::after {
  content: "|";
  margin: 0 9px;
}

.sidebar .recent-box .recent-info .meta li a {
  display: inline-flex;
  color: currentColor;
  transition: var(--transition);
}

.sidebar .recent-box .recent-info .meta li a:hover {
  color: var(--primary);
}

.sidebar .recent-box .recent-info h3 {
  font-weight: 600;
  font-size: var(--h5);
  line-height: 1.428;
  color: var(--gray-500);
  padding-top: 10px;
}

.sidebar .recent-box .recent-info h3 a {
  display: inline-block;
  color: currentColor;
  transition: var(--transition);
}

.sidebar .recent-box .recent-info h3 a:hover {
  color: var(--primary);
}

.sidebar .side-item .recent-post>ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.sidebar .side-item .recent-post>ul>li {
  display: flex;
}

.sidebar .side-item .recent-post>ul>li {
  display: flex;
}

.sidebar .side-item.have-project {
  background: var(--primary);
  border-color: var(--primary);
}

.sidebar .side-item.have-project h3 {
  color: var(--white);
}

.sidebar .side-item.have-project p {
  color: var(--white);
}

.sidebar .side-item.have-project .btn {
  width: 100%;
  justify-content: center;
}

/* === BLOG SINGLE === */

/* === GET SUPPORT === */
.get-support .title-text {
  max-width: 1257px;
}

/* === GET SUPPORT === */

.thumb-source {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}

.sby_load_btn_wrap {
  text-align: center;
}
.sby_load_btn {
  background-color: transparent;
  color: #92288c;
  border: 2px solid #92288c;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.sby_load_btn:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}
#customLoadMore {
  border: 2px solid #92288c;
  color: #92288c;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: 0.3s;
}
#customLoadMore:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* === event === */
/* ====================================
   TRIBE EVENTS - PREMIUM DESIGN
   Enhanced with Modern UI/UX
   ==================================== */

/* Main Container */
#tribe-events-content-wrapper {
  font-family: 'Montserrat', sans-serif !important;
}

/* ========== SEARCH & FILTER SECTION ========== */

/* Search Bar Container */
.tribe-events-c-search {
  gap: 15px;
  background: #fff !important;
  padding: 20px !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(146, 40, 140, 0.08) !important;
  /* margin-bottom: 30px !important; */
}

/* Search Input */
.tribe-events-c-search__input {
  border: 2px solid #d7c1e5 !important;
  border-radius: 10px !important;
  padding: 14px 20px 14px 40px !important;
  font-family: 'Montserrat', sans-serif !important;
  color: #333333 !important;
  font-size: 15px !important;
  background: #fff !important;
  transition: all 0.3s ease !important;
}

.tribe-events-c-search__input::placeholder {
  color: #af77c3 !important;
}

.tribe-events-c-search__input:focus {
  border-color: #92288c !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(146, 40, 140, 0.1) !important;
}

/* Find Events Button */
.tribe-events-c-search__button {
  background: var(--primary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 36px !important;
  transition: all 0.3s ease !important;
  text-transform: capitalize !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
}

.tribe-events-c-search__button:hover {
  background: var(--secondary) !important;
}

.tribe-events-c-search__button:active {
  transform: translateY(0) !important;
}

/* ========== VIEW SELECTOR & NAVIGATION ========== */

/* Top Bar */
.tribe-events-c-top-bar {
  background: transparent !important;
  margin-bottom: 30px !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

/* View Toggle Buttons (List, Month, Day) */
.tribe-events-c-view-selector__list {
  background: #fff !important;
  border-radius: 10px !important;
  padding: 5px !important;
}

.tribe-events-c-view-selector__list-item-link {
  color: #3e3e3e !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  margin: 0 3px !important;
}

.tribe-events-c-view-selector__list-item-link:hover {
  background: #fff3fe !important;
  color: #92288c !important;
}

.tribe-events-c-view-selector__list-item-link--active {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(146, 40, 140, 0.3) !important;
}

/* Previous/Next Arrow Buttons */
.tribe-common-c-btn-icon {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  width: 46px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.tribe-common-c-btn-icon:hover {
  color: var(--white);
  background: var(--secondary) !important;
}

.tribe-common .tribe-common-c-btn-icon .tribe-common-c-svgicon path {
  fill: var(--white) !important;
}

/* Today Button */
.tribe-events-c-top-bar__today-button {
  background: #fff !important;
  color: #92288c !important;
  border: 2px solid #92288c !important;
  border-radius: 10px !important;
  padding: 12px 24px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(146, 40, 140, 0.1) !important;
}

.tribe-events-c-top-bar__today-button:hover {
  background: #92288c !important;
  color: #fff !important;
}

/* Upcoming Badge/Datepicker Button */
.tribe-events-c-top-bar__datepicker-button {
  background: var(--primary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-size: 19px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

body .tribe-common .tribe-common-c-svgicon__svg-fill {
  fill: var(--white) !important;
}

/* ========== MONTH SEPARATOR ========== */

.tribe-events-calendar-list__month-separator {
  background: transparent !important;
  border: none !important;
  margin: 40px 0 30px !important;
  text-align: left !important;
}

.tribe-events-calendar-list__month-separator-text {
  background: var(--secondary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
  font-size: 17px !important;
  display: inline-block !important;
  box-shadow: 0 4px 12px rgba(61, 33, 123, 0.25) !important;
  letter-spacing: 0.5px !important;
}

/* ========== EVENT CARDS ========== */

/* Event Card Container */
.tribe-events-calendar-list__event-row {
  background: #fff !important;
  border: 2px solid #d7c1e5 !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(146, 40, 140, 0.08) !important;
}

.tribe-events-calendar-list__event-row:hover {
  border-color: #92288c !important;
  box-shadow: 0 12px 28px rgba(146, 40, 140, 0.18) !important;
  transform: translateY(-4px) !important;
}

/* Date Box (Left Side) */
.tribe-events-calendar-list__event-date-tag {
  background: var(--secondary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 14px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  margin: 16px !important;
  min-width: 110px !important;
  box-shadow: 0 4px 12px rgba(61, 33, 123, 0.3) !important;
}

.tribe-events-calendar-list__event-date-tag-weekday {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  letter-spacing: 1.5px !important;
  opacity: 0.95 !important;
}

.tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 44px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1 !important;
  margin-top: 10px !important;
}

/* Event Details Container */
.tribe-events-calendar-list__event-details {
  padding: 24px !important;
  flex: 1 !important;
}

/* Event Time Badge */
.tribe-events-calendar-list__event-datetime-wrapper {
  margin-bottom: 14px !important;
}

.tribe-events-calendar-list__event-datetime {
  background: var(--secondary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  font-size: 13px !important;
  box-shadow: 0 2px 6px rgba(61, 33, 123, 0.2) !important;
  letter-spacing: 0.3px !important;
}

/* Event Title */
.tribe-events-calendar-list__event-title {
  margin-bottom: 12px !important;
}

.tribe-events-calendar-list__event-title-link {
  color: #92288c !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  line-height: 1.4 !important;
  display: inline-block !important;
}

.tribe-events-calendar-list__event-title-link:hover {
  color: #3d217b !important;
  transform: translateX(3px) !important;
}

/* Venue/Location */
.tribe-events-calendar-list__event-venue {
  margin-bottom: 12px !important;
}

.tribe-events-calendar-list__event-venue-title {
  color: #92288c !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 4px !important;
}

.tribe-events-calendar-list__event-venue-address {
  color: #3e3e3e !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* Event Description */
.tribe-events-calendar-list__event-description {
  color: #333333 !important;
  font-family: 'Montserrat', sans-serif !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
  margin-top: 12px !important;
}

/* Event Featured Image */
.tribe-events-calendar-list__event-featured-image-wrapper {
  overflow: hidden !important;
  border-radius: 0 !important;
  position: relative !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.tribe-events-calendar-list__event-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.tribe-events-calendar-list__event-row:hover .tribe-events-calendar-list__event-featured-image img {
  transform: scale(1.08) !important;
}

/* Image Overlay Effect on Hover */
.tribe-events-calendar-list__event-featured-image::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(146, 40, 140, 0.1) 0%, rgba(61, 33, 123, 0.1) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.tribe-events-calendar-list__event-row:hover .tribe-events-calendar-list__event-featured-image::after {
  opacity: 1 !important;
}

/* ========== NAVIGATION ========== */

/* Bottom Navigation Container */
.tribe-events-c-nav {
  margin-top: 40px !important;
  padding: 20px 0 !important;
}

/* Previous/Next Buttons */
.tribe-events-c-nav__prev,
.tribe-events-c-nav__next {
  background: var(--primary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  transition: all 0.3s ease !important;
  text-transform: capitalize !important;
}

.tribe-events-c-nav__prev:hover,
.tribe-events-c-nav__next:hover {
  background: var(--secondary) !important;
}

/* ========== SUBSCRIBE BUTTON ========== */

.tribe-events-c-subscribe-dropdown__button {
  background: var(--primary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  transition: all 0.3s ease !important;
}

.tribe-events-c-subscribe-dropdown__button:hover {
  background: var(--secondary) !important;
}

/* ========== ADDITIONAL ELEMENTS ========== */

/* Cost/Price */
.tribe-events-c-small-cta__price {
  color: #92288c !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  background: #fff3fe !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  border: 2px solid #d7c1e5 !important;
}

/* Loading Animation */
.tribe-common-c-loader__dot {
  background-color: #92288c !important;
}

/* No Events Message */
.tribe-events-calendar-list__no-results {
  background: #fff3fe !important;
  border: 2px solid #d7c1e5 !important;
  border-radius: 12px !important;
  padding: 40px !important;
  text-align: center !important;
}

.tribe-events-calendar-list__no-results-text {
  color: #333333 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
}

/* ========== MOBILE RESPONSIVE ========== */

.tribe-events .tribe-events-c-nav__prev-icon-svg path {
  fill: var(--white) !important;
}

@media (max-width: 768px) { 
  .tribe-events-calendar-list__event-date-tag {
    margin: 12px !important;
    padding: 18px 16px !important;
    min-width: 90px !important;
  }
  
  .tribe-events-calendar-list__event-date-tag-daynum {
    font-size: 36px !important;
  }
  
  .tribe-events-calendar-list__event-title-link {
    font-size: 20px !important;
  }
  
  .tribe-events-c-nav__prev,
  .tribe-events-c-nav__next {
    width: 100% !important;
    margin-bottom: 12px !important;
  }
  
  .tribe-events-c-search__button {
    width: 100% !important;
    margin-top: 10px !important;
  }
}

/* ========== ACCESSIBILITY ========== */

*:focus-visible {
  outline: 3px solid #92288c !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

@media(max-width:768px){
  .tribe-events .tribe-events-c-nav__list{
    flex-direction: column;
    row-gap: 20px;
  }
  .tribe-events .tribe-events-c-nav__list-item {
    width: 100% !important;
  }
  .tribe-common .tribe-common-g-row {
    flex-direction: column;
  }
  .tribe-events .tribe-events-calendar-list__event-date-tag {
    width: initial !important;
  }
  .tribe-events .tribe-events-calendar-list__event-wrapper{
    width: 100% !important;
    padding: 0 15px !important;
  }
  .tribe-events .tribe-events-calendar-list__event-details {
    padding-top: 0 !important;
  }
}

/* === event === */
