/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('../fonts/fonts.css');

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color */
  --hue-color: 218; /*Blue 235 - DeepBlue 239 */

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 83%, 64%);
  --first-color-second: hsl(var(--hue-color), 83%, 64%);
  --first-color-alt: hsl(var(--hue-color), 50%, 56%);
  --first-color-lighter: hsl(var(--hue-color), 19%, 91%);
  --title-color: hsl(var(--hue-color), 46%, 21%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  --scroll-thumb-hover-color: hsl(var(--hue-color), 8%, 65%);

  /*========== Font and typography ==========*/
  --header-font: "Poppins", sans-serif;
  --header-font-extraBold: "Gilroy-ExtraBold", sans-serif;
  --body-font: "Poppins", sans-serif;
  --body-font-extraBold: "Poppins", sans-serif; /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: 4.5rem; /* 72px */
  --h1-font-size: 3.25rem; /* 52px */
  --h2-font-size: 2.125rem; /* 34px */
  --h3-font-size: 1.375rem; /* 22px */
  --normal-font-size: 0.938rem; /* 15px */
  --small-font-size: 0.813rem; /* 14px */
  --smaller-font-size: 0.75rem; /* 13px */

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-bold: 600;
  --font-extra-bold: 900;

  /*========== Margenes Bottom ==========*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --m-0-25: 0.25rem;
  --m-0-5: 0.5rem;
  --m-0-75: 0.75rem;
  --m-1: 1rem;
  --m-1-5: 1.5rem;
  --m-2: 2rem;
  --m-2-5: 2.5rem;
  --m-3: 3rem;
  --m-4: 4rem;

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

/*==================== BASE ====================*/

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

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

html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  margin: 0 0 var(--header-height) 0;
  background-color: var(--body-color) !important;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: var(--body-font) !important;
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

h1,
h2,
h3,
h4 {
  font-family: var(--header-font-extraBold);
  color: var(--title-color);
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 4.5rem; /* 72px */
    --h1-font-size: 4rem; /* 64px */
    --h2-font-size: 2.25rem; /* 36px */
    --h3-font-size: 1.5rem; /* 24px */
    --normal-font-size: 1rem; /* 16px */
    --small-font-size: 0.813rem; /* 14px */
    --smaller-font-size: 0.75rem; /* 13px */
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  /* HSL color mode */
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 28%, 20%);
  --scroll-thumb-color: hsl(var(--hue-color), 28%, 60%);
  --scroll-thumb-hover-color: hsl(var(--hue-color), 69%, 61%);
}

/*========== Button Dark/Light ==========*/
.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}
.change-theme:hover {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  /* box-shadow: 0px 4px 18px rgba(5, 5, 5, 0.1); */
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15) !important;
  background-color: var(--body-color) !important;
  /* transition: 0.3s ease-in-out; */
}

/*==================== Button ====================*/
/* .custBtn1 {
  width: 166px;
  height: 67px;
  color: #ffffff !important;
  background: #5563ef !important;
}
.custBtn2 {
  width: 166px;
  height: 67px;
  border: 2px solid #5563ef !important;
  color: #5563ef !important;
} */
.button {
  background-color: var(--first-color) !important;
  color: #fff !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-family: var(--normal-font-size) !important;
  font-weight: var(--font-medium) !important;
  border: none !important;
  outline: none !important;
}
.button-alt {
  background-color: transparent;
  color: var(--first-color) !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.5rem !important;
  border: 2px solid var(--first-color) !important;
  font-family: var(--normal-font-size) !important;
  font-weight: var(--font-bold) !important;
}
.button:hover {
  background-color: var(--first-color-alt) !important;
}
.button-alt:hover {
  color: #fff !important;
  font-weight: var(--font-medium) !important;
  background-color: var(--first-color-alt) !important;
}
.button-scnd{
  width: 100%;
  background-color: var(--first-color-alt) !important;
  color: #fff !important;
  padding: .50rem 1rem !important;
  border-radius: 1.375rem !important;
  font-family: var(--normal-font-size) !important;
  font-weight: var(--font-medium) !important;
  border: none !important;
  outline: none !important;
}

