/*
Description: Utility classes to build all website elements


    ##### Table of Content #####

    - Background Colors
    - Background Images
    - Background Repeat
    - Background Size
    - Border
    - BoxShadow
    - Display
    - FontColor
    - FontDecoration
    - FontSize
    - Gradient
    - Height
    - Lists
    - Margin
    - Opacity
    - Overflow
    - Overlay
    - Padding
    - Position
    - Scale
    - Scroll padding
    - Section Padding
    - Text Align
    - Transition
    - Width
    - Wrap
    - Z-Index


*/

/* Backgound Colors */
.bg-primary,
.bg-primary_hover:hover {
  background-color: var(--primary-color);
}

.bg-primary-light,
.bg-primary-light_hover:hover {
  background-color: var(--primary-color-light);
}

.bg-primary-dark,
.bg-primary-dark_hover:hover {
  background-color: var(--primary-color-dark);
}

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

.bg-secondary-light,
.bg-secondary-light_hover:hover {
  background-color: var(--secondary-color-light);
}

.bg-secondary-dark,
.bg-secondary-dark_hover:hover {
  background-color: var(--secondary-color-dark);
}

.bg-ternary,
.bg-ternary_hover:hover {
  background-color: var(--ternary-color);
}

.bg-ternary-light,
.bg-ternary-light_hover:hover {
  background-color: var(--ternary-color-light);
}

.bg-ternary-dark,
.bg-ternary-dark_hover:hover {
  background-color: var(--ternary-color-dark);
}

.bg-grey,
.bg-grey_hover:hover {
  background-color: var(--grey-color-dark);
}

.bg-grey-dark,
.bg-grey-dark_hover:hover {
  background-color: var(--grey-color-dark);
}

.bg-grey-light,
.bg-grey-light_hover:hover {
  background-color: var(--grey-color-light);
}

.bg-grey-lighter,
.bg-grey-lighter_hover:hover {
  background-color: var(--grey-color-lighter);
}

.bg-white,
.bg-white_hover:hover {
  background-color: #fff;
}

.bg-black,
.bg-black_hover:hover {
  background-color: #000;
}

.bg-success,
.bg-success_hover:hover {
  background-color: var(--success);
}

.bg-warning,
.bg-warning_hover:hover {
  background-color: var(--warning);
}

.bg-alert,
.bg-alert_hover:hover {
  background-color: var(--alert);
}

.bg-none {
  background-color: transparent;
}

/* Background Image */
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Background Repeat */
.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

/* Background Size */
.bg-auto {
  background-size: auto;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

/* Border */
.border-1 {
  border-color: #000;
  border-style: solid;
  border-width: 1px;
}

.border-2 {
  border-color: #000;
  border-style: solid;
  border-width: 2px;
}

.border-4 {
  border-color: #000;
  border-style: solid;
  border-width: 4px;
}

.border-5 {
  border-color: #000;
  border-style: solid;
  border-width: 5px;
}

.border-6 {
  border-color: #000;
  border-style: solid;
  border-width: 6px;
}

.border-y-1 {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

.border-y-2  {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
}

.border-y-4 {
  border-right: 4px solid #000;
  border-top: 4px solid #000;
}

.border-x-1 {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.border-x-2  {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

.border-x-4 {
  border-left: 4px solid #000;
  border-right: 4px solid #000;
}

.border-b-0 {
  border-bottom: 0;
}

.border-b-1 {
  border-bottom: 1px solid #000;
}

.border-b-2 {
  border-bottom: 2px solid #000;
}

.border-b-4 {
  border-bottom: 4px solid #000;
}

.border-l-0 {
  border-left: 0;
}

.border-l-1 {
  border-left: 1px solid #000;
}

.border-l-2 {
  border-left: 2px solid #000;
}

.border-l-4 {
  border-left: 4px solid #000;
}

.border-r-0 {
  border-right: 0;
}

.border-r-1 {
  border-right: 1px solid #000;
}

.border-r-2 {
  border-right: 2px solid #000;
}

.border-r-4 {
  border-right: 4px solid #000;
}

.border-t-0 {
  border-top: 0;
}

.border-t-1 {
  border-top: 1px solid #000;
}

.border-t-2 {
  border-top: 2px solid #000;
}

.border-t-4 {
  border-top: 4px solid #000;
}

.border-0 {
  border: 0;
}

.border-body,
.border-body_hover:hover {
  border-color: var(--font-color);
}

.border-grey,
.border-grey_hover:hover {
  border-color: var(--grey-color);
}

.border-grey-dark,
.border-grey-dark_hover:hover {
  border-color: var(--grey-color-dark);
}

.border-grey-light,
.border-grey-light_hover:hover {
  border-color: var(--grey-color-light);
}

.border-grey-lighter,
.border-grey-lighter_hover:hover {
  border-color: var(--grey-color-lighter);
}

.border-white,
.border-white_hover:hover {
  border-color: #fff;
}

.border-primary,
.border-primary_hover:hover {
  border-color: var(--primary-color);
}

.border-primary-dark,
.border-primary-dark_hover:hover {
  border-color: var(--primary-color-dark);
}

.border-primary-light,
.border-primary-light_hover:hover {
  border-color: var(--primary-color-light);
}

.border-secondary,
.border-secondary_hover:hover {
  border-color: var(--secondary-color);
}

.border-secondary-dark,
.border-secondary-dark_hover:hover {
  border-color: var(--secondary-color-dark);
}

.border-secondary-light,
.border-secondary-light_hover:hover {
  border-color: var(--secondary-color-light);
}

.border-ternary,
.border-ternary_hover:hover {
  border-color: var(--ternary-color);
}

.border-ternary-dark,
.border-ternary-dark_hover:hover {
  border-color: var(--ternary-color-dark);
}

.border-ternary-light,
.border-ternary-light_hover:hover {
  border-color: var(--ternary-color-light);
}

.border-alert,
.border-alert_hover:hover {
  border-color: var(--alert);
}

.rounded-1,
.rounded-1_hover:hover {
  border-radius:1px;
}

.rounded-2,
.rounded-2_hover:hover {
  border-radius:2px;
}

.rounded-4,
.rounded-4_hover:hover {
  border-radius:4px;
}

.rounded-8,
.rounded-8_hover:hover {
  border-radius:8px;
}

.rounded-top-1,
.rounded-top-1_hover:hover {
  border-radius: 1px 1px 0 0;
}

.rounded-top-2,
.rounded-top-2_hover:hover {
  border-radius: 2px 2px 0 0;
}

.rounded-top-4,
.rounded-top-4_hover:hover {
  border-radius: 4px 4px 0 0;
}

.rounded-top-8,
.rounded-top-8_hover:hover {
  border-radius: 8px 8px 0 0;
}

.rounded-bottom-1,
.rounded-bottom-1_hover:hover {
  border-radius: 0 0 1px 1px;
}

.rounded-bottom-2,
.rounded-bottom-2_hover:hover {
  border-radius: 0 0 2px 2px;
}

.rounded-bottom-4,
.rounded-bottom-4_hover:hover {
  border-radius: 0 0 4px 4px;
}

.rounded-bottom-8,
.rounded-bottom-8_hover:hover {
  border-radius: 0 0 8px 8px;
}

.rounded-pill,
.rounded-pill_hover:hover {
  border-radius:50px;
}

.rounded-circle,
.rounded-circle_hover:hover {
  border-radius:100%;
}

.border-dotted {
  border-style: dotted;
}

.border-dashed {
  border-style: dashed;
}

.border-double {
  border-style: double;
}

/* BoxShadow */
.shadow-1,
.shadow-1_hover:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-2,
.shadow-2_hover:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-3,
.shadow-3_hover:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Display */
.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

@media screen and (min-width: 576px) {
  .d-sm-block {
    display: block;
  }

  .d-sm-flex {
    display: flex;
  }

  .d-sm-inline {
    display: inline;
  }

  .d-sm-inline-block {
    display: inline-block;
  }

  .d-sm-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .d-md-block {
    display: block;
  }

  .d-md-flex {
    display: flex;
  }

  .d-md-inline {
    display: inline;
  }

  .d-md-inline-block {
    display: inline-block;
  }

  .d-md-none {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-block {
    display: block;
  }

  .d-lg-flex {
    display: flex;
  }

  .d-lg-inline {
    display: inline;
  }

  .d-lg-inline-block {
    display: inline-block;
  }

  .d-lg-none {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .d-xl-block {
    display: block;
  }

  .d-xl-flex {
    display: flex;
  }

  .d-xl-inline {
    display: inline;
  }

  .d-xl-inline-block {
    display: inline-block;
  }

  .d-xl-none {
    display: none;
  }
}

/* FontColor */
.text-body,
a.text-body,
.text-body_hover:hover,
a.text-body_hover:hover {
  color: var(--font-color);
}

.text-light,
a.text-light,
.text-light_hover:hover,
a.text-light_hover:hover {
  color: var(--font-color-light);
}

.text-dark,
a.text-dark,
.text-dark_hover:hover,
a.text-dark_hover:hover {
  color: var(--font-color-dark);
}

.text-white,
a.text-white,
.text-white_hover:hover,
a.text-white_hover:hover {
  color: #fff;
}

.text-primary,
a.text-primary,
.text-primary_hover:hover,
a.text-primary_hover:hover {
  color: var(--primary-color);
}

.text-primary-light,
a.text-primary-light,
.text-primary-light_hover:hover,
a.text-primary-light_hover:hover {
  color: var(--primary-color-light);
}

.text-primary-dark,
a.text-primary-dark,
.text-primary-dark_hover:hover,
a.text-primary-dark_hover:hover {
  color: var(--primary-color-dark);
}

.text-secondary,
a.text-secondary,
.text-secondary_hover:hover,
a.text-secondary_hover:hover {
  color: var(--secondary-color);
}

.text-secondary-light,
a.text-secondary-light,
.text-secondary-light_hover:hover,
a.text-secondary-light_hover:hover {
  color: var(--secondary-color-light);
}

.text-secondary-dark,
a.text-secondary-dark,
.text-secondary-dark_hover:hover,
a.text-secondary-dark_hover:hover {
  color: var(--secondary-color-dark);
}

.text-ternary,
a.text-ternary,
.text-ternary_hover:hover,
a.text-ternary_hover:hover {
  color: var(--ternary-color);
}

.text-ternary-light,
a.text-ternary-light,
.text-ternary-light_hover:hover,
a.text-ternary-light_hover:hover {
  color: var(--ternary-color-light);
}

.text-ternary-dark,
a.text-ternary-dark,
.text-ternary-dark_hover:hover,
a.text-ternary-dark_hover:hover {
  color: var(--ternary-color-dark);
}

.text-grey,
a.text-grey,
.text-grey_hover:hover,
a.text-grey_hover:hover {
  color: var(--grey-color);
}

.link-button-grey {
  background-color: var(--grey-color-light);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.text-grey-light,
a.text-grey-light,
.text-grey-light_hover:hover,
a.text-grey-light_hover:hover {
  color: var(--grey-color-light);
}

.text-grey-dark,
a.text-grey-dark,
.text-grey-dark_hover:hover,
a.text-grey-dark_hover:hover {
  color: var(--grey-color-dark);
}

.text-success,
a.text-success,
.text-success_hover:hover,
a.text-success_hover:hover {
  color: var(--success);
}

.text-warning,
a.text-warning,
.text-warning_hover:hover,
a.text-warning_hover:hover {
  color: var(--warning);
}

.text-alert,
a.text-alert,
.text-alert_hover:hover,
a.text-alert_hover:hover {
  color: var(--alert);
}

/* FontDecoration */
.underline,
.underline_hover:hover {
  text-decoration: underline;
}

.line-through,
.line-through_hover:hover {
  text-decoration: line-through;
}

.no-underline,
.no-underline_hover:hover {
  text-decoration: none;
}

/* FontSize */
.font-size-1,
.font-size-1_hover:hover {
  font-size: 0.5rem;
}

.font-size-2,
.font-size-2_hover:hover {
  font-size: 0.75rem;
}

.font-size-3,
.font-size-3_hover:hover {
  font-size: 1rem;
}

.font-size-4,
.font-size-4_hover:hover {
  font-size: 1.25rem;
}

.font-size-5,
.font-size-5_hover:hover {
  font-size: 1.75rem;
}

.font-size-6,
.font-size-6_hover:hover {
  font-size: 2rem;
}

.font-size-7,
.font-size-7_hover:hover {
  font-size: 2.5rem;
}

.font-size-8,
.font-size-8_hover:hover {
  font-size: 3rem;
}

@media screen and (min-width: 576px) {
  .font-size-sm-1,
  .font-size-sm-1_hover:hover {
    font-size: 0.5rem;
  }

  .font-size-sm-2,
  .font-size-sm-2_hover:hover {
    font-size: 0.75rem;
  }

  .font-size-sm-3,
  .font-size-sm-3_hover:hover {
    font-size: 1rem;
  }

  .font-size-sm-4,
  .font-size-sm-4_hover:hover {
    font-size: 1.25rem;
  }

  .font-size-sm-5,
  .font-size-sm-5_hover:hover {
    font-size: 1.5rem;
  }

  .font-size-sm-6,
  .font-size-sm-6_hover:hover {
    font-size: 2rem;
  }

  .font-size-sm-7,
  .font-size-sm-7_hover:hover {
    font-size: 2.5rem;
  }

  .font-size-sm-8,
  .font-size-sm-8_hover:hover {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-1,
  .font-size-md-1_hover:hover {
    font-size: 0.5rem;
  }

  .font-size-md-2,
  .font-size-md-2_hover:hover {
    font-size: 0.75rem;
  }

  .font-size-md-3,
  .font-size-md-3_hover:hover {
    font-size: 1rem;
  }

  .font-size-md-4,
  .font-size-md-4_hover:hover {
    font-size: 1.25rem;
  }

  .font-size-md-5,
  .font-size-md-5_hover:hover {
    font-size: 1.5rem;
  }

  .font-size-md-6,
  .font-size-md-6_hover:hover {
    font-size: 2rem;
  }

  .font-size-md-7,
  .font-size-md-7_hover:hover {
    font-size: 2.5rem;
  }

  .font-size-md-8,
  .font-size-md-8_hover:hover {
    font-size: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-1,
  .font-size-lg-1_hover:hover {
    font-size: 0.5rem;
  }

  .font-size-lg-2,
  .font-size-lg-2_hover:hover {
    font-size: 0.75rem;
  }

  .font-size-lg-3,
  .font-size-lg-3_hover:hover {
    font-size: 1rem;
  }

  .font-size-lg-4,
  .font-size-lg-4_hover:hover {
    font-size: 1.25rem;
  }

  .font-size-lg-5,
  .font-size-lg-5_hover:hover {
    font-size: 1.5rem;
  }

  .font-size-lg-6,
  .font-size-lg-6_hover:hover {
    font-size: 2rem;
  }

  .font-size-lg-7,
  .font-size-lg-7_hover:hover {
    font-size: 2.5rem;
  }

  .font-size-lg-8,
  .font-size-lg-8_hover:hover {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-1,
  .font-size-xl-1_hover:hover {
    font-size: 0.5rem;
  }

  .font-size-xl-2,
  .font-size-xl-2_hover:hover {
    font-size: 0.75rem;
  }

  .font-size-xl-3,
  .font-size-xl-3_hover:hover {
    font-size: 1rem;
  }

  .font-size-xl-4,
  .font-size-xl-4_hover:hover {
    font-size: 1.25rem;
  }

  .font-size-xl-5,
  .font-size-xl-5_hover:hover {
    font-size: 1.5rem;
  }

  .font-size-xl-6,
  .font-size-xl-6_hover:hover {
    font-size: 2rem;
  }

  .font-size-xl-7,
  .font-size-xl-7_hover:hover {
    font-size: 2.5rem;
  }

  .font-size-xl-8,
  .font-size-xl-8_hover:hover {
    font-size: 3rem;
  }
}

/* FontWeight */
.font-light,
.font-light_hover:hover {
  font-weight: 300;
}

.font-regular,
.font-regular_hover:hover {
  font-weight: 400;
}

.font-medium,
.font-medium_hover:hover {
  font-weight: 500;
}

.font-bold,
.font-bold_hover:hover {
  font-weight: 700;
}

/* Gradient */
.gradient-1,
.gradient-1_hover:hover {
  background: var(--primary-color);
  background: linear-gradient(
    45deg,
    var(--primary-color-light) 0%,
    var(--primary-color) 50%,
    var(--primary-color-dark) 100%
  );
}

.gradient-1-reverse,
.gradient-1-reverse_hover:hover {
  background: var(--primary-color);
  background: linear-gradient(
    45deg,
    var(--primary-color-dark) 0%,
    var(--primary-color) 50%,
    var(--primary-color-light) 100%
  );
}

.gradient-2,
.gradient-2_hover:hover {
  background: var(--secondary-color);
  background: linear-gradient(
    45deg,
    var(--secondary-color-light) 0%,
    var(--secondary-color) 50%,
    var(--secondary-color-dark) 100%
  );
}

.gradient-2-reverse,
.gradient-2-reverse_hover:hover {
  background: var(--secondary-color);
  background: linear-gradient(
    45deg,
    var(--secondary-color-dark) 0%,
    var(--secondary-color) 50%,
    var(--secondary-color-light) 100%
  );
}

.gradient-3,
.gradient-3_hover:hover {
  background: var(--grey-color);
  background: linear-gradient(
    45deg,
    var(--grey-color-light) 0%,
    var(--grey-color) 50%,
    var(--grey-color-dark) 100%
  );
}

.gradient-3-reverse,
.gradient-3-reverse_hover:hover {
  background: var(--grey-color);
  background: linear-gradient(
    45deg,
    var(--grey-color-dark) 0%,
    var(--grey-color) 50%,
    var(--grey-color-light) 100%
  );
}

/* Height */
/* height */
.h-100 {
  height: 100%;
}
.h-75 {
  height: 75%;
}
.h-66 {
  height: 66.6666%;
}
.h-50 {
  height: 50%;
}
.h-33 {
  height: 33.3333%;
}
.h-25 {
  height: 25%;
}
.h-auto {
  height: auto;
}

.mh-100 {
  max-height: 100%;
}
.mh-75 {
  max-height: 75%;
}
.mh-50 {
  max-height: 50%;
}
.mh-25 {
  max-height: 25%;
}
.mh-none {
  max-height: none;
}

@media screen and (min-height: 578px) {
  .h-sm-100 {
    height: 100%;
  }
  .h-sm-75 {
    height: 75%;
  }
  .h-sm-66 {
    height: 66.6666%;
  }
  .h-sm-50 {
    height: 50%;
  }
  .h-sm-33 {
    height: 33.3333%;
  }
  .h-sm-25 {
    height: 25%;
  }
  .h-sm-auto {
    height: auto;
  }

  .mh-sm-100 {
    max-height: 100%;
  }
  .mh-sm-75 {
    max-height: 75%;
  }
  .mh-sm-50 {
    max-height: 50%;
  }
  .mh-sm-25 {
    max-height: 25%;
  }
  .mh-sm-none {
    max-height: none;
  }
}

@media screen and (min-height: 768px) {
  .h-md-100 {
    height: 100%;
  }
  .h-md-75 {
    height: 75%;
  }
  .h-md-66 {
    height: 66.6666%;
  }
  .h-md-50 {
    height: 50%;
  }
  .h-md-33 {
    height: 33.3333%;
  }
  .h-md-25 {
    height: 25%;
  }
  .h-md-auto {
    height: auto;
  }

  .mh-md-100 {
    max-height: 100%;
  }
  .mh-md-75 {
    max-height: 75%;
  }
  .mh-md-50 {
    max-height: 50%;
  }
  .mh-md-25 {
    max-height: 25%;
  }
  .mh-md-none {
    max-height: none;
  }
}

@media screen and (min-height: 992px) {
  .h-lg-100 {
    height: 100%;
  }
  .h-lg-75 {
    height: 75%;
  }
  .h-lg-66 {
    height: 66.6666%;
  }
  .h-lg-50 {
    height: 50%;
  }
  .h-lg-33 {
    height: 33.3333%;
  }
  .h-lg-25 {
    height: 25%;
  }
  .h-lg-auto {
    height: auto;
  }

  .mh-lg-100 {
    max-height: 100%;
  }
  .mh-lg-75 {
    max-height: 75%;
  }
  .mh-lg-50 {
    max-height: 50%;
  }
  .mh-lg-25 {
    max-height: 25%;
  }
  .mh-lg-none {
    max-height: none;
  }
}

/* Lists */
.list-style-none,
.list-style-none li::before {
  content: none;
  list-style: none;
}

/* Margin */
.m-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

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

.ml-0 {
  margin-left: 0;
}

.m-1 {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.mx-1 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mr-1 {
  margin-right: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.ml-1 {
  margin-left: 0.5rem;
}

.m-2 {
  margin-top: 0.75rem;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  margin-left: 0.75rem;
}

.mx-2 {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}

.my-2 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mt-2 {
  margin-top: 0.75rem;
}

.mr-2 {
  margin-right: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.75rem;
}

.ml-2 {
  margin-left: 0.75rem;
}

.m-3 {
  margin-top: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.m-4 {
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.m-5 {
  margin-top: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.mx-5 {
  margin-right: 2rem;
  margin-left: 2rem;
}

.my-5 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mr-5 {
  margin-right: 2rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.ml-5 {
  margin-left: 2rem;
}

.m-6 {
  margin-top: 2.5rem;
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: 2.5rem;
}

.mx-6 {
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}

.my-6 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mt-6 {
  margin-top: 2.5rem;
}

.mr-6 {
  margin-right: 2.5rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

.ml-6 {
  margin-left: 2.5rem;
}

.m-7 {
  margin-top: 3rem;
  margin-right: 3rem;
  margin-bottom: 3rem;
  margin-left: 3rem;
}

.mx-7 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.my-7 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-7 {
  margin-top: 3rem;
}

.mr-7 {
  margin-right: 3rem;
}

.mb-7 {
  margin-bottom: 3rem;
}

.ml-7 {
  margin-left: 3rem;
}

@media screen and (min-width: 576px) {
  .m-sm-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .mx-sm-0 {
    margin-right: 0;
    margin-left: 0;
  }

  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mt-sm-0 {
    margin-top: 0;
  }

  .mr-sm-0 {
    margin-right: 0;
  }

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

  .ml-sm-0 {
    margin-left: 0;
  }

  .m-sm-1 {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
  }

  .mx-sm-1 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .my-sm-1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mt-sm-1 {
    margin-top: 0.5rem;
  }

  .mr-sm-1 {
    margin-right: 0.5rem;
  }

  .mb-sm-1 {
    margin-bottom: 0.5rem;
  }

  .ml-sm-1 {
    margin-left: 0.5rem;
  }

  .m-sm-2 {
    margin-top: 0.75rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 0.75rem;
  }

  .mx-sm-2 {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }

  .my-sm-2 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mt-sm-2 {
    margin-top: 0.75rem;
  }

  .mr-sm-2 {
    margin-right: 0.75rem;
  }

  .mb-sm-2 {
    margin-bottom: 0.75rem;
  }

  .ml-sm-2 {
    margin-left: 0.75rem;
  }

  .m-sm-3 {
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
  }

  .mx-sm-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .my-sm-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mt-sm-3 {
    margin-top: 1rem;
  }

  .mr-sm-3 {
    margin-right: 1rem;
  }

  .mb-sm-3 {
    margin-bottom: 1rem;
  }

  .ml-sm-3 {
    margin-left: 1rem;
  }

  .m-sm-4 {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }

  .mx-sm-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  .my-sm-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mt-sm-4 {
    margin-top: 1.5rem;
  }

  .mr-sm-4 {
    margin-right: 1.5rem;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem;
  }

  .ml-sm-4 {
    margin-left: 1.5rem;
  }

  .m-sm-5 {
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }

  .mx-sm-5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .my-sm-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mt-sm-5 {
    margin-top: 2rem;
  }

  .mr-sm-5 {
    margin-right: 2rem;
  }

  .mb-sm-5 {
    margin-bottom: 2rem;
  }

  .ml-sm-5 {
    margin-left: 2rem;
  }

  .m-sm-6 {
    margin-top: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: 2.5rem;
  }

  .mx-sm-6 {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .my-sm-6 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mt-sm-6 {
    margin-top: 2.5rem;
  }

  .mr-sm-6 {
    margin-right: 2.5rem;
  }

  .mb-sm-6 {
    margin-bottom: 2.5rem;
  }

  .ml-sm-6 {
    margin-left: 2.5rem;
  }

  .m-sm-7 {
    margin-top: 3rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
  }

  .mx-sm-7 {
    margin-right: 3rem;
    margin-left: 3rem;
  }

  .my-sm-7 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mt-sm-7 {
    margin-top: 3rem;
  }

  .mr-sm-7 {
    margin-right: 3rem;
  }

  .mb-sm-7 {
    margin-bottom: 3rem;
  }

  .ml-sm-7 {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .m-md-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .mx-md-0 {
    margin-right: 0;
    margin-left: 0;
  }

  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mt-md-0 {
    margin-top: 0;
  }

  .mr-md-0 {
    margin-right: 0;
  }

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

  .ml-md-0 {
    margin-left: 0;
  }

  .m-md-1 {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
  }

  .mx-md-1 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .my-md-1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mt-sm-1 {
    margin-top: 0.5rem;
  }

  .mr-md-1 {
    margin-right: 0.5rem;
  }

  .mb-md-1 {
    margin-bottom: 0.5rem;
  }

  .ml-md-1 {
    margin-left: 0.5rem;
  }

  .m-md-2 {
    margin-top: 0.75rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 0.75rem;
  }

  .mx-md-2 {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }

  .my-md-2 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mt-sm-2 {
    margin-top: 0.75rem;
  }

  .mr-md-2 {
    margin-right: 0.75rem;
  }

  .mb-md-2 {
    margin-bottom: 0.75rem;
  }

  .ml-md-2 {
    margin-left: 0.75rem;
  }

  .m-md-3 {
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
  }

  .mx-md-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .my-md-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mt-sm-3 {
    margin-top: 1rem;
  }

  .mr-md-3 {
    margin-right: 1rem;
  }

  .mb-md-3 {
    margin-bottom: 1rem;
  }

  .ml-md-3 {
    margin-left: 1rem;
  }

  .m-md-4 {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }

  .mx-md-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  .my-md-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mt-sm-4 {
    margin-top: 1.5rem;
  }

  .mr-md-4 {
    margin-right: 1.5rem;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem;
  }

  .ml-md-4 {
    margin-left: 1.5rem;
  }

  .m-md-5 {
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }

  .mx-md-5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .my-md-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mt-sm-5 {
    margin-top: 2rem;
  }

  .mr-md-5 {
    margin-right: 2rem;
  }

  .mb-md-5 {
    margin-bottom: 2rem;
  }

  .ml-md-5 {
    margin-left: 2rem;
  }

  .m-md-6 {
    margin-top: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: 2.5rem;
  }

  .mx-md-6 {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .my-md-6 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mt-sm-6 {
    margin-top: 2.5rem;
  }

  .mr-md-6 {
    margin-right: 2.5rem;
  }

  .mb-md-6 {
    margin-bottom: 2.5rem;
  }

  .ml-md-6 {
    margin-left: 2.5rem;
  }

  .m-md-7 {
    margin-top: 3rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
  }

  .mx-md-7 {
    margin-right: 3rem;
    margin-left: 3rem;
  }

  .my-md-7 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mt-sm-7 {
    margin-top: 3rem;
  }

  .mr-md-7 {
    margin-right: 3rem;
  }

  .mb-md-7 {
    margin-bottom: 3rem;
  }

  .ml-md-7 {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .m-lg-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .mx-lg-0 {
    margin-right: 0;
    margin-left: 0;
  }

  .my-lg-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mt-lg-0 {
    margin-top: 0;
  }

  .mr-lg-0 {
    margin-right: 0;
  }

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

  .ml-lg-0 {
    margin-left: 0;
  }

  .m-lg-1 {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
  }

  .mx-lg-1 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .my-lg-1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mt-lg-1 {
    margin-top: 0.5rem;
  }

  .mr-lg-1 {
    margin-right: 0.5rem;
  }

  .mb-lg-1 {
    margin-bottom: 0.5rem;
  }

  .ml-lg-1 {
    margin-left: 0.5rem;
  }

  .m-lg-2 {
    margin-top: 0.75rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 0.75rem;
  }

  .mx-lg-2 {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }

  .my-lg-2 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mt-lg-2 {
    margin-top: 0.75rem;
  }

  .mr-lg-2 {
    margin-right: 0.75rem;
  }

  .mb-lg-2 {
    margin-bottom: 0.75rem;
  }

  .ml-lg-2 {
    margin-left: 0.75rem;
  }

  .m-lg-3 {
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
  }

  .mx-lg-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .my-lg-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mt-lg-3 {
    margin-top: 1rem;
  }

  .mr-lg-3 {
    margin-right: 1rem;
  }

  .mb-lg-3 {
    margin-bottom: 1rem;
  }

  .ml-lg-3 {
    margin-left: 1rem;
  }

  .m-lg-4 {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }

  .mx-lg-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  .my-lg-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mt-lg-4 {
    margin-top: 1.5rem;
  }

  .mr-lg-4 {
    margin-right: 1.5rem;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem;
  }

  .ml-lg-4 {
    margin-left: 1.5rem;
  }

  .m-lg-5 {
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }

  .mx-lg-5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .my-lg-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mt-lg-5 {
    margin-top: 2rem;
  }

  .mr-lg-5 {
    margin-right: 2rem;
  }

  .mb-lg-5 {
    margin-bottom: 2rem;
  }

  .ml-lg-5 {
    margin-left: 2rem;
  }

  .m-lg-6 {
    margin-top: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: 2.5rem;
  }

  .mx-lg-6 {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .my-lg-6 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mt-lg-6 {
    margin-top: 2.5rem;
  }

  .mr-lg-6 {
    margin-right: 2.5rem;
  }

  .mb-lg-6 {
    margin-bottom: 2.5rem;
  }

  .ml-lg-6 {
    margin-left: 2.5rem;
  }

  .m-lg-7 {
    margin-top: 3rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
  }

  .mx-lg-7 {
    margin-right: 3rem;
    margin-left: 3rem;
  }

  .my-lg-7 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mt-lg-7 {
    margin-top: 3rem;
  }

  .mr-lg-7 {
    margin-right: 3rem;
  }

  .mb-lg-7 {
    margin-bottom: 3rem;
  }

  .ml-lg-7 {
    margin-left: 3rem;
  }
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-0_hover:hover {
  opacity: 0;
}

.opacity-10 {
  opacity: .1;
}

.opacity-10_hover:hover {
  opacity: .1;
}

.opacity-20 {
  opacity: .2;
}

.opacity-20_hover:hover {
  opacity: .2;
}

.opacity-30 {
  opacity: .3;
}

.opacity-30_hover:hover {
  opacity: .3;
}

.opacity-40 {
  opacity: .4;
}

.opacity-40_hover:hover {
  opacity: .4;
}

.opacity-50 {
  opacity: .5;
}

.opacity-50_hover:hover {
  opacity: .5;
}

.opacity-60 {
  opacity: .6;
}

.opacity-60_hover:hover {
  opacity: .6;
}

.opacity-70 {
  opacity: .7;
}

.opacity-70_hover:hover {
  opacity: .7;
}

.opacity-80 {
  opacity: .8;
}

.opacity-80_hover:hover {
  opacity: .8;
}

.opacity-90 {
  opacity: .9;
}

.opacity-90_hover:hover {
  opacity: .9;
}

.opacity-100 {
  opacity: 1;
}

.opacity-100_hover:hover {
  opacity: 1;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

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

.overflow-x-visible {
  overflow-x: visible;
}

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

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

/* Overlay */
.overlay,
.overlay-primary,
.overlay-primary-light,
.overlay-primary-dark,
.overlay-secondary,
.overlay-secondary-light,
.overlay-secondary-dark,
.overlay-white {
  position: relative;
}

.overlay::before,
.overlay-primary::before,
.overlay-primary-light::before,
.overlay-primary-dark::before,
.overlay-secondary::before,
.overlay-secondary-light::before,
.overlay-secondary-dark::before,
.overlay-white::before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

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

.overlay-primary-light::before {
  background-color: var(--primary-color-light);
}

.overlay-primary-dark::before {
  background-color: var(--primary-color-dark);
}

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

.overlay-secondary-light::before {
  background-color: var(--secondary-color-light);
}

.overlay-secondary-dark::before {
  background-color: var(--secondary-color-dark);
}

.overlay-white::before {
  background-color: #fff;
}

/* Padding */
.p-0 {
  padding-top: 0!important;
  padding-right: 0!important;
  padding-bottom: 0!important;
  padding-left: 0!important;
}

.px-0 {
  padding-right: 0!important;
  padding-left: 0!important;
}

.py-0 {
  padding-top: 0!important;
  padding-bottom: 0!important;
}

.pt-0 {
  padding-top: 0!important;
}

.pr-0 {
  padding-right: 0!important;
}

.pb-0 {
  padding-bottom: 0!important;
}

.pl-0 {
  padding-left: 0!important;
}

.p-small {
  padding-top: 0.25rem!important;
  padding-right: 0.25rem!important;
  padding-bottom: 0.25rem!important;
  padding-left: 0.25rem!important;
}

.py-small {
  padding-top: 0.25rem!important;
  padding-bottom: 0.25rem!important;
}

.px-small {
  padding-right: 0.25rem!important;
  padding-left: 0.25rem!important;
}

.pt-small {
  padding-top: 0.25rem!important;
}

.pr-small {
  padding-right: 0.25rem!important;
}

.pb-small {
  padding-bottom: 0.25rem!important;
}

.pl-small {
  padding-left: 0.25rem!important;
}

.p-1 {
  padding-top: 0.5rem!important;
  padding-right: 0.5rem!important;
  padding-bottom: 0.5rem!important;
  padding-left: 0.5rem!important;
}

.px-1 {
  padding-right: 0.5rem!important;
  padding-left: 0.5rem!important;
}

.py-1 {
  padding-top: 0.5rem!important;
  padding-bottom: 0.5rem!important;
}

.pt-1 {
  padding-top: 0.5rem!important;
}

.pr-1 {
  padding-right: 0.5rem!important;
}

.pb-1 {
  padding-bottom: 0.5rem!important;
}

.pl-1 {
  padding-left: 0.5rem!important;
}

.p-2 {
  padding-top: 0.75rem!important;
  padding-right: 0.75rem!important;
  padding-bottom: 0.75rem!important;
  padding-left: 0.75rem!important;
}

.px-2 {
  padding-right: 0.75rem!important;
  padding-left: 0.75rem!important;
}

.py-2 {
  padding-top: 0.75rem!important;
  padding-bottom: 0.75rem!important;
}

.pt-2 {
  padding-top: 0.75rem!important;
}

.pr-2 {
  padding-right: 0.75rem!important;
}

.pb-2 {
  padding-bottom: 0.75rem!important;
}

.pl-2 {
  padding-left: 0.75rem!important;
}

.p-3 {
  padding-top: 1rem!important;
  padding-right: 1rem!important;
  padding-bottom: 1rem!important;
  padding-left: 1rem!important;
}

.px-3 {
  padding-right: 1rem!important;
  padding-left: 1rem!important;
}

.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}

.pt-3 {
  padding-top: 1rem!important;
}

.pr-3 {
  padding-right: 1rem!important;
}

.pb-3 {
  padding-bottom: 1rem!important;
}

.pl-3 {
  padding-left: 1rem!important;
}

.p-4 {
  padding-top: 1.5rem!important;
  padding-right: 1.5rem!important;
  padding-bottom: 1.5rem!important;
  padding-left: 1.5rem!important;
}

.px-4 {
  padding-right: 1.5rem!important;
  padding-left: 1.5rem!important;
}

.py-4 {
  padding-top: 1.5rem!important;
  padding-bottom: 1.5rem!important;
}

.pt-4 {
  padding-top: 1.5rem!important;
}

.pr-4 {
  padding-right: 1.5rem!important;
}

.pb-4 {
  padding-bottom: 1.5rem!important;
}

.pl-4 {
  padding-left: 1.5rem!important;
}

.p-5 {
  padding-top: 2rem!important;
  padding-right: 2rem!important;
  padding-bottom: 2rem!important;
  padding-left: 2rem!important;
}

.px-5 {
  padding-right: 2rem!important;
  padding-left: 2rem!important;
}

.py-5 {
  padding-top: 2rem!important;
  padding-bottom: 2rem!important;
}

.pt-5 {
  padding-top: 2rem!important;
}

.pr-5 {
  padding-right: 2rem!important;
}

.pb-5 {
  padding-bottom: 2rem!important;
}

.pl-5 {
  padding-left: 2rem!important;
}

.p-6 {
  padding-top: 2.5rem!important;
  padding-right: 2.5rem!important;
  padding-bottom: 2.5rem!important;
  padding-left: 2.5rem!important;
}

.px-6 {
  padding-right: 2.5rem!important;
  padding-left: 2.5rem!important;
}

.py-6 {
  padding-top: 2.5rem!important;
  padding-bottom: 2.5rem!important;
}

.pt-6 {
  padding-top: 2.5rem!important;
}

.pr-6 {
  padding-right: 2.5rem!important;
}

.pb-6 {
  padding-bottom: 2.5rem!important;
}

.pl-6 {
  padding-left: 2.5rem!important;
}

.p-7 {
  padding-top: 3rem!important;
  padding-right: 3rem!important;
  padding-bottom: 3rem!important;
  padding-left: 3rem!important;
}

.px-7 {
  padding-right: 3rem!important;
  padding-left: 3rem!important;
}

.py-7 {
  padding-top: 3rem!important;
  padding-bottom: 3rem!important;
}

.pt-7 {
  padding-top: 3rem!important;
}

.pr-7 {
  padding-right: 3rem!important;
}

.pb-7 {
  padding-bottom: 3rem!important;
}

.pl-7 {
  padding-left: 3rem!important;
}

@media screen and (min-width: 579px) {
  .p-sm-0 {
    padding-top: 0!important;
    padding-right: 0!important;
    padding-bottom: 0!important;
    padding-left: 0!important;
  }

  .px-sm-0 {
    padding-right: 0!important;
    padding-left: 0!important;
  }

  .py-sm-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
  }

  .pt-sm-0 {
    padding-top: 0!important;
  }

  .pr-sm-0 {
    padding-right: 0!important;
  }

  .pb-sm-0 {
    padding-bottom: 0!important;
  }

  .pl-sm-0 {
    padding-left: 0!important;
  }

  .p-sm-1 {
    padding-top: 0.5rem!important;
    padding-right: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .px-sm-1 {
    padding-right: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .py-sm-1 {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
  }

  .pt-sm-1 {
    padding-top: 0.5rem!important;
  }

  .pr-sm-1 {
    padding-right: 0.5rem!important;
  }

  .pb-sm-1 {
    padding-bottom: 0.5rem!important;
  }

  .pl-sm-1 {
    padding-left: 0.5rem!important;
  }

  .p-sm-2 {
    padding-top: 0.75rem!important;
    padding-right: 0.75rem!important;
    padding-bottom: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .px-sm-2 {
    padding-right: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .py-sm-2 {
    padding-top: 0.75rem!important;
    padding-bottom: 0.75rem!important;
  }

  .pt-sm-2 {
    padding-top: 0.75rem!important;
  }

  .pr-sm-2 {
    padding-right: 0.75rem!important;
  }

  .pb-sm-2 {
    padding-bottom: 0.75rem!important;
  }

  .pl-sm-2 {
    padding-left: 0.75rem!important;
  }

  .p-sm-3 {
    padding-top: 1rem!important;
    padding-right: 1rem!important;
    padding-bottom: 1rem!important;
    padding-left: 1rem!important;
  }

  .px-sm-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }

  .py-sm-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
  }

  .pt-sm-3 {
    padding-top: 1rem!important;
  }

  .pr-sm-3 {
    padding-right: 1rem!important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem!important;
  }

  .pl-sm-3 {
    padding-left: 1rem!important;
  }

  .p-sm-4 {
    padding-top: 1.5rem!important;
    padding-right: 1.5rem!important;
    padding-bottom: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .px-sm-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .py-sm-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem!important;
  }

  .pr-sm-4 {
    padding-right: 1.5rem!important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem!important;
  }

  .pl-sm-4 {
    padding-left: 1.5rem!important;
  }

  .p-sm-5 {
    padding-top: 2rem!important;
    padding-right: 2rem!important;
    padding-bottom: 2rem!important;
    padding-left: 2rem!important;
  }

  .px-sm-5 {
    padding-right: 2rem!important;
    padding-left: 2rem!important;
  }

  .py-sm-5 {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
  }

  .pt-sm-5 {
    padding-top: 2rem!important;
  }

  .pr-sm-5 {
    padding-right: 2rem!important;
  }

  .pb-sm-5 {
    padding-bottom: 2rem!important;
  }

  .pl-sm-5 {
    padding-left: 2rem!important;
  }

  .p-sm-6 {
    padding-top: 2.5rem!important;
    padding-right: 2.5rem!important;
    padding-bottom: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .px-sm-6 {
    padding-right: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .py-sm-6 {
    padding-top: 2.5rem!important;
    padding-bottom: 2.5rem!important;
  }

  .pt-sm-6 {
    padding-top: 2.5rem!important;
  }

  .pr-sm-6 {
    padding-right: 2.5rem!important;
  }

  .pb-sm-6 {
    padding-bottom: 2.5rem!important;
  }

  .pl-sm-6 {
    padding-left: 2.5rem!important;
  }

  .p-sm-7 {
    padding-top: 3rem!important;
    padding-right: 3rem!important;
    padding-bottom: 3rem!important;
    padding-left: 3rem!important;
  }

  .px-sm-7 {
    padding-right: 3rem!important;
    padding-left: 3rem!important;
  }

  .py-sm-7 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
  }

  .pt-sm-7 {
    padding-top: 3rem!important;
  }

  .pr-sm-7 {
    padding-right: 3rem!important;
  }

  .pb-sm-7 {
    padding-bottom: 3rem!important;
  }

  .pl-sm-7 {
    padding-left: 3rem!important;
  }
}

@media screen and (min-width: 768px) {
  .p-md-0 {
    padding-top: 0!important;
    padding-right: 0!important;
    padding-bottom: 0!important;
    padding-left: 0!important;
  }

  .px-md-0 {
    padding-right: 0!important;
    padding-left: 0!important;
  }

  .py-md-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
  }

  .pt-md-0 {
    padding-top: 0!important;
  }

  .pr-md-0 {
    padding-right: 0!important;
  }

  .pb-md-0 {
    padding-bottom: 0!important;
  }

  .pl-md-0 {
    padding-left: 0!important;
  }

  .p-md-1 {
    padding-top: 0.5rem!important;
    padding-right: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .px-md-1 {
    padding-right: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .py-md-1 {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
  }

  .pt-md-1 {
    padding-top: 0.5rem!important;
  }

  .pr-md-1 {
    padding-right: 0.5rem!important;
  }

  .pb-md-1 {
    padding-bottom: 0.5rem!important;
  }

  .pl-md-1 {
    padding-left: 0.5rem!important;
  }

  .p-md-2 {
    padding-top: 0.75rem!important;
    padding-right: 0.75rem!important;
    padding-bottom: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .px-md-2 {
    padding-right: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .py-md-2 {
    padding-top: 0.75rem!important;
    padding-bottom: 0.75rem!important;
  }

  .pt-md-2 {
    padding-top: 0.75rem!important;
  }

  .pr-md-2 {
    padding-right: 0.75rem!important;
  }

  .pb-md-2 {
    padding-bottom: 0.75rem!important;
  }

  .pl-md-2 {
    padding-left: 0.75rem!important;
  }

  .p-md-3 {
    padding-top: 1rem!important;
    padding-right: 1rem!important;
    padding-bottom: 1rem!important;
    padding-left: 1rem!important;
  }

  .px-md-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }

  .py-md-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
  }

  .pt-md-3 {
    padding-top: 1rem!important;
  }

  .pr-md-3 {
    padding-right: 1rem!important;
  }

  .pb-md-3 {
    padding-bottom: 1rem!important;
  }

  .pl-md-3 {
    padding-left: 1rem!important;
  }

  .p-md-4 {
    padding-top: 1.5rem!important;
    padding-right: 1.5rem!important;
    padding-bottom: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .px-md-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .py-md-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important;
  }

  .pt-md-4 {
    padding-top: 1.5rem!important;
  }

  .pr-md-4 {
    padding-right: 1.5rem!important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem!important;
  }

  .pl-md-4 {
    padding-left: 1.5rem!important;
  }

  .p-md-5 {
    padding-top: 2rem!important;
    padding-right: 2rem!important;
    padding-bottom: 2rem!important;
    padding-left: 2rem!important;
  }

  .px-md-5 {
    padding-right: 2rem!important;
    padding-left: 2rem!important;
  }

  .py-md-5 {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
  }

  .pt-md-5 {
    padding-top: 2rem!important;
  }

  .pr-md-5 {
    padding-right: 2rem!important;
  }

  .pb-md-5 {
    padding-bottom: 2rem!important;
  }

  .pl-md-5 {
    padding-left: 2rem!important;
  }

  .p-md-6 {
    padding-top: 2.5rem!important;
    padding-right: 2.5rem!important;
    padding-bottom: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .px-md-6 {
    padding-right: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .py-md-6 {
    padding-top: 2.5rem!important;
    padding-bottom: 2.5rem!important;
  }

  .pt-md-6 {
    padding-top: 2.5rem!important;
  }

  .pr-md-6 {
    padding-right: 2.5rem!important;
  }

  .pb-md-6 {
    padding-bottom: 2.5rem!important;
  }

  .pl-md-6 {
    padding-left: 2.5rem!important;
  }

  .p-md-7 {
    padding-top: 3rem!important;
    padding-right: 3rem!important;
    padding-bottom: 3rem!important;
    padding-left: 3rem!important;
  }

  .px-md-7 {
    padding-right: 3rem!important;
    padding-left: 3rem!important;
  }

  .py-md-7 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
  }

  .pt-md-7 {
    padding-top: 3rem!important;
  }

  .pr-md-7 {
    padding-right: 3rem!important;
  }

  .pb-md-7 {
    padding-bottom: 3rem!important;
  }

  .pl-md-7 {
    padding-left: 3rem!important;
  }
}

@media screen and (min-width: 992px) {
  .p-lg-0 {
    padding-top: 0!important;
    padding-right: 0!important;
    padding-bottom: 0!important;
    padding-left: 0!important;
  }

  .px-lg-0 {
    padding-right: 0!important;
    padding-left: 0!important;
  }

  .py-lg-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
  }

  .pt-lg-0 {
    padding-top: 0!important;
  }

  .pr-lg-0 {
    padding-right: 0!important;
  }

  .pb-lg-0 {
    padding-bottom: 0!important;
  }

  .pl-lg-0 {
    padding-left: 0!important;
  }

  .p-lg-1 {
    padding-top: 0.5rem!important;
    padding-right: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .px-lg-1 {
    padding-right: 0.5rem!important;
    padding-left: 0.5rem!important;
  }

  .py-lg-1 {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
  }

  .pt-lg-1 {
    padding-top: 0.5rem!important;
  }

  .pr-lg-1 {
    padding-right: 0.5rem!important;
  }

  .pb-lg-1 {
    padding-bottom: 0.5rem!important;
  }

  .pl-lg-1 {
    padding-left: 0.5rem!important;
  }

  .p-lg-2 {
    padding-top: 0.75rem!important;
    padding-right: 0.75rem!important;
    padding-bottom: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .px-lg-2 {
    padding-right: 0.75rem!important;
    padding-left: 0.75rem!important;
  }

  .py-lg-2 {
    padding-top: 0.75rem!important;
    padding-bottom: 0.75rem!important;
  }

  .pt-lg-2 {
    padding-top: 0.75rem!important;
  }

  .pr-lg-2 {
    padding-right: 0.75rem!important;
  }

  .pb-lg-2 {
    padding-bottom: 0.75rem!important;
  }

  .pl-lg-2 {
    padding-left: 0.75rem!important;
  }

  .p-lg-3 {
    padding-top: 1rem!important;
    padding-right: 1rem!important;
    padding-bottom: 1rem!important;
    padding-left: 1rem!important;
  }

  .px-lg-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }

  .py-lg-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
  }

  .pt-lg-3 {
    padding-top: 1rem!important;
  }

  .pr-lg-3 {
    padding-right: 1rem!important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem!important;
  }

  .pl-lg-3 {
    padding-left: 1rem!important;
  }

  .p-lg-4 {
    padding-top: 1.5rem!important;
    padding-right: 1.5rem!important;
    padding-bottom: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .px-lg-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
  }

  .py-lg-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem!important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem!important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem!important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem!important;
  }

  .p-lg-5 {
    padding-top: 2rem!important;
    padding-right: 2rem!important;
    padding-bottom: 2rem!important;
    padding-left: 2rem!important;
  }

  .px-lg-5 {
    padding-right: 2rem!important;
    padding-left: 2rem!important;
  }

  .py-lg-5 {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
  }

  .pt-lg-5 {
    padding-top: 2rem!important;
  }

  .pr-lg-5 {
    padding-right: 2rem!important;
  }

  .pb-lg-5 {
    padding-bottom: 2rem!important;
  }

  .pl-lg-5 {
    padding-left: 2rem!important;
  }

  .p-lg-6 {
    padding-top: 2.5rem!important;
    padding-right: 2.5rem!important;
    padding-bottom: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .px-lg-6 {
    padding-right: 2.5rem!important;
    padding-left: 2.5rem!important;
  }

  .py-lg-6 {
    padding-top: 2.5rem!important;
    padding-bottom: 2.5rem!important;
  }

  .pt-lg-6 {
    padding-top: 2.5rem!important;
  }

  .pr-lg-6 {
    padding-right: 2.5rem!important;
  }

  .pb-lg-6 {
    padding-bottom: 2.5rem!important;
  }

  .pl-lg-6 {
    padding-left: 2.5rem!important;
  }

  .p-lg-7 {
    padding-top: 3rem!important;
    padding-right: 3rem!important;
    padding-bottom: 3rem!important;
    padding-left: 3rem!important;
  }

  .px-lg-7 {
    padding-right: 3rem!important;
    padding-left: 3rem!important;
  }

  .py-lg-7 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
  }

  .pt-lg-7 {
    padding-top: 3rem!important;
  }

  .pr-lg-7 {
    padding-right: 3rem!important;
  }

  .pb-lg-7 {
    padding-bottom: 3rem!important;
  }

  .pl-lg-7 {
    padding-left: 3rem!important;
  }
}

/* Position */
.relative {
  position: relative!important;
}

.absolute {
  position: absolute!important;
}

.fixed {
  position: fixed!important;
}

.sticky {
  position: sticky!important;
}

.top-0 {
  top: 0!important;
}

.top-1 {
  top: 0.5rem!important;
}

.top-2 {
  top: 1rem!important;
}

.top-3 {
  top: 1.5rem!important;
}

.right-0 {
  right: 0!important;
}

.right-1 {
  right: 0.5rem!important;
}

.right-2 {
  right: 1rem!important;
}

.right-3 {
  right: 1.5rem!important;
}

.bottom-0 {
  bottom: 0!important;
}

.bottom-1 {
  bottom: 0.75rem!important;
}

.bottom-2 {
  bottom: 1rem!important;
}

.bottom-3 {
  bottom: 1.5rem!important;
}

.left-0 {
  left: 0!important;
}

.left-1 {
  left: 0.5rem!important;
}

.left-2 {
  left: 1rem!important;
}

.left-3 {
  left: 1.5rem!important;
}

/* Scale */
.scale-negative,
.scale-negative_hover:hover {
  transform: scale(0.98);
}

.scale-positive,
.scale-positive_hover:hover {
  transform: scale(1.02);
}

/* Scroll padding */
.scroll-padding {
  scroll-padding: 200px;
}


/* Section Padding */
.section-py-0 {
  padding-bottom: 0;
  padding-top: 0;
}

.section-py-1 {
  padding-bottom: 3.75rem; /* 60px */
  padding-top: 3.75rem; /* 60px */
}

.section-py-2 {
  padding-bottom: 5rem; /* 80px */
  padding-top: 5rem; /* 80px */
}

.section-py-3 {
  padding-bottom: 6.25rem;  /* 100px */
  padding-top: 6.25rem;  /* 100px */
}

.section-py-4 {
  padding-bottom: 7.5rem; /* 120px */
  padding-top: 7.5rem; /* 120px */
}

.section-py-5 {
  padding-bottom: 10rem;  /* 160px */
  padding-top: 10rem;  /* 160px */
}

.section-pb-0 {
  padding-bottom: 0;
}

.section-pb-1 {
  padding-bottom: 3.75rem; /* 60px */
}

.section-pb-2 {
  padding-bottom: 5rem; /* 80px */
}

.section-pb-3 {
  padding-bottom: 6.25rem;  /* 100px */
}

.section-pb-4 {
  padding-bottom: 7.5rem; /* 120px */
}

.section-pb-5 {
  padding-bottom: 10rem;  /* 160px */
}

.section-pt-0 {
  padding-top: 0;
}

.section-pt-1 {
  padding-top: 3.75rem; /* 60px */
}

.section-pt-2 {
  padding-top: 5rem; /* 80px */
}

.section-pt-3 {
  padding-top: 6.25rem;  /* 100px */
}

.section-pt-4 {
  padding-top: 7.5rem; /* 120px */
}

.section-pt-5 {
  padding-top: 10rem;  /* 160px */
}

@media screen and (min-width: 576px) {
  .section-sm-py-0 {
    padding-bottom: 0;
    padding-top: 0;
  }

  .section-sm-py-1 {
    padding-bottom: 3.75rem; /* 60px */
    padding-top: 3.75rem; /* 60px */
  }

  .section-sm-py-2 {
    padding-bottom: 5rem; /* 80px */
    padding-top: 5rem; /* 80px */
  }

  .section-sm-py-3 {
    padding-bottom: 6.25rem;  /* 100px */
    padding-top: 6.25rem;  /* 100px */
  }

  .section-sm-py-4 {
    padding-bottom: 7.5rem; /* 120px */
    padding-top: 7.5rem; /* 120px */
  }

  .section-sm-py-5 {
    padding-bottom: 10rem;  /* 160px */
    padding-top: 10rem;  /* 160px */
  }

  .section-sm-pb-0 {
    padding-bottom: 0;
  }

  .section-sm-pb-1 {
    padding-bottom: 3.75rem; /* 60px */
  }

  .section-sm-pb-2 {
    padding-bottom: 5rem; /* 80px */
  }

  .section-sm-pb-3 {
    padding-bottom: 6.25rem;  /* 100px */
  }

  .section-sm-pb-4 {
    padding-bottom: 7.5rem; /* 120px */
  }

  .section-sm-pb-5 {
    padding-bottom: 10rem;  /* 160px */
  }

  .section-sm-pt-0 {
    padding-top: 0;
  }

  .section-sm-pt-1 {
    padding-top: 3.75rem; /* 60px */
  }

  .section-sm-pt-2 {
    padding-top: 5rem; /* 80px */
  }

  .section-sm-pt-3 {
    padding-top: 6.25rem;  /* 100px */
  }

  .section-sm-pt-4 {
    padding-top: 7.5rem; /* 120px */
  }

  .section-sm-pt-5 {
    padding-top: 10rem;  /* 160px */
  }
}

@media screen and (min-width: 768px) {
  .section-md-py-0 {
    padding-bottom: 0;
    padding-top: 0;
  }

  .section-md-py-1 {
    padding-bottom: 3.75rem; /* 60px */
    padding-top: 3.75rem; /* 60px */
  }

  .section-md-py-2 {
    padding-bottom: 5rem; /* 80px */
    padding-top: 5rem; /* 80px */
  }

  .section-md-py-3 {
    padding-bottom: 6.25rem;  /* 100px */
    padding-top: 6.25rem;  /* 100px */
  }

  .section-md-py-4 {
    padding-bottom: 7.5rem; /* 120px */
    padding-top: 7.5rem; /* 120px */
  }

  .section-md-py-5 {
    padding-bottom: 10rem;  /* 160px */
    padding-top: 10rem;  /* 160px */
  }

  .section-md-pb-0 {
    padding-bottom: 0;
  }

  .section-md-pb-1 {
    padding-bottom: 3.75rem; /* 60px */
  }

  .section-md-pb-2 {
    padding-bottom: 5rem; /* 80px */
  }

  .section-md-pb-3 {
    padding-bottom: 6.25rem;  /* 100px */
  }

  .section-md-pb-4 {
    padding-bottom: 7.5rem; /* 120px */
  }

  .section-md-pb-5 {
    padding-bottom: 10rem;  /* 160px */
  }

  .section-md-pt-0 {
    padding-top: 0;
  }

  .section-md-pt-1 {
    padding-top: 3.75rem; /* 60px */
  }

  .section-md-pt-2 {
    padding-top: 5rem; /* 80px */
  }

  .section-md-pt-3 {
    padding-top: 6.25rem;  /* 100px */
  }

  .section-md-pt-4 {
    padding-top: 7.5rem; /* 120px */
  }

  .section-md-pt-5 {
    padding-top: 10rem;  /* 160px */
  }
}

@media screen and (min-width: 992px) {
  .section-lg-py-0 {
    padding-bottom: 0;
    padding-top: 0;
  }

  .section-lg-py-1 {
    padding-bottom: 3.75rem; /* 60px */
    padding-top: 3.75rem; /* 60px */
  }

  .section-lg-py-2 {
    padding-bottom: 5rem; /* 80px */
    padding-top: 5rem; /* 80px */
  }

  .section-lg-py-3 {
    padding-bottom: 6.25rem;  /* 100px */
    padding-top: 6.25rem;  /* 100px */
  }

  .section-lg-py-4 {
    padding-bottom: 7.5rem; /* 120px */
    padding-top: 7.5rem; /* 120px */
  }

  .section-lg-py-5 {
    padding-bottom: 10rem;  /* 160px */
    padding-top: 10rem;  /* 160px */
  }

  .section-lg-pb-0 {
    padding-bottom: 0;
  }

  .section-lg-pb-1 {
    padding-bottom: 3.75rem; /* 60px */
  }

  .section-lg-pb-2 {
    padding-bottom: 5rem; /* 80px */
  }

  .section-lg-pb-3 {
    padding-bottom: 6.25rem;  /* 100px */
  }

  .section-lg-pb-4 {
    padding-bottom: 7.5rem; /* 120px */
  }

  .section-lg-pb-5 {
    padding-bottom: 10rem;  /* 160px */
  }

  .section-lg-pt-0 {
    padding-top: 0;
  }

  .section-lg-pt-1 {
    padding-top: 3.75rem; /* 60px */
  }

  .section-lg-pt-2 {
    padding-top: 5rem; /* 80px */
  }

  .section-lg-pt-3 {
    padding-top: 6.25rem;  /* 100px */
  }

  .section-lg-pt-4 {
    padding-top: 7.5rem; /* 120px */
  }

  .section-lg-pt-5 {
    padding-top: 10rem;  /* 160px */
  }
}


/* Text Align */
.text-center {
  text-align: center;
}

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

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

@media screen and (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }

  .text-md-left {
    text-align: left;
  }

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

@media screen and (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }

  .text-lg-left {
    text-align: left;
  }

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

/* Text Transform */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Transition */
.transition-100 {
  -webkit-transition: all ease .1s;
  -moz-transition: all ease .1s;
  transition: all ease .1s;
}

.transition-200 {
  -webkit-transition: all ease .2s;
  -moz-transition: all ease .2s;
  transition: all ease .2s;
}

.transition-300 {
  -webkit-transition: all ease .3s;
  -moz-transition: all ease .3s;
  transition: all ease .3s;
}

.transition-400 {
  -webkit-transition: all ease 4s;
  -moz-transition: all ease .4s;
  transition: all ease .4s;
}

/* Width */
.w-100 {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-66 {
  width: 66.6666%;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: 33.3333%;
}
.w-25 {
  width: 25%;
}
.w-auto {
  width: auto;
}
.w-fitcontent {
  width: fit-content;
}

.mw-100 {
  max-width: 100%;
}
.mw-75 {
  max-width: 75%;
}
.mw-50 {
  max-width: 50%;
}
.mw-25 {
  max-width: 25%;
}
.mw-none {
  max-width: none;
}

@media screen and (min-width: 578px) {
  .w-sm-100 {
    width: 100%;
  }
  .w-sm-75 {
    width: 75%;
  }
  .w-sm-66 {
    width: 66.6666%;
  }
  .w-sm-50 {
    width: 50%;
  }
  .w-sm-33 {
    width: 33.3333%;
  }
  .w-sm-25 {
    width: 25%;
  }
  .w-sm-auto {
    width: auto;
  }
  .w-sm-fitcontent {
    width: fit-content;
  }

  .mw-sm-100 {
    max-width: 100%;
  }
  .mw-sm-75 {
    max-width: 75%;
  }
  .mw-sm-50 {
    max-width: 50%;
  }
  .mw-sm-25 {
    max-width: 25%;
  }
  .mw-sm-none {
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .w-md-100 {
    width: 100%;
  }
  .w-md-75 {
    width: 75%;
  }
  .w-md-66 {
    width: 66.6666%;
  }
  .w-md-50 {
    width: 50%;
  }
  .w-md-33 {
    width: 33.3333%;
  }
  .w-md-25 {
    width: 25%;
  }
  .w-md-auto {
    width: auto;
  }
  .w-md-fitcontent {
    width: fit-content;
  }

  .mw-md-100 {
    max-width: 100%;
  }
  .mw-md-75 {
    max-width: 75%;
  }
  .mw-md-50 {
    max-width: 50%;
  }
  .mw-md-25 {
    max-width: 25%;
  }
  .mw-md-none {
    max-width: none;
  }
}

@media screen and (min-width: 992px) {
  .w-lg-100 {
    width: 100%;
  }
  .w-lg-75 {
    width: 75%;
  }
  .w-lg-66 {
    width: 66.6666%;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-33 {
    width: 33.3333%;
  }
  .w-lg-25 {
    width: 25%;
  }
  .w-lg-auto {
    width: auto;
  }
  .w-lg-fitcontent {
    width: fit-content;
  }

  .mw-lg-100 {
    max-width: 100%;
  }
  .mw-lg-75 {
    max-width: 75%;
  }
  .mw-lg-50 {
    max-width: 50%;
  }
  .mw-lg-25 {
    max-width: 25%;
  }
  .mw-lg-none {
    max-width: none;
  }
}

/* Wrap */

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

/* z-index */
.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.-z-10 {
  z-index: -10;
}

.-z-20 {
  z-index: -20;
}

.-z-30 {
  z-index: -30;
}

.-z-40 {
  z-index: -40;
}

.-z-50 {
  z-index: -50;
}

.z-auto {
  z-index: auto;
}
