/*=============== GOOGLE FONTS ===============*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");
@import url('https://fonts.googleapis.com/css2?family=Judson:wght@400;700&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --color-first: #5e61ff;
  --color-second: #7d86ff;
  --color-effect: #6a6cff;
  --color-black: #1d1d1d;
  --color-dark-gray: #333333;
  --color-gray: #4e4e4e;
  --color-event: #2c9eff;
  --color-bg: #f5f5f5;
  --color-container: #ffffff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/

  /* --body-font: "Pretendard", sans-serif; */
  --body-font: "Pretendard Variable", sans-serif;

  --font-size-section-title: 4.5rem;
  --font-size-main-title: 2.25rem;
  --font-size-sub-title: 2.125rem;
  --font-size-main-description: 1.35rem;
  --font-size-normal: 1.25rem;
  --font-size-small: 1rem;
  --font-size-smaller: 0.825rem;

  /*========== Font weight ==========*/
  --font-weight-extrabold: 700;
  --font-weight-bold: 600;
  --font-weight-semibold: 500;
  --font-weight-medium: 400;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --font-size-main-title: 3rem;
    --font-size-sub-title: 2.5rem;
    --font-size-main-description: 1.8rem;
    --font-size-normal: 1.5rem;
    --font-size-small: 1.125rem;
    --font-size-smaller: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--font-size-small);
}

body {
  background-color: var(--color-bg);
  color: var(--color-black);
  transition: background-color 0.4s;
}

input,
button {
  border: none;
  outline: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1280px;
  margin: 0rem auto 2rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding-block: 3rem 1rem;
}

.section-title {
  color: var(--color-first);
  font-size: var(--font-size-section-title);
  font-family: var(--body-font);
  font-weight: var(--font-weight-extrabold);
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  word-break: keep-all;
}

.section-title-description {
  color: var(--color-second);
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-semibold);
  line-height: 2.4rem;
  margin-bottom: 5rem;
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  word-break: keep-all;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

.button {
  margin-bottom: 5rem;

  background: var(--color-first);
  padding: 1rem 5rem;
  border-radius: 15px;
  font-size: var(--font-size-normal);
  color: var(--color-container);
  font-weight: var(--font-weight-bold);

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

  transition: all 0.3s;

  cursor: pointer;
}

.button:hover {
  background: #4346ff;
}


/* Alert */

#consult-chang-alert {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  background-color: #6f6f6fc4;
}

#consult-chang-alert #consult-chang-alert-body {
  position: fixed;
  left: 50%;
  top: 50%;
  height: auto;
  min-height: 22.5rem;
  width: 40rem;
  border-radius: 0.75rem;
  background-color: var(--color-container);
  opacity: 1;
  transform: translate(-50%, -50%);
}

#alert-image-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

#alert-title-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  text-align: center;
}

#alert-title-wrapper #chang__title {
  margin-top: 1.5rem;
  width: 90%;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #5e61ff;
}

#alert-text-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  text-align: center;
}

#alert-text-wrapper #chang__text {
  margin-top: 1rem;
  width: 90%;
  color: rgb(160 163 181 / var(--tw-text-opacity));
}

#alert-button-wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  text-align: center;
}

#alert-button-wrapper .__butClose {
  height: 3.6rem;
  width: 90%;
  border-radius: 0.5rem;
  border-width: 1px;
  border-color: #5e61ff;
  background-color: #5e61ff;
  color: var(--color-container);
}
.icon_setting{
  display: flex;
}
.icon_logout{
  display: flex;
}


/* End of Alert */