/*==================== NAV ====================*/
@media screen and (max-width: 768px) {
  .navbar-brand {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
  }
  .navbar__btns {
    padding: 0 0.8rem;
    margin-top: 1rem;
  }
  .nav__btns {
    justify-content: center;
  }
  .navbar__btns .navbar__btn {
    padding: 0 !important;
    width: 100% !important;
    height: 42px !important;
  }
  .offcanvas__container {
    border: 0 !important;
    max-width: 300px !important;
  }
  .offcanvas__header {
    padding: 1rem 1.75rem !important;
  }
  .nav__link {
    padding: 0.8rem !important;
  }
  .nav__theme {
    display: none;
  }
  .nav__link:hover {
    color: var(--first-color) !important;
    font-weight: var(--font-bold) !important;
  }
  .nav__toggler {
    display: inline-block !important;
    border: 0 !important;
    padding: 0.5rem;
    vertical-align: middle;
    background-color: transparent;
    transition: 0.3s ease-in-out;
  }
  .nav__toggler__icon {
    font-size: 1.5rem;
    line-height: 1;
  }
  .nav__toggler__icon:hover {
    color: var(--first-color);
  }
}

.navbar__btn {
  height: 32px !important;
  padding: 0 2rem !important;
  background-color: var(--first-color) !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  font-size: var(--normal-font-size) !important;
  border-radius: 1.25rem !important;
}
.navbar__btn:hover {
  background-color: var(--first-color-alt) !important;
}
.nav-link {
  font-size: var(--normal-font-size) !important;
  align-items: center !important;
  font-weight: var(--font-medium) !important;
  color: var(--title-color) !important;
}
.nav__icon {
  font-size: 1.25rem;
}
.nav__close {
  cursor: pointer;
  font-size: 1.5rem;
}
.nav__close:hover {
  color: var(--first-color);
}
.nav__toggler {
  display: none;
}

/* Active Link */
.nav__link.active {
  color: var(--first-color) !important;
  font-weight: var(--font-bold) !important;
}

.nav__link:hover {
  color: var(--first-color) !important;
}

.navbar-brand h3 {
  font-family: "Gilroy-ExtraBold";
  letter-spacing: 6px;
  margin-bottom: 0; /* Removes space below the h3 tag */
}

.navbar-brand span {
  font-size: 12px;
  margin-top: -5px; 
  letter-spacing: normal;/* Reduces space above the span tag */
}

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
  padding: 6rem 0 4rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: 4rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

/*==================== Home ====================*/
.home {
  padding-top: 5rem !important;
}

.home .container{
  background-color: #eaf0f7;
  padding: 38px;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home .custom-badge{
  display: inline-block;
  min-width: 120px;
  padding: 4px 12px;
  background-color: #F89D31;
  border-radius: 0 0 16px 0;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--normal-font-size);
}

.home__title {
  font-size: var(--h2-font-size);
  color: #1f2050;
  font-family: var(--header-font-extraBold);
  padding-top: 65px;
  line-height: 110%;
}
.home__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
}
.home__description span {
  font-family: var(--body-font-extraBold);
  color: var(--title-color);
}

.ornamen1{
  position: absolute;
  left: -20px;
  opacity: 0.05;
}

.ornamen {
  width: 100%;
  height: 450px;
  background: linear-gradient(162.31deg, rgba(31, 32, 80, 0.1) 12.09%, rgba(255, 255, 255, 0) 101.34%);
  backdrop-filter: blur(12px);
  border: none !important;
  outline: none !important;
  border-radius: 16px;
}

.ornamen span {
  position: absolute;
  overflow: hidden;
  width: 150px;
  height: 150px;
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornamen span::before {
  content: var(--badge-content, '');
  position: absolute;
  width: 150%;
  height: 40px;
  background-image: linear-gradient(45deg, #ff6547 0%, #ffb144  51%, #ff7053  100%);
  transform: rotate(45deg) translateY(-20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0,0,0,0.23);
}

.ornamen span::after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: 0;
  right: 0;
  height: 10px;
  z-index: -1;
  box-shadow: -140px -140px #cc3f47;
  background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
}

.ornamen img {
  overflow: hidden;
  object-fit: cover;
  border-radius: 16px;
}

.home .datetime{
position: absolute;
bottom: 40px;
}

.wavy-lines{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: -1;
  opacity: 0.35;
}

/*==================== CONTACT ME ====================*/


/*==================== Footer ====================*/
.footer {
  background-color: #1B224E;
  color: #fff;
}
.footer p{
  color: #69717B;
}
.footer .nav-item .nav-link {
  color: #69717B !important;
}

/*==================== Login ====================*/
/* #login .card{
  min-width: 780px;
} */
.banner {
  width: 100%;
  min-height: 485px;
  border-radius: 18px !important;
  background: radial-gradient(circle, rgba(72,147,236,1) 50%, rgba(19,100,195,1) 100%);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#register .banner {
  background: linear-gradient(257deg, rgba(72,147,236,1) 0%, rgba(19,100,195,1) 100%);
}
#register .card{
  width: 802px;
}

.banner .wavy-lines{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.80;
}

#formLogin input {
  margin-bottom: 15px;
}

.wrapper {
  position: relative;
}

span.eye {
  position: absolute;
  top: 58%;
  right: 2%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  display: none;
}

.forgotPassword a{
  font-size: var(--small-font-size);
  color: var(--text-color);
  text-decoration: none;
}
.forgotPassword a:hover{
  color: var(--title-color);
}

/*==================== Register ====================*/



/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  background-color: #16244D;
  right: 1rem;
  bottom: -10%;
  opacity: 0.8;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: 10;
  transition: 0.4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
}
.scrollup__icon {
  font-size: 1.5rem;
  color: #fff;
}

.show-scroll {
  bottom: 2.5rem;
}

/*==================== Layout Page ====================*/
#app {
  background-color: #ecf2f7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

#app main {
  flex: 1; 
}

#app main .card{
  border-radius: 18px;
}

label {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  padding: 5px;
}

input:focus {
  border: 1px solid #5563ef !important;
  transition: all 0.3s ease-in-out;
}

input {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  border: 1px solid transparent;
  outline: none;
  background-color: #ecf2f7;
  border-radius: 12px;
}

button.btn-primary {
  border: none;
  outline: none;
  padding: 8px;
  height: 42px;
  font-size: var(--normal-font-size);
  margin-top: 10px;
  border-radius: 18px;
  background: var(--first-color);
}

::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}

select {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  border: 1px solid transparent;
  outline: none;
  background-color: #ecf2f7;
  border-radius: 12px;
}


/*==================== SweetAlert2 Custom ====================*/
.swal2-popup {
  border-radius: 20px;
  font-size: 0.825rem;
  width: 365px;
}
.swal2-title {
  font-family: NunitoSans-ExtraBold;
  font-size: calc( var(--h3-font-size) - 0.25rem);
  color: var(--title-color);
}
.swal2-html-container {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  padding-top: 0 !important;
  font-size: var(--normal-font-size);
}
.swal2-confirm {
  min-width: 100px;
  border-radius: 20px !important;
  background-color: var(--first-color) !important;

}
.swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
}
.swal2-cancel {
  min-width: 100px;
  border-radius: 20px !important;
}



/*==================== Custom responsive ====================*/
/* @media (max-width: 992px) {
  .home__title {
    font-size: 54px !important;
  }
  .home__description {
    font-size: 18px !important;
  }
  .home form.center {
    justify-content: center;
  }
  img.customPosition {
    position: absolute;
    width: 98%;
    height: 658px !important;
    right: 0%;
    top: 0%;
  }
} */
@media (min-width: 992px) {
  .ps-lg-6 {
    padding-left: 4rem !important;
  }
}

@media screen and (max-width: 576px) {
}
@media screen and (max-width: 768px) {
  .home__title {
    font-size: 3rem !important;
    text-align: center;
    padding-top: 0;
  }
  .home__description {
    font-size: 1.25rem !important;
    text-align: center;
  }
  .home {
    background-image: url("../ico/bg.png");
    width: auto !important;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .underline {
    margin-bottom: var(--m-4);
  }
  .line {
    display: inline-block;
    width: 20%;
    height: 10px;
    background: #fad6a1;
  }
}

@media screen and (min-width: 992px) {
}

@media screen and (min-width: 1400px) {
}

/* Custom Dividers */
hr.divider{
  color: var(--first-color);
}