:root {
  --gradient: linear-gradient(214deg, #2a8bf2 10.64%, #70d4ee 88.58%);
  --white: #ffffff;
  --black: #000000;

  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f2f4f7;
  --gray-200: #eaecf0;
  --gray-300: #d0d5dd;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --gray-900: #101828;

  --blue-25: #f5faff;
  --blue-50: #eff8ff;
  --blue-100: #d1e9ff;
  --blue-200: #b2ddff;
  --blue-300: #84caff;
  --blue-400: #53b1fd;
  --blue-500: #2e90fa;
  --blue-600: #1570ef;
  --blue-700: #175cd3;
  --blue-800: #1849a9;
  --blue-900: #194185;

  --dropdown-shadow:
    0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0.01), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.04), 0px 3px 7px 0px rgba(0, 0, 0, 0.04);

  --fs-10: 0.625rem;
  --fs-11: 11px;
  --fs-12: 0.75rem;
  --fs-13: 0.813rem;
  --fs-14: 0.875rem;
  --fs-15: 0.938rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-36: 2.25rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  --fs-42: 2.625rem;
  --fs-44: 2.75rem;
  --fs-46: 2.875rem;
  --fs-48: 3rem;
  --fs-50: 3.125rem;
  --fs-52: 3.25rem;
  --fs-56: 3.5rem;
  --fs-60: 3.75rem;
  --fs-64: 4rem;
  --fs-66: 4.125rem;
  --fs-68: 4.25rem;
  --fs-72: 4.5rem;
  --fs-76: 4.75rem;
  --fs-80: 5rem;

  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
}

body {
  max-width: 1920px;
  font-family: "Inter", sans-serif;
  background-color: var(--gray-50);
  overflow-x: hidden;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 22px 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  z-index: 999;
  transition: all 0.2s;
}
.navbar.scrolled {
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.68);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.navbar .navbar-brand img {
  width: 165px;
}
.navbar .nav-links {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
.navbar .nav-links .link {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--gray-800);
  text-decoration: none;
}
.navbar .nav-links .link:first-of-type {
  font-weight: var(--fw-500);
}
.navbar .nav-links .separator {
  height: 20px;
  width: 1px;
  margin: 8px 6px;
  background-color: var(--gray-300);
}
.navbar .nav-links .btn-brand {
  height: 36px;
  padding: 8px 12px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.navbar .nav-links .sidebar-toggler {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
  border: 0;
  box-shadow: 0;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
}
.navbar .nav-links .sidebar-toggler .icon {
  width: 20px;
  height: 20px;
}
/* Navbar */

/* Sidebar */
.sidebar {
  width: 320px;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 80px 24px 24px;
  background-color: var(--white);
  border-right: 1px solid var(--gray-100);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s;
  z-index: 1001;
  scrollbar-width: thin;
}
.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sidebar .sidebar-header .logo {
  display: block;
  text-decoration: none;
}
.sidebar .sidebar-header .logo img {
  display: block;
  width: 140px;
}
.sidebar .sidebar-links {
  display: flex;
  flex-direction: column;
  margin-left: -8px;
}
.sidebar .sidebar-links .link {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--gray-800);
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s;
}
@media (min-height: 680px) and (max-height: 720px) {
  .sidebar .sidebar-links .link {
    height: 48px;
  }
}
.sidebar .sidebar-links .link.active {
  color: var(--blue-600);
}

/* Sidebar Opened CSS */
.sidebar.opened {
  transform: translateX(0);
}
.sidebar.opened .sidebar-links .link {
  opacity: 1;
  transform: translateY(0);
}
.sidebar.opened .sidebar-links .link:nth-child(1) {
  transition-delay: 0.1s;
}
.sidebar.opened .sidebar-links .link:nth-child(2) {
  transition-delay: 0.15s;
}
.sidebar.opened .sidebar-links .link:nth-child(3) {
  transition-delay: 0.2s;
}
.sidebar.opened .sidebar-links .link:nth-child(4) {
  transition-delay: 0.25s;
}
.sidebar.opened .sidebar-links .link:nth-child(5) {
  transition-delay: 0.3s;
}
.sidebar.opened .sidebar-links .link:nth-child(6) {
  transition-delay: 0.35s;
}
.sidebar.opened .sidebar-links .link:nth-child(7) {
  transition-delay: 0.4s;
}
.sidebar.opened .sidebar-links .link:nth-child(8) {
  transition-delay: 0.45s;
}
/* Sidebar Opened CSS */

.sidebar .social-links {
  margin: 24px 0 24px;
  display: flex;
  column-gap: 16px;
}
.sidebar .social-links .link {
  min-width: 32px;
  width: 32px;
  height: 32px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(21, 112, 239, 0.17);
  border-radius: 50%;
}
.sidebar .social-links .link .icon {
  display: inline-block;
  width: 14px;
  height: 14px;
}

.sidebar .auth-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.sidebar .auth-btns .btn-signup {
  box-shadow: none;
}
.sidebar .auth-btns .btn-login {
  color: var(--gray-900);
  border-color: transparent;
  background-color: var(--gray-100);
}

.btn-close-sidebar-lg {
  position: fixed;
  top: 24px;
  right: 344px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  background-color: var(--white);
  padding: 0;
  border: 0;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  z-index: 1001;
}
.btn-close-sidebar-lg.show {
  display: flex !important;
}
.btn-close-sidebar-lg .icon {
  width: 20px;
  height: 20px;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  background: rgba(52, 64, 84, 0.16);
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.sidebar-backdrop.show {
  display: block !important;
}
/* Sidebar */

.main {
  padding-top: 85px;
}

* {
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1320px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
button,
input {
  font-family: "Inter", sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.d-flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}

.text-gradient {
  background: linear-gradient(90deg, #0a6ed9 12.43%, #2a8bf2 32.69%, #2b9dfe 55.34%, #7a76ea 78.83%, #f975e6 100.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-italic {
  font-style: italic;
}
.regular-400 {
  font-weight: 400 !important;
}
.bold-500 {
  font-weight: 500 !important;
}
.bold-600 {
  font-weight: 600 !important;
}
.bold-700 {
  font-weight: 700 !important;
}

/* Buttons */
.btn-brand {
  display: flex;
  align-items: center;
  column-gap: 8px;
  justify-content: center;
  background-color: rgba(252, 81, 1, 0.1);
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  /* box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); */
  outline: 0;
  cursor: pointer;
}
.btn-navy-blue {
  background-color: var(--blue-900);
  color: var(--white);
}
.btn-blue {
  background-color: var(--blue-600);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 2px 3px 0 rgba(10, 13, 18, 0.05),
    -2px 0 0 0 rgba(10, 13, 18, 0.05) inset,
    0 0 0 1px rgba(10, 13, 18, 0.18) inset;
}
.btn-white {
  background-color: var(--white);
  color: var(--blue-500);
  border-color: var(--blue-500);
}
.btn-dark {
  background-color: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-lg {
  height: 62px;
  font-size: var(--fs-22);
  letter-spacing: 0.1px;
  padding: 14px 32px;
}
.btn-md {
  height: 52px;
  font-size: var(--fs-18);
  padding: 12px 18px;
}
.btn-sm {
  height: 48px;
  padding: 10px 18px;
}
.btn-disabled {
  background-color: var(--gray-400);
}
/* Buttons */

/* Newrich Logo Section */
.brand-logo-section {
  background-color: var(--blue-50);
  padding: 72px 0;
  border-radius: 48px;
}
.brand-logo-section .main-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-logo-section .heading {
  font-size: var(--fs-48);
  font-weight: var(--fw-700);
  color: var(--blue-900);
  line-height: 1.25;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.brand-logo-section .sm-text {
  font-size: var(--fs-18);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 32px;
}
.brand-logo-section .vertical-logo {
  display: block;
  width: 180px;
}
.brand-logo-section .desc {
  width: 100%;
  max-width: 580px;
  font-size: var(--fs-20);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 32px auto 0;
}
/* Newrich Logo Section */

/* Form Section */
.form-section {
  padding: 72px 0;
}
.form-section .main-flex {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.form-section .sec-heading {
  font-size: var(--fs-48);
  font-weight: var(--fw-700);
  color: var(--blue-800);
  line-height: 1.25;
  letter-spacing: -0.96px;
  text-align: center;
  margin-bottom: 20px;
}
.form-section .sec-desc {
  font-size: var(--fs-18);
  font-weight: var(--fw-400);
  color: var(--gray-700);
  line-height: 1.5;
  text-align: center;
}
.form-section .sec-desc.fs {
  font-size: var(--fs-20);
}
.form-section .btn-join {
  width: 240px;
  font-size: var(--fs-20);
  margin: 40px auto;
}
.form-section form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin: 64px auto;
}
.form-section form .brand-label {
  display: block;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 6px;
}
.form-section form .brand-label span {
  color: #d92d20;
}
.form-section form .brand-field {
  display: block;
  height: 44px;
  width: 100%;
  padding: 10px 14px;
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-700);
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  outline: 0;
}
.form-section form .brand-field::-webkit-input-placeholder {
  color: var(--gray-400);
}
.form-section form .brand-field::-moz-placeholder {
  color: var(--gray-400);
}
.form-section form .brand-field:-ms-input-placeholder {
  color: var(--gray-400);
}
.form-section form .brand-field:-moz-placeholder {
  color: var(--gray-400);
}

.form-section form .brand-field.is-invalid {
  border-color: red;
}

span.invalid-feedback {
  color: red;
  font-size: 13px;
}

div.form-success-box {
  text-align: center;
  padding: 15px;
  background-color: #ffff0040;
  border-radius: 8px;
}

.form-section form .iti--allow-dropdown {
  width: 100%;
}
.form-section .form-heading {
  font-size: var(--fs-36);
  font-weight: var(--fw-600);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: -0.72px;
  text-align: center;
  margin-top: 24px;
}
.form-section form .item-check label {
  position: relative;
  display: block;
  padding-left: 32px;
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 24px;
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.form-section form .item-check label a {
  display: inline-block;
  color: var(--gray-600);
  text-decoration: underline;
}
.form-section form .item-check label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon-checkbox-unchecked.png");
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.form-section form .item-check input:checked + label::before {
  background-image: url("../images/icons/icon-checkbox-checked.png");
}
.form-section form .btn-brand {
  width: 100%;
  margin-top: 8px;
}
/* Form Section */

/* Footer */
.footer {
  padding: 64px 0 48px;
}
.footer .flex {
  display: flex;
  justify-content: space-between;
}
.footer .left .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer .left .footer-logo img {
  width: 165px;
}
.footer .left .footer-desc {
  width: 380px;
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-900);
  line-height: 1.5;
}
.footer .right {
  display: flex;
  column-gap: 120px;
}
.footer .right .footer-links {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  align-items: flex-start;
}
.footer .right .footer-links .title {
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 4px;
}
.footer .right .footer-links .link-item {
  display: block;
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
}
.footer .copyright-bar {
  display: flex;
  align-items: center;
  column-gap: 32px;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--gray-300);
  margin-top: 64px;
}
.footer .copyright-bar .text {
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-500);
  line-height: 1.5;
}
.footer .copyright-bar .social-links {
  display: flex;
  column-gap: 12px;
}
.footer .copyright-bar .social-links .link {
  min-width: 40px;
  width: 40px;
  height: 40px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(21, 112, 239, 0.17);
  border-radius: 50%;
}
.footer .copyright-bar .social-links .link img {
  display: inline-block;
  width: 18px;
  height: 18px;
}
/* Footer */

/* Modal */
.modal {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
  opacity: 0;
  z-index: 1002;
  transition: all 0.2s;
}
.modal.show {
  transform: translateY(0);
  opacity: 1;
}
/* Modal */

/* Resuable Second Last Section */
.repeat-bottom-sec {
  background-image: url("../images/bg-repeat-bottom-sec-lg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 752px;
  padding: 120px 0;
  overflow: hidden;
}
.repeat-bottom-sec .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 88px 0;
  text-align: center;
  border: 1px solid var(--white);
  box-shadow: 0 3px 16px 0 rgba(0, 51, 172, 0.11);
  border-radius: 24px;
  backdrop-filter: blur(5px);
}
.repeat-bottom-sec .heading {
  font-size: var(--fs-48);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.repeat-bottom-sec .desc {
  font-size: var(--fs-24);
  font-weight: var(--fw-400);
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 56px;
}
.repeat-bottom-sec .desc span {
  font-weight: var(--fw-700);
}
.repeat-bottom-sec .btn-brand {
  border-radius: 14px;
}
/* Resuable Second Last Section */

/* Newrich Aaccordion */
.nr-accordion-flex {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
.nr-accordion-flex .row-item {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.nr-accordion-flex .row-item .content {
  width: 612px;
}
.nr-accordion-flex .row-item:nth-of-type(even) .content {
  margin-left: auto;
}
.nr-accordion-flex .row-item .content .item-heading {
  font-size: var(--fs-48);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
.nr-accordion-flex .row-item .content .item-desc {
  font-size: var(--fs-20);
  font-weight: var(--fw-400);
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 16px;
}
.nr-accordion-flex .row-item .content .item-desc span {
  font-weight: var(--fw-600);
}
.nr-accordion {
  display: flex;
  flex-direction: column;
}
.nr-accordion .accordion-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.nr-accordion .accordion-item .accordion-header {
  position: relative;
  display: flex;
  column-gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 24px;
  cursor: pointer;
  margin: 0;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.nr-accordion .accordion-item .accordion-header .icon {
  height: 40px;
  min-width: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 50%;
  transition: all 0.3s;
}
.nr-accordion .accordion-item input[type="radio"]:checked ~ .accordion-header .icon {
  background-color: var(--blue-200);
}
.nr-accordion .accordion-item .accordion-header .icon img {
  display: block;
  height: 20px;
  width: 20px;
}
.nr-accordion .accordion-item .accordion-header .title {
  font-size: var(--fs-24);
  font-weight: var(--fw-500);
  color: var(--gray-900);
  line-height: 1.35;
  margin-top: 4px;
}
.nr-accordion .accordion-item .accordion-header .dd-icon {
  position: absolute;
  top: 16px;
  right: 8px;
  width: 8px;
  margin-left: auto;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.nr-accordion .accordion-item input[type="radio"]:checked ~ .accordion-header .dd-icon {
  transform: rotate(180deg);
}
.nr-accordion .accordion-item .accordion-body {
  max-height: 0;
  transition: all 0.3s;
  overflow: hidden;
}
.nr-accordion .accordion-item input[type="radio"]:checked ~ .accordion-body {
  max-height: 200px;
}
.nr-accordion .accordion-item .accordion-body .text {
  font-size: var(--fs-18);
  font-weight: var(--fw-400);
  color: var(--gray-700);
  line-height: 1.5;
  margin-top: 12px;
}
/* Newrich Aaccordion */

@media screen and (max-width: 1399.98px) and (min-width: 1200px) {
  .navbar {
    padding: 18px 0;
  }
  .navbar.scrolled {
    padding: 14px 0;
  }
  .navbar .navbar-brand img {
    width: 150px;
  }
  .navbar .nav-links .link {
    font-size: var(--fs-14);
  }

  .sidebar {
    width: 300px;
    padding: 20px 64px 20px 20px;
  }
  .sidebar .sidebar-header {
    margin-bottom: 10px;
  }
  .sidebar .sidebar-header .logo img {
    width: 130px;
  }
  .sidebar .sidebar-links {
    margin-left: -4px;
  }
  .sidebar .sidebar-links .link {
    height: 48px;
    padding: 0 6px;
    font-size: var(--fs-15);
  }
  .sidebar .social-links {
    margin: 20px 0 20px;
    column-gap: 12px;
  }
  .sidebar .social-links .link {
    min-width: 28px;
    width: 28px;
    height: 28px;
  }
  .sidebar .social-links .link .icon {
    width: 13px;
    height: 13px;
  }
  .btn-close-sidebar-lg {
    top: 20px;
    right: 320px;
    height: 30px;
    width: 30px;
  }
  .btn-close-sidebar-lg .icon {
    width: 18px;
    height: 18px;
  }

  .main {
    padding-top: 73px;
  }

  .container {
    max-width: 1170px;
  }

  .btn-brand {
    font-size: var(--fs-14);
  }
  .btn-lg {
    height: 54px;
    font-size: var(--fs-16);
    padding: 8px 20px;
  }
  .btn-md {
    height: 46px;
    padding: 10px 18px;
  }
  .btn-sm {
    height: 42px;
    padding: 10px 16px;
  }

  .brand-logo-section {
    padding: 65px 0;
  }
  .brand-logo-section .heading {
    font-size: var(--fs-42);
  }
  .brand-logo-section .sm-text {
    font-size: var(--fs-16);
    margin-bottom: 28px;
  }
  .brand-logo-section .vertical-logo {
    width: 160px;
  }
  .brand-logo-section .desc {
    max-width: 520px;
    font-size: var(--fs-18);
    margin: 28px auto 0;
  }

  .form-section {
    padding: 65px 0;
  }
  .form-section .main-flex {
    max-width: 680px;
  }
  .form-section .sec-heading {
    font-size: var(--fs-42);
    margin-bottom: 16px;
  }
  .form-section .sec-desc {
    font-size: var(--fs-16);
  }
  .form-section .sec-desc.fs {
    font-size: var(--fs-18);
  }
  .form-section form {
    max-width: 450px;
    row-gap: 20px;
    margin: 48px auto;
  }
  .form-section form .btn-brand {
    margin-top: 4px;
  }

  .footer {
    padding: 56px 0 40px;
    border-radius: 40px 40px 0 0;
  }
  .footer .left .footer-logo img {
    width: 150px;
  }
  .footer .left .footer-desc {
    width: 360px;
    font-size: var(--fs-15);
  }
  .footer .right {
    column-gap: 100px;
  }
  .footer .right .footer-links .link-item {
    font-size: var(--fs-15);
  }
  .footer .copyright-bar {
    column-gap: 28px;
    padding-top: 28px;
    margin-top: 56px;
  }
  .footer .copyright-bar .text {
    font-size: var(--fs-15);
  }

  .repeat-bottom-sec {
    background-size: 100% 680px;
    padding: 100px 0;
  }
  .repeat-bottom-sec .card {
    padding: 72px 0;
  }
  .repeat-bottom-sec .heading {
    font-size: var(--fs-44);
  }
  .repeat-bottom-sec .desc {
    font-size: var(--fs-20);
    margin-bottom: 40px;
  }

  .nr-accordion-flex {
    row-gap: 80px;
  }
  .nr-accordion-flex .row-item .content {
    width: 550px;
  }
  .nr-accordion-flex .row-item .content .item-heading {
    font-size: var(--fs-44);
  }
  .nr-accordion-flex .row-item .content .item-desc {
    font-size: var(--fs-18);
  }
  .nr-accordion .accordion-item {
    padding: 20px 0;
  }
  .nr-accordion .accordion-item .accordion-header {
    column-gap: 14px;
    padding-right: 20px;
  }
  .nr-accordion .accordion-item .accordion-header .icon {
    height: 32px;
    min-width: 32px;
    width: 32px;
  }
  .nr-accordion .accordion-item .accordion-header .icon img {
    height: 16px;
    width: 16px;
  }
  .nr-accordion .accordion-item .accordion-header .title {
    font-size: var(--fs-20);
  }
  .nr-accordion .accordion-item .accordion-header .dd-icon {
    top: 13px;
    right: 6px;
  }
  .nr-accordion .accordion-item .accordion-body .text {
    font-size: var(--fs-16);
  }
}

@media screen and (max-width: 1199.98px) and (min-width: 992px) {
  .navbar {
    padding: 16px 0;
  }
  .navbar.scrolled {
    padding: 12px 0;
  }
  .navbar .navbar-brand img {
    width: 140px;
  }
  .navbar .nav-links .link {
    height: 32px;
    padding: 0 8px;
    font-size: var(--fs-13);
  }
  .navbar .nav-links .separator {
    height: 18px;
    margin: 7px 4px;
  }
  .navbar .nav-links .btn-brand {
    height: 32px;
    padding: 8px 12px;
  }
  .navbar .nav-links .sidebar-toggler {
    height: 32px;
    width: 32px;
  }
  .navbar .nav-links .sidebar-toggler .icon {
    width: 18px;
    height: 18px;
  }

  .sidebar {
    width: 270px;
    padding: 20px 48px 20px 20px;
  }
  .sidebar .sidebar-header {
    margin-bottom: 12px;
  }
  .sidebar .sidebar-header .logo img {
    width: 120px;
  }
  .sidebar .sidebar-links {
    margin-left: -4px;
  }
  .sidebar .sidebar-links .link {
    height: 44px;
    padding: 0 6px;
    font-size: var(--fs-14);
  }
  .sidebar .social-links {
    margin: 20px 0 24px;
    column-gap: 12px;
  }
  .sidebar .social-links .link {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .sidebar .social-links .link .icon {
    width: 12px;
    height: 12px;
  }
  .btn-close-sidebar-lg {
    top: 16px;
    right: 286px;
    height: 28px;
    width: 28px;
  }
  .btn-close-sidebar-lg .icon {
    width: 16px;
    height: 16px;
  }

  .main {
    padding-top: 67px;
  }

  .container {
    max-width: 960px;
  }

  .btn-brand {
    column-gap: 6px;
    font-size: var(--fs-14);
    border-radius: 6px;
  }
  .btn-lg {
    height: 44px;
    font-size: var(--fs-16);
    padding: 8px 20px;
  }
  .btn-md {
    height: 42px;
    padding: 10px 16px;
  }
  .btn-sm {
    height: 40px;
    padding: 8px 14px;
  }

  .brand-logo-section {
    padding: 60px 0;
    border-radius: 40px;
  }
  .brand-logo-section .heading {
    font-size: var(--fs-36);
    margin-bottom: 12px;
  }
  .brand-logo-section .sm-text {
    font-size: var(--fs-14);
    margin-bottom: 24px;
  }
  .brand-logo-section .vertical-logo {
    width: 140px;
  }
  .brand-logo-section .desc {
    max-width: 460px;
    font-size: var(--fs-16);
    margin: 24px auto 0;
  }

  .form-section {
    padding: 60px 0;
  }
  .form-section .main-flex {
    max-width: 630px;
  }
  .form-section .sec-heading {
    font-size: var(--fs-36);
    margin-bottom: 16px;
  }
  .form-section .sec-desc {
    font-size: var(--fs-14);
  }
  .form-section .sec-desc.fs {
    font-size: var(--fs-16);
  }
  .form-section form {
    max-width: 400px;
    row-gap: 18px;
    margin: 40px auto;
  }
  .form-section .form-heading {
    font-size: var(--fs-30);
  }
  .form-section form .item-check label {
    padding-left: 28px;
    font-size: var(--fs-14);
    line-height: 21px;
  }
  .form-section form .item-check label::before {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  .form-section form .btn-brand {
    margin-top: 4px;
  }

  .footer {
    padding: 48px 0 32px;
    border-radius: 40px 40px 0 0;
  }
  .footer .left .footer-logo img {
    width: 140px;
  }
  .footer .left .footer-desc {
    width: 330px;
    font-size: var(--fs-14);
  }
  .footer .right {
    column-gap: 70px;
  }
  .footer .right .footer-links {
    row-gap: 10px;
  }
  .footer .right .footer-links .title {
    font-size: var(--fs-12);
  }
  .footer .right .footer-links .link-item {
    font-size: var(--fs-14);
  }
  .footer .copyright-bar {
    padding-top: 24px;
    margin-top: 48px;
  }
  .footer .copyright-bar .text {
    font-size: var(--fs-14);
  }
  .footer .copyright-bar .social-links {
    column-gap: 10px;
  }
  .footer .copyright-bar .social-links .link {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .footer .copyright-bar .social-links .link img {
    width: 16px;
    height: 16px;
  }

  .repeat-bottom-sec {
    background-size: 100% 560px;
    padding: 80px 0;
  }
  .repeat-bottom-sec .card {
    padding: 60px 0;
  }
  .repeat-bottom-sec .heading {
    font-size: var(--fs-36);
    margin-bottom: 20px;
  }
  .repeat-bottom-sec .desc {
    font-size: var(--fs-18);
    margin-bottom: 36px;
  }

  .nr-accordion-flex {
    row-gap: 72px;
  }
  .nr-accordion-flex .row-item .content {
    width: 490px;
  }
  .nr-accordion-flex .row-item .content .item-heading {
    font-size: var(--fs-40);
    margin-bottom: 12px;
  }
  .nr-accordion-flex .row-item .content .item-desc {
    font-size: var(--fs-16);
    margin-bottom: 12px;
  }
  .nr-accordion .accordion-item {
    padding: 16px 0;
  }
  .nr-accordion .accordion-item .accordion-header {
    column-gap: 12px;
    padding-right: 20px;
  }
  .nr-accordion .accordion-item .accordion-header .icon {
    height: 30px;
    min-width: 30px;
    width: 30px;
  }
  .nr-accordion .accordion-item .accordion-header .icon img {
    height: 16px;
    width: 16px;
  }
  .nr-accordion .accordion-item .accordion-header .title {
    font-size: var(--fs-18);
    margin-top: 3px;
  }
  .nr-accordion .accordion-item .accordion-header .dd-icon {
    top: 12px;
    right: 6px;
  }
  .nr-accordion .accordion-item .accordion-body .text {
    font-size: var(--fs-14);
  }
}

@media screen and (max-width: 991.98px) and (min-width: 768px) {
  .container {
    max-width: 760px;
  }
  .navbar .auth-btns {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .navbar {
    padding: 14px 0;
  }
  .navbar.scrolled {
    padding: 14px 0;
  }
  .navbar .container {
    justify-content: space-between;
  }
  .navbar .navbar-brand img {
    width: 145px;
  }
  .navbar .nav-links .link,
  .navbar .nav-links .separator,
  .navbar .nav-links .btn-brand {
    display: none;
  }
  .navbar .nav-links .sidebar-toggler {
    height: 32px;
    width: 32px;
  }
  .navbar .nav-links .sidebar-toggler .icon {
    width: 22px;
    height: 22px;
  }

  .sidebar {
    width: 280px;
    padding: 20px 20px 20px 20px;
  }
  .sidebar .sidebar-header .logo img {
    width: 125px;
  }
  .sidebar .sidebar-links {
    margin-left: -6px;
  }
  .sidebar .sidebar-links .link {
    height: 48px;
    padding: 0 6px;
    font-size: var(--fs-15);
  }
  .sidebar .social-links {
    margin: 20px 0 20px;
    column-gap: 12px;
  }
  .sidebar .social-links .link {
    min-width: 28px;
    width: 28px;
    height: 28px;
  }
  .sidebar .social-links .link .icon {
    width: 13px;
    height: 13px;
  }
  .sidebar .auth-btns {
    row-gap: 12px;
  }
  .btn-close-sidebar-lg {
    top: 16px;
    right: 296px;
    height: 32px;
    width: 32px;
  }
  .btn-close-sidebar-lg .icon {
    width: 18px;
    height: 18px;
  }

  .main {
    padding-top: 64px;
  }

  .container {
    max-width: 100%;
  }

  .btn-brand {
    column-gap: 6px;
    font-size: var(--fs-14);
  }
  .btn-lg {
    height: 48px;
    font-size: var(--fs-16);
    padding: 8px 16px;
  }
  .btn-md {
    height: 44px;
    padding: 8px 16px;
  }
  .btn-sm {
    height: 40px;
    padding: 6px 14px;
  }

  .brand-logo-section {
    padding: 45px 0;
    border-radius: 30px;
  }
  .brand-logo-section .heading {
    font-size: var(--fs-36);
    letter-spacing: -0.72px;
  }
  .brand-logo-section .vertical-logo {
    width: 140px;
  }
  .brand-logo-section .desc {
    max-width: 100%;
    font-size: var(--fs-18);
  }

  .form-section {
    padding: 45px 0;
  }
  .form-section .main-flex {
    max-width: 100%;
  }
  .form-section .sec-heading {
    font-size: var(--fs-32);
    letter-spacing: -0.72px;
    margin-bottom: 16px;
  }
  .form-section .sec-desc {
    font-size: var(--fs-16);
  }
  .form-section .sec-desc.fs {
    font-size: var(--fs-18);
  }
  .form-section .btn-join {
    width: 220px;
    font-size: var(--fs-18);
    margin: 32px auto;
  }
  .form-section form {
    max-width: 100%;
    row-gap: 20px;
    margin: 40px auto;
  }
  .form-section .form-heading {
    font-size: var(--fs-28);
    letter-spacing: -0.48px;
    margin-top: 20px;
  }
  .form-section form .btn-brand {
    margin-top: 4px;
  }

  .footer {
    padding: 40px 0 24px;
    border-radius: 30px 30px 0 0;
  }
  .footer .flex {
    flex-direction: column;
    row-gap: 40px;
  }
  .footer .left .footer-logo {
    margin-bottom: 12px;
  }
  .footer .left .footer-logo img {
    width: 145px;
  }
  .footer .left .footer-desc {
    width: 100%;
    font-size: var(--fs-14);
  }
  .footer .right {
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 40px;
    justify-content: space-between;
  }
  .footer .copyright-bar {
    flex-direction: column;
    row-gap: 20px;
    padding-top: 24px;
    margin-top: 40px;
  }
  .footer .copyright-bar .text {
    font-size: var(--fs-14);
    line-height: 1.4;
  }
  .footer .copyright-bar .social-links .link {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .footer .copyright-bar .social-links .link img {
    width: 16px;
    height: 16px;
  }

  .repeat-bottom-sec {
    background-image: url("../images/bg-repeat-bottom-sec-sm.png");
    background-size: 100% 620px;
    padding: 48px 0 48px;
  }
  .repeat-bottom-sec .card {
    padding: 48px 20px;
  }
  .repeat-bottom-sec .heading {
    font-size: var(--fs-36);
    line-height: 1.3;
    letter-spacing: -0.72px;
  }
  .repeat-bottom-sec .desc {
    font-size: var(--fs-18);
    margin-bottom: 32px;
  }

  .nr-accordion-flex {
    row-gap: 24px;
  }
  .nr-accordion-flex .row-item {
    display: block;
  }
  .nr-accordion-flex .row-item .content {
    width: 100%;
  }
  .nr-accordion-flex .row-item .content .item-heading {
    font-size: var(--fs-36);
    letter-spacing: -0.72px;
    margin-bottom: 16px;
  }
  .nr-accordion-flex .row-item .content .item-desc {
    font-size: var(--fs-16);
    margin-bottom: 12px;
  }
  .nr-accordion .accordion-item {
    padding: 20px 0;
  }
  .nr-accordion .accordion-item .accordion-header {
    column-gap: 12px;
    cursor: auto;
  }
  .nr-accordion .accordion-item .accordion-header .icon {
    height: 32px;
    min-width: 32px;
    width: 32px;
  }
  .nr-accordion .accordion-item .accordion-header .icon img {
    height: 16px;
    width: 16px;
  }
  .nr-accordion .accordion-item .accordion-header .title {
    font-size: var(--fs-18);
    line-height: 1.4;
  }
  .nr-accordion .accordion-item .accordion-header .dd-icon {
    top: 14px;
    right: 2px;
  }
  .nr-accordion .accordion-item input[type="radio"]:checked ~ .accordion-body {
    max-height: 400px;
  }
  .nr-accordion .accordion-item .accordion-body .text {
    font-size: var(--fs-16);
  }
}

/* AOS ANimations CSS */
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  transform: translateZ(0) !important;
}
[data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  transform: translateZ(0) scale(1) !important;
}
[data-aos="fade-up"] {
  transform: translate3d(0, 50px, 0) !important;
}
[data-aos="fade-down"] {
  transform: translate3d(0, -50px, 0) !important;
}
[data-aos="fade-right"] {
  transform: translate3d(-50px, 0, 0) !important;
}
[data-aos="fade-left"] {
  transform: translate3d(50px, 0, 0) !important;
}
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 50px, 0) scale(0.8) !important;
}
