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

ul:not(.disc),
ul:not(.disc) li {
  list-style: none;
}

ul.disc,
ol {
  padding-left: 20px;
}

ol li::marker {
  font-size: var(--font-size-theme);
  font-weight: var(--font-weight-theme);
}

a,
a:hover {
  text-decoration: none;
}

img,
video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: top;
}

.logo img {
  max-height: 40px;
}

strong,
.text-strong {
  font-weight: var(--font-weight-theme);
}

hr {
  height: 1px;
  background-color: var(--hr-color);
  border: none;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

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

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

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

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* @media (min-width: 1800px) {
  .container {
    max-width: 1485px;
  }
} */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right :auto;
  margin-left :auto
}

.position-relative {
  position: relative;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gapY, 0px) var(--gapX, 0px);
}

.d-flex > .item {
  width: calc(100% / var(--columns, 1) - (var(--gapX, 0px) / var(--columns, 1)) * (var(--columns, 1) - 1));
}

.d-flex.columns-2.toLeft > .item:nth-of-type(1),
.d-flex.columns-2.toRight > .item:nth-of-type(2) {
  width: calc(100% / 3 * 2 - var(--gapX, 0px) / 3);
}

.d-flex.columns-2.toLeft > .item:nth-of-type(2),
.d-flex.columns-2.toRight > .item:nth-of-type(1) {
  width: calc(100% / 3 - var(--gapX, 0px) / 3 * 2);
}

.d-flex.columns-1 {
  --columns: 1;
}

.d-flex.columns-2 {
  --columns: 2;
}

.d-flex.columns-3 {
  --columns: 3;
}

.d-flex.columns-4 {
  --columns: 4;
}

.d-flex.columns-5 {
  --columns: 5;
}

.d-flex.columns-6 {
  --columns: 6;
}

.d-flex.columns-8 {
  --columns: 8;
}

.d-flex.gapY-0 {
  --gapY: 0px;
}

.d-flex.gapY-5 {
  --gapY: 5px;
}

.d-flex.gapY-10 {
  --gapY: 10px;
}

.d-flex.gapY-15 {
  --gapY: 15px;
}

.d-flex.gapY-20 {
  --gapY: 20px;
}

.d-flex.gapY-25 {
  --gapY: 25px;
}

.d-flex.gapY-30 {
  --gapY: 30px;
}

.d-flex.gapY-35 {
  --gapY: 35px;
}

.d-flex.gapY-50 {
  --gapY: 50px;
}

.d-flex.gapY-60 {
  --gapY: 60px;
}

.d-flex.gapY-80 {
  --gapY: 80px;
}

.d-flex.gapY-100 {
  --gapY: 100px;
}

.d-flex.gapY-120 {
  --gapY: 120px;
}

.d-flex.gapX-0 {
  --gapX: 0px;
}

.d-flex.gapX-5 {
  --gapX: 5px;
}

.d-flex.gapX-10 {
  --gapX: 10px;
}

.d-flex.gapX-15 {
  --gapX: 15px;
}

.d-flex.gapX-20 {
  --gapX: 20px;
}

.d-flex.gapX-25 {
  --gapX: 25px;
}

.d-flex.gapX-30 {
  --gapX: 30px;
}

.d-flex.gapX-35 {
  --gapX: 35px;
}

.d-flex.gapX-50 {
  --gapX: 50px;
}

.d-flex.gapX-60 {
  --gapX: 60px;
}

.d-flex.gapX-80 {
  --gapX: 80px;
}

.d-flex.gapX-100 {
  --gapX: 100px;
}

.d-flex.gapX-120 {
  --gapX: 120px;
}

.flex-column {
  flex-direction: column;
}

.d-flex.justify-content-center {
  justify-content: center;
}

.d-flex.justify-content-end {
  justify-content: flex-end;
}

.d-flex.justify-content-between {
  justify-content: space-between;
}

.d-flex.align-items-center {
  align-items: center;
}

.d-flex.align-items-end {
  align-items: flex-end;
}

.d-none {
  display: none;
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--white-color, #fff);
}

.bg-black {
  background-color: var(--black-bg-color, var(--black-color, #000));
}

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color, #000);
  opacity: var(--overlay-opacity, .3);
}

.overlay > * {
  position: var(--overlay-content-position, relative);
  z-index: 1;
}

.text-primary,
.text-primary * {
  color: var(--primary-color);
}

.text-secondary,
.text-secondary * {
  color: var(--secondary-color);
}

.text-white,
.text-white * {
  color: var(--white-color, #fff);
}

.text-black,
.text-black * {
  color: var(--black-color, #000);
}

.text-grey,
.text-grey * {
  color: var(--grey-color, #666);
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize;
}

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

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

.button {
  display: inline-block;
  border: var(--button-border, none);
  cursor: pointer;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.mw-375 {
  max-width: 375px;
}

.mw-545 {
  max-width: 545px;
}

.mw-690 {
  max-width: 690px;
}

.h-100 {
  height: 100%;
}

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

.pt-10 {
  padding-top: 10px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-200 {
  padding-bottom: 200px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-150 {
  margin-bottom: 150px;
}