/* bottom space margin and padding*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.py-100 {
  padding: 100px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-80 {
  padding: 80px 0;
}

/* text align style */
.text-center {
  text-align: center;
}

.text-center [class*="heading-"] {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.math-auto {
  text-transform: math-auto;
}

.none-case {
  text-transform: none;
}

/* FLEX  */

/* flex container */
.flex-container {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

/* .flex-container:has(.content-block) {
  align-items: center;
} */

.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-start {
  -ms-flex-pack: flex-start !important;
  justify-content: flex-start;
}

.justify-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch;
}

.inline-flex {
  display: inline-flex;
}

.flex-none {
  flex: none;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

/* column style  */
.col-5 {
  width: 20%;
}

.width33,
.form-row .col-3 {
  width: 33.33%;
}

.width25,
.col-4 {
  width: 25%;
}

.col-6 {
  width: 50%;
}

.w-full,
.col-12 {
  width: 100%;
}

/* -------------- Subtitle Heading -------------- */
.sub-title {
  font-size: 16px;
  color: var(--theme);
  text-transform: uppercase;
}

/*-----HELPER-----*/
.bgimg {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  max-width: inherit;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100% !important;
  z-index: -1;
  overflow: hidden;
}


/* ------------ Background Color ------------ */
.bg_grey {
  background-color: var(--bg_grey);
}

.text-white,
.white {
  color: var(--white) !important;
}

/* ------------- STRUCTURE ------------- */

.container::before,
.container::after,
.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
}

.container::after,
.clearfix::after {
  clear: both;
}

.container-fluid {
  padding: 0 50px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}


/* link and btn  */
a,
button {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  cursor: pointer;
}


@media (max-width: 1900px) {}

@media (max-width: 1800px) {}

@media (max-width: 1599.98px) {

  .mb-90,
  .mb-100,
  .mb-110 {
    margin-bottom: 80px;
  }

  .py-100,
  .py-90,
  .py-80 {
    padding: 80px 0;
  }

}

@media (max-width: 1439.98px) {

  .mb-80,
  .mb-90,
  .mb-100,
  .mb-110 {
    margin-bottom: 60px;
  }

  .py-100,
  .py-90,
  .py-80 {
    padding: 60px 0;
  }
}

@media (max-width: 1199.98px) {

  .mb-70,
  .mb-80,
  .mb-90,
  .mb-100,
  .mb-110 {
    margin-bottom: 40px;
  }

  .py-100,
  .py-90,
  .py-80 {
    padding: 40px 0;
  }
}

@media (max-width: 992px) {

  .mb-40,
  .mb-50,
  .mb-60,
  .mb-70,
  .mb-80,
  .mb-90,
  .mb-100,
  .mb-110 {
    margin-bottom: 30px;
  }

  .py-100,
  .py-90,
  .py-80 {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {}