/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 26, 26, 26;
  --color-red: 224, 0, 0;
  --color-default: 77, 77, 77;
  --color-grey-40: 102, 102, 102;
  --color-grey-50: 80, 80, 80;
  --color-grey-60: 153, 153, 153;
  --color-grey-80: 128, 128, 128;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #e6e6e6;
  margin: 40px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #ebebeb;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-red));
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: "Lexend";
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: rgba(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 52px;
  line-height: 66px;
  letter-spacing: -0.25px;
}

h2 {
  font-size: 56px;
  line-height: 63px;
}

h3 {
  font-size: 36px;
  line-height: 45px;
}

h4 {
  font-size: 26px;
  line-height: 40px;
}

h5 {
  font-size: 24px;
  line-height: 32px;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 21px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 22px;
  line-height: 40px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-default {
  color: rgba(var(--color-default));
}

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

.color-red {
  color: rgb(var(--color-red));
}

.color-gray-80 {
  color: rgb(var(--color-grey-80));
}

.color-gray-40 {
  color: rgb(var(--color-grey-40));
}

/* ========== Forms & Input ========== */

.form-control {
  box-sizing: border-box;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #edeeed;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #ffffff;
  border: 1px solid #e9e7ec;
}

.search-wrapper .form-control {
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-dark));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  padding: 14px 18px 14px 40px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.icon-search {
  position: absolute;
  left: 13px;
  top: 5px;
}

.form-control::placeholder {
  color: rgb(var(--color-grey-60));
  opacity: 1;
}

.form-check-input:checked {
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.form-check-input:focus {
  border-color: rgb(var(--color-red));
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(224, 0, 0, 0.25);
}

/* ========== Button ========== */

.btn {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

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

.btn:active {
  outline: 0;
  border: 0;
}

.btn-primary {
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.btn-primary:hover {
  background-color: #bf0d0d;
  border-color: #bf0d0d;
}

.btn-secondary {
  background: rgb(var(--color-white));
  border: 1px solid #e6e6e6;
  color: rgb(var(--color-default));
}

.btn-outline-light {
  font-size: 16px;
  color: rgb(var(--color-default));
  border: 1px solid #e6e6e6;
}

.btn-outline-light:hover {
  font-size: 16px;
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-red));
  border: 1px solid rgb(var(--color-red));
}

.btn-outline-light svg {
  fill: rgb(var(--color-default));
}

.btn-outline-light:hover svg {
  fill: rgb(var(--color-white));
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
}

/* ========== Menu Mobile ========== */
.mobile-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show {
  left: 0;
}

.overlay-mobile {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay-mobile.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

/* ========== Content ========== */
.hero {
  background-size: cover;
  position: relative;
  height: 450px;
  display: flex;
  padding-top: 100px;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(249, 249, 249, 0.95) 0%,
    rgba(249, 249, 249, 0.7) 109.53%
  );
}

.hero::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 100px;
  background: #ffffff;
  transform: rotate(-3deg);
  bottom: -60px;
  left: 0;
}

.section {
  padding: 80px 0;
}

.info-bd {
  width: calc(100% - 64px);
}

.breadcrumb-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #4d4d4d;
  text-transform: uppercase;
}

.breadcrumb-item a {
  color: rgb(var(--color-grey-80));
}

.breadcrumb-item a:hover {
  color: rgb(var(--color-red));
}

.breadcrumb-item.active {
  color: rgb(var(--color-default));
}

.side-control {
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.1), 0px 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: 0;
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-red));
  background-color: #ffe5e5;
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.icon-side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
      0deg,
      rgba(199, 199, 199, 0.08),
      rgba(199, 199, 199, 0.08)
    ),
    #fdfdfd;
  border-radius: 52px;
}

.accordion-button:not(.collapsed) .icon-side {
  background: rgb(var(--color-red));
}

.icon-side svg {
  fill: rgb(var(--color-default));
}

.accordion-button:not(.collapsed) .icon-side svg {
  fill: rgb(var(--color-white));
}

.accordion-button::after {
  content: "";
  margin-left: auto;
  margin-right: 5px;
  display: inline-block;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 9px;
  height: 9px;
  transform: rotate(-137deg);
  background-image: none;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  border-left: 2px solid rgb(var(--color-red));
  border-bottom: 2px solid rgb(var(--color-red));
  transform: rotate(-224deg);
  margin-top: 8px;
}

.link-body {
  background-color: #f9f9f9;
  display: block;
  padding: 14px 25px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.15px;
  color: #4d4d4d;
}

.link-support {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: all 100ms ease-in-out;
}

.link-support:hover,
.link-support.active {
  color: rgb(var(--color-red));
  background-color: #ffe5e5;
}

.link-support:hover .icon-side,
.link-support.active .icon-side {
  background: rgb(var(--color-red));
  transition: all 100ms ease-in-out;
}

.link-support:hover .icon-side svg,
.link-support.active .icon-side svg {
  fill: rgb(var(--color-white));
}

.cta {
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  padding: 60px 0;
}

.cta::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(249, 249, 249, 0.7) 0%,
    rgba(249, 249, 249, 0.35) 100%
  );
}

.box-content {
  padding: 24px;
  background: #ffffff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1), 0px 2px 6px 2px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.form-check {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.15px;
  color: rgb(var(--color-grey-60));
}

.form-label.required::after {
  content: "*";
  color: rgb(var(--color-red));
}

.card-title {
  font-family: "Lexend";
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #323232;
}

.inner-card {
  min-height: 350px;
}

/* ========== Popup ========== */
.modal-overlay {
  content: "";
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ========== Swiper Override ========== */

/* ========== Footer ========== */

/* ========== overide ========== */

/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1025px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1224px;
  }

  .hide-desktop {
    display: none;
  }
}

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

@media (min-width: 1025px) and (max-width: 1199px) {
}

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

@media (max-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
}

@media (max-width: 1000px) and (orientation: landscape) {
}

@media (max-width: 700px) and (orientation: landscape) {
}

/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
