/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --main-font-family: "Inter", sans-serif;
  --heading-font-family: "Inter", sans-serif;
  --main-font-size: 16px;
  --main-line-height: 1.625;
  --main-font-color: #000;
  --body-background: #fff;
  /* Colors */
  --color-orange: #ef8354;
  --color-white: #fdfaf8;
  --color-gray: #d3d1d3;
  --headings-color: #fff;
  --accent-color: #48EA9F;
  /* Layout */
  --container-medium-width: 1360px;
  --container-footer: 1640px;
  --container-width: 1735px;
  --container-footer: 1440px;
  --container-width: 1440px;
  --grid-container-split: calc(var(--container-width) / 2);
  --container-large-width: 1540px;
  --container-pad: 30px;
  --footer-copyrights-background: #000;
  --footer-copyrights-text: #646464;
  /*--> Place custom settings here <--*/
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 500px) {
  :root {
    --container-pad: 20px;
  }
}
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/**
 * Converts font-size to 80% of the initial value
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  visibility: hidden;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
  visibility: visible;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block !important;
}

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

.d-flex {
  display: flex !important;
}

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

.d-none {
  display: none !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-stretch {
  align-items: stretch;
}

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

.justify-content-start {
  justify-content: flex-start;
}

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

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

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.flex-wrap-no-wrap {
  flex-wrap: no-wrap;
}

.flex-1 {
  flex: 1;
}

.height-100 {
  height: 100%;
}

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

.height-auto {
  height: auto;
}

.width-100 {
  width: 100%;
}

.list-style-none {
  list-style: none;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

.background-position-center {
  background-position: center !important;
}

@media screen and (max-width: 1366px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .float-xl-left {
    float: left;
  }
  .float-xl-right {
    float: right;
  }
  .overflow-xl-hidden {
    overflow: hidden;
  }
  .overflow-xl-visible {
    overflow: visible;
  }
  .position-xl-static {
    position: static;
  }
  .position-xl-relative {
    position: relative;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-space-between {
    justify-content: space-between;
  }
  .flex-wrap-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-wrap-xl-no-wrap {
    flex-wrap: no-wrap;
  }
  .flex-xl-1 {
    flex: 1;
  }
  .height-xl-100 {
    height: 100%;
  }
  .height-xl-100vh {
    height: 100vh;
  }
  .height-xl-auto {
    height: auto;
  }
  .width-xl-100 {
    width: 100%;
  }
  .list-style-xl-none {
    list-style: none;
  }
  .m-xl-0 {
    margin: 0;
  }
  .p-xl-0 {
    padding: 0;
  }
  .background-position-xl-center {
    background-position: center !important;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .float-lg-left {
    float: left;
  }
  .float-lg-right {
    float: right;
  }
  .overflow-lg-hidden {
    overflow: hidden;
  }
  .overflow-lg-visible {
    overflow: visible;
  }
  .position-lg-static {
    position: static;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-space-between {
    justify-content: space-between;
  }
  .flex-wrap-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-wrap-lg-no-wrap {
    flex-wrap: no-wrap;
  }
  .flex-lg-1 {
    flex: 1;
  }
  .height-lg-100 {
    height: 100%;
  }
  .height-lg-100vh {
    height: 100vh;
  }
  .height-lg-auto {
    height: auto;
  }
  .width-lg-100 {
    width: 100%;
  }
  .list-style-lg-none {
    list-style: none;
  }
  .m-lg-0 {
    margin: 0;
  }
  .p-lg-0 {
    padding: 0;
  }
  .background-position-lg-center {
    background-position: center !important;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .float-md-left {
    float: left;
  }
  .float-md-right {
    float: right;
  }
  .overflow-md-hidden {
    overflow: hidden;
  }
  .overflow-md-visible {
    overflow: visible;
  }
  .position-md-static {
    position: static;
  }
  .position-md-relative {
    position: relative;
  }
  .position-md-absolute {
    position: absolute;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-space-between {
    justify-content: space-between;
  }
  .flex-wrap-md-wrap {
    flex-wrap: wrap;
  }
  .flex-wrap-md-no-wrap {
    flex-wrap: no-wrap;
  }
  .flex-md-1 {
    flex: 1;
  }
  .height-md-100 {
    height: 100%;
  }
  .height-md-100vh {
    height: 100vh;
  }
  .height-md-auto {
    height: auto;
  }
  .width-md-100 {
    width: 100%;
  }
  .list-style-md-none {
    list-style: none;
  }
  .m-md-0 {
    margin: 0;
  }
  .p-md-0 {
    padding: 0;
  }
  .background-position-md-center {
    background-position: center !important;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .float-sm-left {
    float: left;
  }
  .float-sm-right {
    float: right;
  }
  .overflow-sm-hidden {
    overflow: hidden;
  }
  .overflow-sm-visible {
    overflow: visible;
  }
  .position-sm-static {
    position: static;
  }
  .position-sm-relative {
    position: relative;
  }
  .position-sm-absolute {
    position: absolute;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-space-between {
    justify-content: space-between;
  }
  .flex-wrap-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-wrap-sm-no-wrap {
    flex-wrap: no-wrap;
  }
  .flex-sm-1 {
    flex: 1;
  }
  .height-sm-100 {
    height: 100%;
  }
  .height-sm-100vh {
    height: 100vh;
  }
  .height-sm-auto {
    height: auto;
  }
  .width-sm-100 {
    width: 100%;
  }
  .list-style-sm-none {
    list-style: none;
  }
  .m-sm-0 {
    margin: 0;
  }
  .p-sm-0 {
    padding: 0;
  }
  .background-position-sm-center {
    background-position: center !important;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

.align-center {
  align-items: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-between {
  justify-content: space-between !important;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
.fb-md-100 {
  flex-basis: 100% !important;
}

/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

.off-3 {
  margin-left: 25%;
}

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

.off-6 {
  margin-left: 50%;
}

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

.off-9 {
  margin-left: 75%;
}

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-4,
.gap-4-x {
  margin-left: -4px;
}
.gap-4 > *,
.gap-4-x > * {
  padding-left: 4px;
}

.gap-4,
.gap-4-y {
  margin-top: -4px;
}
.gap-4 > *,
.gap-4-y > * {
  padding-top: 4px;
}

.gap-6,
.gap-6-x {
  margin-left: -6px;
}
.gap-6 > *,
.gap-6-x > * {
  padding-left: 6px;
}

.gap-6,
.gap-6-y {
  margin-top: -6px;
}
.gap-6 > *,
.gap-6-y > * {
  padding-top: 6px;
}

.gap-8,
.gap-8-x {
  margin-left: -8px;
}
.gap-8 > *,
.gap-8-x > * {
  padding-left: 8px;
}

.gap-8,
.gap-8-y {
  margin-top: -8px;
}
.gap-8 > *,
.gap-8-y > * {
  padding-top: 8px;
}

.gap-10,
.gap-10-x {
  margin-left: -10px;
}
.gap-10 > *,
.gap-10-x > * {
  padding-left: 10px;
}

.gap-10,
.gap-10-y {
  margin-top: -10px;
}
.gap-10 > *,
.gap-10-y > * {
  padding-top: 10px;
}

.gap-12,
.gap-12-x {
  margin-left: -12px;
}
.gap-12 > *,
.gap-12-x > * {
  padding-left: 12px;
}

.gap-12,
.gap-12-y {
  margin-top: -12px;
}
.gap-12 > *,
.gap-12-y > * {
  padding-top: 12px;
}

.gap-16,
.gap-16-x {
  margin-left: -16px;
}
.gap-16 > *,
.gap-16-x > * {
  padding-left: 16px;
}

.gap-16,
.gap-16-y {
  margin-top: -16px;
}
.gap-16 > *,
.gap-16-y > * {
  padding-top: 16px;
}

.gap-18,
.gap-18-x {
  margin-left: -18px;
}
.gap-18 > *,
.gap-18-x > * {
  padding-left: 18px;
}

.gap-18,
.gap-18-y {
  margin-top: -18px;
}
.gap-18 > *,
.gap-18-y > * {
  padding-top: 18px;
}

.gap-24,
.gap-24-x {
  margin-left: -24px;
}
.gap-24 > *,
.gap-24-x > * {
  padding-left: 24px;
}

.gap-24,
.gap-24-y {
  margin-top: -24px;
}
.gap-24 > *,
.gap-24-y > * {
  padding-top: 24px;
}

.gap-28,
.gap-28-x {
  margin-left: -28px;
}
.gap-28 > *,
.gap-28-x > * {
  padding-left: 28px;
}

.gap-28,
.gap-28-y {
  margin-top: -28px;
}
.gap-28 > *,
.gap-28-y > * {
  padding-top: 28px;
}

.gap-32,
.gap-32-x {
  margin-left: -32px;
}
.gap-32 > *,
.gap-32-x > * {
  padding-left: 32px;
}

.gap-32,
.gap-32-y {
  margin-top: -32px;
}
.gap-32 > *,
.gap-32-y > * {
  padding-top: 32px;
}

.gap-36,
.gap-36-x {
  margin-left: -36px;
}
.gap-36 > *,
.gap-36-x > * {
  padding-left: 36px;
}

.gap-36,
.gap-36-y {
  margin-top: -36px;
}
.gap-36 > *,
.gap-36-y > * {
  padding-top: 36px;
}

.gap-38,
.gap-38-x {
  margin-left: -38px;
}
.gap-38 > *,
.gap-38-x > * {
  padding-left: 38px;
}

.gap-38,
.gap-38-y {
  margin-top: -38px;
}
.gap-38 > *,
.gap-38-y > * {
  padding-top: 38px;
}

.gap-42,
.gap-42-x {
  margin-left: -42px;
}
.gap-42 > *,
.gap-42-x > * {
  padding-left: 42px;
}

.gap-42,
.gap-42-y {
  margin-top: -42px;
}
.gap-42 > *,
.gap-42-y > * {
  padding-top: 42px;
}

.gap-44,
.gap-44-x {
  margin-left: -44px;
}
.gap-44 > *,
.gap-44-x > * {
  padding-left: 44px;
}

.gap-44,
.gap-44-y {
  margin-top: -44px;
}
.gap-44 > *,
.gap-44-y > * {
  padding-top: 44px;
}

.gap-48,
.gap-48-x {
  margin-left: -48px;
}
.gap-48 > *,
.gap-48-x > * {
  padding-left: 48px;
}

.gap-48,
.gap-48-y {
  margin-top: -48px;
}
.gap-48 > *,
.gap-48-y > * {
  padding-top: 48px;
}

.gap-52,
.gap-52-x {
  margin-left: -52px;
}
.gap-52 > *,
.gap-52-x > * {
  padding-left: 52px;
}

.gap-52,
.gap-52-y {
  margin-top: -52px;
}
.gap-52 > *,
.gap-52-y > * {
  padding-top: 52px;
}

.gap-54,
.gap-54-x {
  margin-left: -54px;
}
.gap-54 > *,
.gap-54-x > * {
  padding-left: 54px;
}

.gap-54,
.gap-54-y {
  margin-top: -54px;
}
.gap-54 > *,
.gap-54-y > * {
  padding-top: 54px;
}

.gap-56,
.gap-56-x {
  margin-left: -56px;
}
.gap-56 > *,
.gap-56-x > * {
  padding-left: 56px;
}

.gap-56,
.gap-56-y {
  margin-top: -56px;
}
.gap-56 > *,
.gap-56-y > * {
  padding-top: 56px;
}

.gap-62,
.gap-62-x {
  margin-left: -62px;
}
.gap-62 > *,
.gap-62-x > * {
  padding-left: 62px;
}

.gap-62,
.gap-62-y {
  margin-top: -62px;
}
.gap-62 > *,
.gap-62-y > * {
  padding-top: 62px;
}

.gap-64,
.gap-64-x {
  margin-left: -64px;
}
.gap-64 > *,
.gap-64-x > * {
  padding-left: 64px;
}

.gap-64,
.gap-64-y {
  margin-top: -64px;
}
.gap-64 > *,
.gap-64-y > * {
  padding-top: 64px;
}

.gap-72,
.gap-72-x {
  margin-left: -72px;
}
.gap-72 > *,
.gap-72-x > * {
  padding-left: 72px;
}

.gap-72,
.gap-72-y {
  margin-top: -72px;
}
.gap-72 > *,
.gap-72-y > * {
  padding-top: 72px;
}

.gap-78,
.gap-78-x {
  margin-left: -78px;
}
.gap-78 > *,
.gap-78-x > * {
  padding-left: 78px;
}

.gap-78,
.gap-78-y {
  margin-top: -78px;
}
.gap-78 > *,
.gap-78-y > * {
  padding-top: 78px;
}

.gap-82,
.gap-82-x {
  margin-left: -82px;
}
.gap-82 > *,
.gap-82-x > * {
  padding-left: 82px;
}

.gap-82,
.gap-82-y {
  margin-top: -82px;
}
.gap-82 > *,
.gap-82-y > * {
  padding-top: 82px;
}

.gap-84,
.gap-84-x {
  margin-left: -84px;
}
.gap-84 > *,
.gap-84-x > * {
  padding-left: 84px;
}

.gap-84,
.gap-84-y {
  margin-top: -84px;
}
.gap-84 > *,
.gap-84-y > * {
  padding-top: 84px;
}

.gap-86,
.gap-86-x {
  margin-left: -86px;
}
.gap-86 > *,
.gap-86-x > * {
  padding-left: 86px;
}

.gap-86,
.gap-86-y {
  margin-top: -86px;
}
.gap-86 > *,
.gap-86-y > * {
  padding-top: 86px;
}

.gap-92,
.gap-92-x {
  margin-left: -92px;
}
.gap-92 > *,
.gap-92-x > * {
  padding-left: 92px;
}

.gap-92,
.gap-92-y {
  margin-top: -92px;
}
.gap-92 > *,
.gap-92-y > * {
  padding-top: 92px;
}

.gap-102,
.gap-102-x {
  margin-left: -102px;
}
.gap-102 > *,
.gap-102-x > * {
  padding-left: 102px;
}

.gap-102,
.gap-102-y {
  margin-top: -102px;
}
.gap-102 > *,
.gap-102-y > * {
  padding-top: 102px;
}

.gap-104,
.gap-104-x {
  margin-left: -104px;
}
.gap-104 > *,
.gap-104-x > * {
  padding-left: 104px;
}

.gap-104,
.gap-104-y {
  margin-top: -104px;
}
.gap-104 > *,
.gap-104-y > * {
  padding-top: 104px;
}

.gap-108,
.gap-108-x {
  margin-left: -108px;
}
.gap-108 > *,
.gap-108-x > * {
  padding-left: 108px;
}

.gap-108,
.gap-108-y {
  margin-top: -108px;
}
.gap-108 > *,
.gap-108-y > * {
  padding-top: 108px;
}

.gap-112,
.gap-112-x {
  margin-left: -112px;
}
.gap-112 > *,
.gap-112-x > * {
  padding-left: 112px;
}

.gap-112,
.gap-112-y {
  margin-top: -112px;
}
.gap-112 > *,
.gap-112-y > * {
  padding-top: 112px;
}

/* Generate all gap classes */
.mb-a {
  margin-bottom: auto !important;
}

.mt-a {
  margin-top: auto !important;
}

.ml-a {
  margin-left: auto !important;
}

.mr-a {
  margin-right: auto !important;
}

.pb-a {
  padding-bottom: auto !important;
}

.pt-a {
  padding-top: auto !important;
}

.pl-a {
  padding-left: auto !important;
}

.pr-a {
  padding-right: auto !important;
}

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

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

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

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

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

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

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

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

.mb-4 {
  margin-bottom: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

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

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

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

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

.mb-6 {
  margin-bottom: 6px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

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

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

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

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

.mb-8 {
  margin-bottom: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

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

.mt-10 {
  margin-top: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

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

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.ml-18 {
  margin-left: 18px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.ml-28 {
  margin-left: 28px !important;
}

.mr-28 {
  margin-right: 28px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.pr-28 {
  padding-right: 28px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.ml-38 {
  margin-left: 38px !important;
}

.mr-38 {
  margin-right: 38px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.pt-38 {
  padding-top: 38px !important;
}

.pl-38 {
  padding-left: 38px !important;
}

.pr-38 {
  padding-right: 38px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.mt-42 {
  margin-top: 42px !important;
}

.ml-42 {
  margin-left: 42px !important;
}

.mr-42 {
  margin-right: 42px !important;
}

.pb-42 {
  padding-bottom: 42px !important;
}

.pt-42 {
  padding-top: 42px !important;
}

.pl-42 {
  padding-left: 42px !important;
}

.pr-42 {
  padding-right: 42px !important;
}

.mb-44 {
  margin-bottom: 44px !important;
}

.mt-44 {
  margin-top: 44px !important;
}

.ml-44 {
  margin-left: 44px !important;
}

.mr-44 {
  margin-right: 44px !important;
}

.pb-44 {
  padding-bottom: 44px !important;
}

.pt-44 {
  padding-top: 44px !important;
}

.pl-44 {
  padding-left: 44px !important;
}

.pr-44 {
  padding-right: 44px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.mt-52 {
  margin-top: 52px !important;
}

.ml-52 {
  margin-left: 52px !important;
}

.mr-52 {
  margin-right: 52px !important;
}

.pb-52 {
  padding-bottom: 52px !important;
}

.pt-52 {
  padding-top: 52px !important;
}

.pl-52 {
  padding-left: 52px !important;
}

.pr-52 {
  padding-right: 52px !important;
}

.mb-54 {
  margin-bottom: 54px !important;
}

.mt-54 {
  margin-top: 54px !important;
}

.ml-54 {
  margin-left: 54px !important;
}

.mr-54 {
  margin-right: 54px !important;
}

.pb-54 {
  padding-bottom: 54px !important;
}

.pt-54 {
  padding-top: 54px !important;
}

.pl-54 {
  padding-left: 54px !important;
}

.pr-54 {
  padding-right: 54px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.mb-62 {
  margin-bottom: 62px !important;
}

.mt-62 {
  margin-top: 62px !important;
}

.ml-62 {
  margin-left: 62px !important;
}

.mr-62 {
  margin-right: 62px !important;
}

.pb-62 {
  padding-bottom: 62px !important;
}

.pt-62 {
  padding-top: 62px !important;
}

.pl-62 {
  padding-left: 62px !important;
}

.pr-62 {
  padding-right: 62px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.pb-72 {
  padding-bottom: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.mb-78 {
  margin-bottom: 78px !important;
}

.mt-78 {
  margin-top: 78px !important;
}

.ml-78 {
  margin-left: 78px !important;
}

.mr-78 {
  margin-right: 78px !important;
}

.pb-78 {
  padding-bottom: 78px !important;
}

.pt-78 {
  padding-top: 78px !important;
}

.pl-78 {
  padding-left: 78px !important;
}

.pr-78 {
  padding-right: 78px !important;
}

.mb-82 {
  margin-bottom: 82px !important;
}

.mt-82 {
  margin-top: 82px !important;
}

.ml-82 {
  margin-left: 82px !important;
}

.mr-82 {
  margin-right: 82px !important;
}

.pb-82 {
  padding-bottom: 82px !important;
}

.pt-82 {
  padding-top: 82px !important;
}

.pl-82 {
  padding-left: 82px !important;
}

.pr-82 {
  padding-right: 82px !important;
}

.mb-84 {
  margin-bottom: 84px !important;
}

.mt-84 {
  margin-top: 84px !important;
}

.ml-84 {
  margin-left: 84px !important;
}

.mr-84 {
  margin-right: 84px !important;
}

.pb-84 {
  padding-bottom: 84px !important;
}

.pt-84 {
  padding-top: 84px !important;
}

.pl-84 {
  padding-left: 84px !important;
}

.pr-84 {
  padding-right: 84px !important;
}

.mb-92 {
  margin-bottom: 92px !important;
}

.mt-92 {
  margin-top: 92px !important;
}

.ml-92 {
  margin-left: 92px !important;
}

.mr-92 {
  margin-right: 92px !important;
}

.pb-92 {
  padding-bottom: 92px !important;
}

.pt-92 {
  padding-top: 92px !important;
}

.pl-92 {
  padding-left: 92px !important;
}

.pr-92 {
  padding-right: 92px !important;
}

.mb-102 {
  margin-bottom: 102px !important;
}

.mt-102 {
  margin-top: 102px !important;
}

.ml-102 {
  margin-left: 102px !important;
}

.mr-102 {
  margin-right: 102px !important;
}

.pb-102 {
  padding-bottom: 102px !important;
}

.pt-102 {
  padding-top: 102px !important;
}

.pl-102 {
  padding-left: 102px !important;
}

.pr-102 {
  padding-right: 102px !important;
}

.mb-104 {
  margin-bottom: 104px !important;
}

.mt-104 {
  margin-top: 104px !important;
}

.ml-104 {
  margin-left: 104px !important;
}

.mr-104 {
  margin-right: 104px !important;
}

.pb-104 {
  padding-bottom: 104px !important;
}

.pt-104 {
  padding-top: 104px !important;
}

.pl-104 {
  padding-left: 104px !important;
}

.pr-104 {
  padding-right: 104px !important;
}

.mb-108 {
  margin-bottom: 108px !important;
}

.mt-108 {
  margin-top: 108px !important;
}

.ml-108 {
  margin-left: 108px !important;
}

.mr-108 {
  margin-right: 108px !important;
}

.pb-108 {
  padding-bottom: 108px !important;
}

.pt-108 {
  padding-top: 108px !important;
}

.pl-108 {
  padding-left: 108px !important;
}

.pr-108 {
  padding-right: 108px !important;
}

.mb-112 {
  margin-bottom: 112px !important;
}

.mt-112 {
  margin-top: 112px !important;
}

.ml-112 {
  margin-left: 112px !important;
}

.mr-112 {
  margin-right: 112px !important;
}

.pb-112 {
  padding-bottom: 112px !important;
}

.pt-112 {
  padding-top: 112px !important;
}

.pl-112 {
  padding-left: 112px !important;
}

.pr-112 {
  padding-right: 112px !important;
}

/* Generate all responsive steps */
@media screen and (max-width: 1366px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xl-0,
  .gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-x > * {
    padding-left: 0;
  }
  .gap-xl-0,
  .gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-y > * {
    padding-top: 0;
  }
  .gap-xl-4,
  .gap-xl-4-x {
    margin-left: -4px;
  }
  .gap-xl-4 > *,
  .gap-xl-4-x > * {
    padding-left: 4px;
  }
  .gap-xl-4,
  .gap-xl-4-y {
    margin-top: -4px;
  }
  .gap-xl-4 > *,
  .gap-xl-4-y > * {
    padding-top: 4px;
  }
  .gap-xl-6,
  .gap-xl-6-x {
    margin-left: -6px;
  }
  .gap-xl-6 > *,
  .gap-xl-6-x > * {
    padding-left: 6px;
  }
  .gap-xl-6,
  .gap-xl-6-y {
    margin-top: -6px;
  }
  .gap-xl-6 > *,
  .gap-xl-6-y > * {
    padding-top: 6px;
  }
  .gap-xl-8,
  .gap-xl-8-x {
    margin-left: -8px;
  }
  .gap-xl-8 > *,
  .gap-xl-8-x > * {
    padding-left: 8px;
  }
  .gap-xl-8,
  .gap-xl-8-y {
    margin-top: -8px;
  }
  .gap-xl-8 > *,
  .gap-xl-8-y > * {
    padding-top: 8px;
  }
  .gap-xl-10,
  .gap-xl-10-x {
    margin-left: -10px;
  }
  .gap-xl-10 > *,
  .gap-xl-10-x > * {
    padding-left: 10px;
  }
  .gap-xl-10,
  .gap-xl-10-y {
    margin-top: -10px;
  }
  .gap-xl-10 > *,
  .gap-xl-10-y > * {
    padding-top: 10px;
  }
  .gap-xl-12,
  .gap-xl-12-x {
    margin-left: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-x > * {
    padding-left: 12px;
  }
  .gap-xl-12,
  .gap-xl-12-y {
    margin-top: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-y > * {
    padding-top: 12px;
  }
  .gap-xl-16,
  .gap-xl-16-x {
    margin-left: -16px;
  }
  .gap-xl-16 > *,
  .gap-xl-16-x > * {
    padding-left: 16px;
  }
  .gap-xl-16,
  .gap-xl-16-y {
    margin-top: -16px;
  }
  .gap-xl-16 > *,
  .gap-xl-16-y > * {
    padding-top: 16px;
  }
  .gap-xl-18,
  .gap-xl-18-x {
    margin-left: -18px;
  }
  .gap-xl-18 > *,
  .gap-xl-18-x > * {
    padding-left: 18px;
  }
  .gap-xl-18,
  .gap-xl-18-y {
    margin-top: -18px;
  }
  .gap-xl-18 > *,
  .gap-xl-18-y > * {
    padding-top: 18px;
  }
  .gap-xl-24,
  .gap-xl-24-x {
    margin-left: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-x > * {
    padding-left: 24px;
  }
  .gap-xl-24,
  .gap-xl-24-y {
    margin-top: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-y > * {
    padding-top: 24px;
  }
  .gap-xl-28,
  .gap-xl-28-x {
    margin-left: -28px;
  }
  .gap-xl-28 > *,
  .gap-xl-28-x > * {
    padding-left: 28px;
  }
  .gap-xl-28,
  .gap-xl-28-y {
    margin-top: -28px;
  }
  .gap-xl-28 > *,
  .gap-xl-28-y > * {
    padding-top: 28px;
  }
  .gap-xl-32,
  .gap-xl-32-x {
    margin-left: -32px;
  }
  .gap-xl-32 > *,
  .gap-xl-32-x > * {
    padding-left: 32px;
  }
  .gap-xl-32,
  .gap-xl-32-y {
    margin-top: -32px;
  }
  .gap-xl-32 > *,
  .gap-xl-32-y > * {
    padding-top: 32px;
  }
  .gap-xl-36,
  .gap-xl-36-x {
    margin-left: -36px;
  }
  .gap-xl-36 > *,
  .gap-xl-36-x > * {
    padding-left: 36px;
  }
  .gap-xl-36,
  .gap-xl-36-y {
    margin-top: -36px;
  }
  .gap-xl-36 > *,
  .gap-xl-36-y > * {
    padding-top: 36px;
  }
  .gap-xl-38,
  .gap-xl-38-x {
    margin-left: -38px;
  }
  .gap-xl-38 > *,
  .gap-xl-38-x > * {
    padding-left: 38px;
  }
  .gap-xl-38,
  .gap-xl-38-y {
    margin-top: -38px;
  }
  .gap-xl-38 > *,
  .gap-xl-38-y > * {
    padding-top: 38px;
  }
  .gap-xl-42,
  .gap-xl-42-x {
    margin-left: -42px;
  }
  .gap-xl-42 > *,
  .gap-xl-42-x > * {
    padding-left: 42px;
  }
  .gap-xl-42,
  .gap-xl-42-y {
    margin-top: -42px;
  }
  .gap-xl-42 > *,
  .gap-xl-42-y > * {
    padding-top: 42px;
  }
  .gap-xl-44,
  .gap-xl-44-x {
    margin-left: -44px;
  }
  .gap-xl-44 > *,
  .gap-xl-44-x > * {
    padding-left: 44px;
  }
  .gap-xl-44,
  .gap-xl-44-y {
    margin-top: -44px;
  }
  .gap-xl-44 > *,
  .gap-xl-44-y > * {
    padding-top: 44px;
  }
  .gap-xl-48,
  .gap-xl-48-x {
    margin-left: -48px;
  }
  .gap-xl-48 > *,
  .gap-xl-48-x > * {
    padding-left: 48px;
  }
  .gap-xl-48,
  .gap-xl-48-y {
    margin-top: -48px;
  }
  .gap-xl-48 > *,
  .gap-xl-48-y > * {
    padding-top: 48px;
  }
  .gap-xl-52,
  .gap-xl-52-x {
    margin-left: -52px;
  }
  .gap-xl-52 > *,
  .gap-xl-52-x > * {
    padding-left: 52px;
  }
  .gap-xl-52,
  .gap-xl-52-y {
    margin-top: -52px;
  }
  .gap-xl-52 > *,
  .gap-xl-52-y > * {
    padding-top: 52px;
  }
  .gap-xl-54,
  .gap-xl-54-x {
    margin-left: -54px;
  }
  .gap-xl-54 > *,
  .gap-xl-54-x > * {
    padding-left: 54px;
  }
  .gap-xl-54,
  .gap-xl-54-y {
    margin-top: -54px;
  }
  .gap-xl-54 > *,
  .gap-xl-54-y > * {
    padding-top: 54px;
  }
  .gap-xl-56,
  .gap-xl-56-x {
    margin-left: -56px;
  }
  .gap-xl-56 > *,
  .gap-xl-56-x > * {
    padding-left: 56px;
  }
  .gap-xl-56,
  .gap-xl-56-y {
    margin-top: -56px;
  }
  .gap-xl-56 > *,
  .gap-xl-56-y > * {
    padding-top: 56px;
  }
  .gap-xl-62,
  .gap-xl-62-x {
    margin-left: -62px;
  }
  .gap-xl-62 > *,
  .gap-xl-62-x > * {
    padding-left: 62px;
  }
  .gap-xl-62,
  .gap-xl-62-y {
    margin-top: -62px;
  }
  .gap-xl-62 > *,
  .gap-xl-62-y > * {
    padding-top: 62px;
  }
  .gap-xl-64,
  .gap-xl-64-x {
    margin-left: -64px;
  }
  .gap-xl-64 > *,
  .gap-xl-64-x > * {
    padding-left: 64px;
  }
  .gap-xl-64,
  .gap-xl-64-y {
    margin-top: -64px;
  }
  .gap-xl-64 > *,
  .gap-xl-64-y > * {
    padding-top: 64px;
  }
  .gap-xl-72,
  .gap-xl-72-x {
    margin-left: -72px;
  }
  .gap-xl-72 > *,
  .gap-xl-72-x > * {
    padding-left: 72px;
  }
  .gap-xl-72,
  .gap-xl-72-y {
    margin-top: -72px;
  }
  .gap-xl-72 > *,
  .gap-xl-72-y > * {
    padding-top: 72px;
  }
  .gap-xl-78,
  .gap-xl-78-x {
    margin-left: -78px;
  }
  .gap-xl-78 > *,
  .gap-xl-78-x > * {
    padding-left: 78px;
  }
  .gap-xl-78,
  .gap-xl-78-y {
    margin-top: -78px;
  }
  .gap-xl-78 > *,
  .gap-xl-78-y > * {
    padding-top: 78px;
  }
  .gap-xl-82,
  .gap-xl-82-x {
    margin-left: -82px;
  }
  .gap-xl-82 > *,
  .gap-xl-82-x > * {
    padding-left: 82px;
  }
  .gap-xl-82,
  .gap-xl-82-y {
    margin-top: -82px;
  }
  .gap-xl-82 > *,
  .gap-xl-82-y > * {
    padding-top: 82px;
  }
  .gap-xl-84,
  .gap-xl-84-x {
    margin-left: -84px;
  }
  .gap-xl-84 > *,
  .gap-xl-84-x > * {
    padding-left: 84px;
  }
  .gap-xl-84,
  .gap-xl-84-y {
    margin-top: -84px;
  }
  .gap-xl-84 > *,
  .gap-xl-84-y > * {
    padding-top: 84px;
  }
  .gap-xl-86,
  .gap-xl-86-x {
    margin-left: -86px;
  }
  .gap-xl-86 > *,
  .gap-xl-86-x > * {
    padding-left: 86px;
  }
  .gap-xl-86,
  .gap-xl-86-y {
    margin-top: -86px;
  }
  .gap-xl-86 > *,
  .gap-xl-86-y > * {
    padding-top: 86px;
  }
  .gap-xl-92,
  .gap-xl-92-x {
    margin-left: -92px;
  }
  .gap-xl-92 > *,
  .gap-xl-92-x > * {
    padding-left: 92px;
  }
  .gap-xl-92,
  .gap-xl-92-y {
    margin-top: -92px;
  }
  .gap-xl-92 > *,
  .gap-xl-92-y > * {
    padding-top: 92px;
  }
  .gap-xl-102,
  .gap-xl-102-x {
    margin-left: -102px;
  }
  .gap-xl-102 > *,
  .gap-xl-102-x > * {
    padding-left: 102px;
  }
  .gap-xl-102,
  .gap-xl-102-y {
    margin-top: -102px;
  }
  .gap-xl-102 > *,
  .gap-xl-102-y > * {
    padding-top: 102px;
  }
  .gap-xl-104,
  .gap-xl-104-x {
    margin-left: -104px;
  }
  .gap-xl-104 > *,
  .gap-xl-104-x > * {
    padding-left: 104px;
  }
  .gap-xl-104,
  .gap-xl-104-y {
    margin-top: -104px;
  }
  .gap-xl-104 > *,
  .gap-xl-104-y > * {
    padding-top: 104px;
  }
  .gap-xl-108,
  .gap-xl-108-x {
    margin-left: -108px;
  }
  .gap-xl-108 > *,
  .gap-xl-108-x > * {
    padding-left: 108px;
  }
  .gap-xl-108,
  .gap-xl-108-y {
    margin-top: -108px;
  }
  .gap-xl-108 > *,
  .gap-xl-108-y > * {
    padding-top: 108px;
  }
  .gap-xl-112,
  .gap-xl-112-x {
    margin-left: -112px;
  }
  .gap-xl-112 > *,
  .gap-xl-112-x > * {
    padding-left: 112px;
  }
  .gap-xl-112,
  .gap-xl-112-y {
    margin-top: -112px;
  }
  .gap-xl-112 > *,
  .gap-xl-112-y > * {
    padding-top: 112px;
  }
  /* Generate all gap classes */
  .mb-xl-a {
    margin-bottom: auto !important;
  }
  .mt-xl-a {
    margin-top: auto !important;
  }
  .ml-xl-a {
    margin-left: auto !important;
  }
  .mr-xl-a {
    margin-right: auto !important;
  }
  .pb-xl-a {
    padding-bottom: auto !important;
  }
  .pt-xl-a {
    padding-top: auto !important;
  }
  .pl-xl-a {
    padding-left: auto !important;
  }
  .pr-xl-a {
    padding-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .mb-xl-4 {
    margin-bottom: 4px !important;
  }
  .mt-xl-4 {
    margin-top: 4px !important;
  }
  .ml-xl-4 {
    margin-left: 4px !important;
  }
  .mr-xl-4 {
    margin-right: 4px !important;
  }
  .pb-xl-4 {
    padding-bottom: 4px !important;
  }
  .pt-xl-4 {
    padding-top: 4px !important;
  }
  .pl-xl-4 {
    padding-left: 4px !important;
  }
  .pr-xl-4 {
    padding-right: 4px !important;
  }
  .mb-xl-6 {
    margin-bottom: 6px !important;
  }
  .mt-xl-6 {
    margin-top: 6px !important;
  }
  .ml-xl-6 {
    margin-left: 6px !important;
  }
  .mr-xl-6 {
    margin-right: 6px !important;
  }
  .pb-xl-6 {
    padding-bottom: 6px !important;
  }
  .pt-xl-6 {
    padding-top: 6px !important;
  }
  .pl-xl-6 {
    padding-left: 6px !important;
  }
  .pr-xl-6 {
    padding-right: 6px !important;
  }
  .mb-xl-8 {
    margin-bottom: 8px !important;
  }
  .mt-xl-8 {
    margin-top: 8px !important;
  }
  .ml-xl-8 {
    margin-left: 8px !important;
  }
  .mr-xl-8 {
    margin-right: 8px !important;
  }
  .pb-xl-8 {
    padding-bottom: 8px !important;
  }
  .pt-xl-8 {
    padding-top: 8px !important;
  }
  .pl-xl-8 {
    padding-left: 8px !important;
  }
  .pr-xl-8 {
    padding-right: 8px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .mb-xl-12 {
    margin-bottom: 12px !important;
  }
  .mt-xl-12 {
    margin-top: 12px !important;
  }
  .ml-xl-12 {
    margin-left: 12px !important;
  }
  .mr-xl-12 {
    margin-right: 12px !important;
  }
  .pb-xl-12 {
    padding-bottom: 12px !important;
  }
  .pt-xl-12 {
    padding-top: 12px !important;
  }
  .pl-xl-12 {
    padding-left: 12px !important;
  }
  .pr-xl-12 {
    padding-right: 12px !important;
  }
  .mb-xl-16 {
    margin-bottom: 16px !important;
  }
  .mt-xl-16 {
    margin-top: 16px !important;
  }
  .ml-xl-16 {
    margin-left: 16px !important;
  }
  .mr-xl-16 {
    margin-right: 16px !important;
  }
  .pb-xl-16 {
    padding-bottom: 16px !important;
  }
  .pt-xl-16 {
    padding-top: 16px !important;
  }
  .pl-xl-16 {
    padding-left: 16px !important;
  }
  .pr-xl-16 {
    padding-right: 16px !important;
  }
  .mb-xl-18 {
    margin-bottom: 18px !important;
  }
  .mt-xl-18 {
    margin-top: 18px !important;
  }
  .ml-xl-18 {
    margin-left: 18px !important;
  }
  .mr-xl-18 {
    margin-right: 18px !important;
  }
  .pb-xl-18 {
    padding-bottom: 18px !important;
  }
  .pt-xl-18 {
    padding-top: 18px !important;
  }
  .pl-xl-18 {
    padding-left: 18px !important;
  }
  .pr-xl-18 {
    padding-right: 18px !important;
  }
  .mb-xl-24 {
    margin-bottom: 24px !important;
  }
  .mt-xl-24 {
    margin-top: 24px !important;
  }
  .ml-xl-24 {
    margin-left: 24px !important;
  }
  .mr-xl-24 {
    margin-right: 24px !important;
  }
  .pb-xl-24 {
    padding-bottom: 24px !important;
  }
  .pt-xl-24 {
    padding-top: 24px !important;
  }
  .pl-xl-24 {
    padding-left: 24px !important;
  }
  .pr-xl-24 {
    padding-right: 24px !important;
  }
  .mb-xl-28 {
    margin-bottom: 28px !important;
  }
  .mt-xl-28 {
    margin-top: 28px !important;
  }
  .ml-xl-28 {
    margin-left: 28px !important;
  }
  .mr-xl-28 {
    margin-right: 28px !important;
  }
  .pb-xl-28 {
    padding-bottom: 28px !important;
  }
  .pt-xl-28 {
    padding-top: 28px !important;
  }
  .pl-xl-28 {
    padding-left: 28px !important;
  }
  .pr-xl-28 {
    padding-right: 28px !important;
  }
  .mb-xl-32 {
    margin-bottom: 32px !important;
  }
  .mt-xl-32 {
    margin-top: 32px !important;
  }
  .ml-xl-32 {
    margin-left: 32px !important;
  }
  .mr-xl-32 {
    margin-right: 32px !important;
  }
  .pb-xl-32 {
    padding-bottom: 32px !important;
  }
  .pt-xl-32 {
    padding-top: 32px !important;
  }
  .pl-xl-32 {
    padding-left: 32px !important;
  }
  .pr-xl-32 {
    padding-right: 32px !important;
  }
  .mb-xl-36 {
    margin-bottom: 36px !important;
  }
  .mt-xl-36 {
    margin-top: 36px !important;
  }
  .ml-xl-36 {
    margin-left: 36px !important;
  }
  .mr-xl-36 {
    margin-right: 36px !important;
  }
  .pb-xl-36 {
    padding-bottom: 36px !important;
  }
  .pt-xl-36 {
    padding-top: 36px !important;
  }
  .pl-xl-36 {
    padding-left: 36px !important;
  }
  .pr-xl-36 {
    padding-right: 36px !important;
  }
  .mb-xl-38 {
    margin-bottom: 38px !important;
  }
  .mt-xl-38 {
    margin-top: 38px !important;
  }
  .ml-xl-38 {
    margin-left: 38px !important;
  }
  .mr-xl-38 {
    margin-right: 38px !important;
  }
  .pb-xl-38 {
    padding-bottom: 38px !important;
  }
  .pt-xl-38 {
    padding-top: 38px !important;
  }
  .pl-xl-38 {
    padding-left: 38px !important;
  }
  .pr-xl-38 {
    padding-right: 38px !important;
  }
  .mb-xl-42 {
    margin-bottom: 42px !important;
  }
  .mt-xl-42 {
    margin-top: 42px !important;
  }
  .ml-xl-42 {
    margin-left: 42px !important;
  }
  .mr-xl-42 {
    margin-right: 42px !important;
  }
  .pb-xl-42 {
    padding-bottom: 42px !important;
  }
  .pt-xl-42 {
    padding-top: 42px !important;
  }
  .pl-xl-42 {
    padding-left: 42px !important;
  }
  .pr-xl-42 {
    padding-right: 42px !important;
  }
  .mb-xl-44 {
    margin-bottom: 44px !important;
  }
  .mt-xl-44 {
    margin-top: 44px !important;
  }
  .ml-xl-44 {
    margin-left: 44px !important;
  }
  .mr-xl-44 {
    margin-right: 44px !important;
  }
  .pb-xl-44 {
    padding-bottom: 44px !important;
  }
  .pt-xl-44 {
    padding-top: 44px !important;
  }
  .pl-xl-44 {
    padding-left: 44px !important;
  }
  .pr-xl-44 {
    padding-right: 44px !important;
  }
  .mb-xl-48 {
    margin-bottom: 48px !important;
  }
  .mt-xl-48 {
    margin-top: 48px !important;
  }
  .ml-xl-48 {
    margin-left: 48px !important;
  }
  .mr-xl-48 {
    margin-right: 48px !important;
  }
  .pb-xl-48 {
    padding-bottom: 48px !important;
  }
  .pt-xl-48 {
    padding-top: 48px !important;
  }
  .pl-xl-48 {
    padding-left: 48px !important;
  }
  .pr-xl-48 {
    padding-right: 48px !important;
  }
  .mb-xl-52 {
    margin-bottom: 52px !important;
  }
  .mt-xl-52 {
    margin-top: 52px !important;
  }
  .ml-xl-52 {
    margin-left: 52px !important;
  }
  .mr-xl-52 {
    margin-right: 52px !important;
  }
  .pb-xl-52 {
    padding-bottom: 52px !important;
  }
  .pt-xl-52 {
    padding-top: 52px !important;
  }
  .pl-xl-52 {
    padding-left: 52px !important;
  }
  .pr-xl-52 {
    padding-right: 52px !important;
  }
  .mb-xl-54 {
    margin-bottom: 54px !important;
  }
  .mt-xl-54 {
    margin-top: 54px !important;
  }
  .ml-xl-54 {
    margin-left: 54px !important;
  }
  .mr-xl-54 {
    margin-right: 54px !important;
  }
  .pb-xl-54 {
    padding-bottom: 54px !important;
  }
  .pt-xl-54 {
    padding-top: 54px !important;
  }
  .pl-xl-54 {
    padding-left: 54px !important;
  }
  .pr-xl-54 {
    padding-right: 54px !important;
  }
  .mb-xl-56 {
    margin-bottom: 56px !important;
  }
  .mt-xl-56 {
    margin-top: 56px !important;
  }
  .ml-xl-56 {
    margin-left: 56px !important;
  }
  .mr-xl-56 {
    margin-right: 56px !important;
  }
  .pb-xl-56 {
    padding-bottom: 56px !important;
  }
  .pt-xl-56 {
    padding-top: 56px !important;
  }
  .pl-xl-56 {
    padding-left: 56px !important;
  }
  .pr-xl-56 {
    padding-right: 56px !important;
  }
  .mb-xl-62 {
    margin-bottom: 62px !important;
  }
  .mt-xl-62 {
    margin-top: 62px !important;
  }
  .ml-xl-62 {
    margin-left: 62px !important;
  }
  .mr-xl-62 {
    margin-right: 62px !important;
  }
  .pb-xl-62 {
    padding-bottom: 62px !important;
  }
  .pt-xl-62 {
    padding-top: 62px !important;
  }
  .pl-xl-62 {
    padding-left: 62px !important;
  }
  .pr-xl-62 {
    padding-right: 62px !important;
  }
  .mb-xl-64 {
    margin-bottom: 64px !important;
  }
  .mt-xl-64 {
    margin-top: 64px !important;
  }
  .ml-xl-64 {
    margin-left: 64px !important;
  }
  .mr-xl-64 {
    margin-right: 64px !important;
  }
  .pb-xl-64 {
    padding-bottom: 64px !important;
  }
  .pt-xl-64 {
    padding-top: 64px !important;
  }
  .pl-xl-64 {
    padding-left: 64px !important;
  }
  .pr-xl-64 {
    padding-right: 64px !important;
  }
  .mb-xl-72 {
    margin-bottom: 72px !important;
  }
  .mt-xl-72 {
    margin-top: 72px !important;
  }
  .ml-xl-72 {
    margin-left: 72px !important;
  }
  .mr-xl-72 {
    margin-right: 72px !important;
  }
  .pb-xl-72 {
    padding-bottom: 72px !important;
  }
  .pt-xl-72 {
    padding-top: 72px !important;
  }
  .pl-xl-72 {
    padding-left: 72px !important;
  }
  .pr-xl-72 {
    padding-right: 72px !important;
  }
  .mb-xl-78 {
    margin-bottom: 78px !important;
  }
  .mt-xl-78 {
    margin-top: 78px !important;
  }
  .ml-xl-78 {
    margin-left: 78px !important;
  }
  .mr-xl-78 {
    margin-right: 78px !important;
  }
  .pb-xl-78 {
    padding-bottom: 78px !important;
  }
  .pt-xl-78 {
    padding-top: 78px !important;
  }
  .pl-xl-78 {
    padding-left: 78px !important;
  }
  .pr-xl-78 {
    padding-right: 78px !important;
  }
  .mb-xl-82 {
    margin-bottom: 82px !important;
  }
  .mt-xl-82 {
    margin-top: 82px !important;
  }
  .ml-xl-82 {
    margin-left: 82px !important;
  }
  .mr-xl-82 {
    margin-right: 82px !important;
  }
  .pb-xl-82 {
    padding-bottom: 82px !important;
  }
  .pt-xl-82 {
    padding-top: 82px !important;
  }
  .pl-xl-82 {
    padding-left: 82px !important;
  }
  .pr-xl-82 {
    padding-right: 82px !important;
  }
  .mb-xl-84 {
    margin-bottom: 84px !important;
  }
  .mt-xl-84 {
    margin-top: 84px !important;
  }
  .ml-xl-84 {
    margin-left: 84px !important;
  }
  .mr-xl-84 {
    margin-right: 84px !important;
  }
  .pb-xl-84 {
    padding-bottom: 84px !important;
  }
  .pt-xl-84 {
    padding-top: 84px !important;
  }
  .pl-xl-84 {
    padding-left: 84px !important;
  }
  .pr-xl-84 {
    padding-right: 84px !important;
  }
  .mb-xl-92 {
    margin-bottom: 92px !important;
  }
  .mt-xl-92 {
    margin-top: 92px !important;
  }
  .ml-xl-92 {
    margin-left: 92px !important;
  }
  .mr-xl-92 {
    margin-right: 92px !important;
  }
  .pb-xl-92 {
    padding-bottom: 92px !important;
  }
  .pt-xl-92 {
    padding-top: 92px !important;
  }
  .pl-xl-92 {
    padding-left: 92px !important;
  }
  .pr-xl-92 {
    padding-right: 92px !important;
  }
  .mb-xl-102 {
    margin-bottom: 102px !important;
  }
  .mt-xl-102 {
    margin-top: 102px !important;
  }
  .ml-xl-102 {
    margin-left: 102px !important;
  }
  .mr-xl-102 {
    margin-right: 102px !important;
  }
  .pb-xl-102 {
    padding-bottom: 102px !important;
  }
  .pt-xl-102 {
    padding-top: 102px !important;
  }
  .pl-xl-102 {
    padding-left: 102px !important;
  }
  .pr-xl-102 {
    padding-right: 102px !important;
  }
  .mb-xl-104 {
    margin-bottom: 104px !important;
  }
  .mt-xl-104 {
    margin-top: 104px !important;
  }
  .ml-xl-104 {
    margin-left: 104px !important;
  }
  .mr-xl-104 {
    margin-right: 104px !important;
  }
  .pb-xl-104 {
    padding-bottom: 104px !important;
  }
  .pt-xl-104 {
    padding-top: 104px !important;
  }
  .pl-xl-104 {
    padding-left: 104px !important;
  }
  .pr-xl-104 {
    padding-right: 104px !important;
  }
  .mb-xl-108 {
    margin-bottom: 108px !important;
  }
  .mt-xl-108 {
    margin-top: 108px !important;
  }
  .ml-xl-108 {
    margin-left: 108px !important;
  }
  .mr-xl-108 {
    margin-right: 108px !important;
  }
  .pb-xl-108 {
    padding-bottom: 108px !important;
  }
  .pt-xl-108 {
    padding-top: 108px !important;
  }
  .pl-xl-108 {
    padding-left: 108px !important;
  }
  .pr-xl-108 {
    padding-right: 108px !important;
  }
  .mb-xl-112 {
    margin-bottom: 112px !important;
  }
  .mt-xl-112 {
    margin-top: 112px !important;
  }
  .ml-xl-112 {
    margin-left: 112px !important;
  }
  .mr-xl-112 {
    margin-right: 112px !important;
  }
  .pb-xl-112 {
    padding-bottom: 112px !important;
  }
  .pt-xl-112 {
    padding-top: 112px !important;
  }
  .pl-xl-112 {
    padding-left: 112px !important;
  }
  .pr-xl-112 {
    padding-right: 112px !important;
  }
  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-lg-0,
  .gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-x > * {
    padding-left: 0;
  }
  .gap-lg-0,
  .gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-y > * {
    padding-top: 0;
  }
  .gap-lg-4,
  .gap-lg-4-x {
    margin-left: -4px;
  }
  .gap-lg-4 > *,
  .gap-lg-4-x > * {
    padding-left: 4px;
  }
  .gap-lg-4,
  .gap-lg-4-y {
    margin-top: -4px;
  }
  .gap-lg-4 > *,
  .gap-lg-4-y > * {
    padding-top: 4px;
  }
  .gap-lg-6,
  .gap-lg-6-x {
    margin-left: -6px;
  }
  .gap-lg-6 > *,
  .gap-lg-6-x > * {
    padding-left: 6px;
  }
  .gap-lg-6,
  .gap-lg-6-y {
    margin-top: -6px;
  }
  .gap-lg-6 > *,
  .gap-lg-6-y > * {
    padding-top: 6px;
  }
  .gap-lg-8,
  .gap-lg-8-x {
    margin-left: -8px;
  }
  .gap-lg-8 > *,
  .gap-lg-8-x > * {
    padding-left: 8px;
  }
  .gap-lg-8,
  .gap-lg-8-y {
    margin-top: -8px;
  }
  .gap-lg-8 > *,
  .gap-lg-8-y > * {
    padding-top: 8px;
  }
  .gap-lg-10,
  .gap-lg-10-x {
    margin-left: -10px;
  }
  .gap-lg-10 > *,
  .gap-lg-10-x > * {
    padding-left: 10px;
  }
  .gap-lg-10,
  .gap-lg-10-y {
    margin-top: -10px;
  }
  .gap-lg-10 > *,
  .gap-lg-10-y > * {
    padding-top: 10px;
  }
  .gap-lg-12,
  .gap-lg-12-x {
    margin-left: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-x > * {
    padding-left: 12px;
  }
  .gap-lg-12,
  .gap-lg-12-y {
    margin-top: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-y > * {
    padding-top: 12px;
  }
  .gap-lg-16,
  .gap-lg-16-x {
    margin-left: -16px;
  }
  .gap-lg-16 > *,
  .gap-lg-16-x > * {
    padding-left: 16px;
  }
  .gap-lg-16,
  .gap-lg-16-y {
    margin-top: -16px;
  }
  .gap-lg-16 > *,
  .gap-lg-16-y > * {
    padding-top: 16px;
  }
  .gap-lg-18,
  .gap-lg-18-x {
    margin-left: -18px;
  }
  .gap-lg-18 > *,
  .gap-lg-18-x > * {
    padding-left: 18px;
  }
  .gap-lg-18,
  .gap-lg-18-y {
    margin-top: -18px;
  }
  .gap-lg-18 > *,
  .gap-lg-18-y > * {
    padding-top: 18px;
  }
  .gap-lg-24,
  .gap-lg-24-x {
    margin-left: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-x > * {
    padding-left: 24px;
  }
  .gap-lg-24,
  .gap-lg-24-y {
    margin-top: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-y > * {
    padding-top: 24px;
  }
  .gap-lg-28,
  .gap-lg-28-x {
    margin-left: -28px;
  }
  .gap-lg-28 > *,
  .gap-lg-28-x > * {
    padding-left: 28px;
  }
  .gap-lg-28,
  .gap-lg-28-y {
    margin-top: -28px;
  }
  .gap-lg-28 > *,
  .gap-lg-28-y > * {
    padding-top: 28px;
  }
  .gap-lg-32,
  .gap-lg-32-x {
    margin-left: -32px;
  }
  .gap-lg-32 > *,
  .gap-lg-32-x > * {
    padding-left: 32px;
  }
  .gap-lg-32,
  .gap-lg-32-y {
    margin-top: -32px;
  }
  .gap-lg-32 > *,
  .gap-lg-32-y > * {
    padding-top: 32px;
  }
  .gap-lg-36,
  .gap-lg-36-x {
    margin-left: -36px;
  }
  .gap-lg-36 > *,
  .gap-lg-36-x > * {
    padding-left: 36px;
  }
  .gap-lg-36,
  .gap-lg-36-y {
    margin-top: -36px;
  }
  .gap-lg-36 > *,
  .gap-lg-36-y > * {
    padding-top: 36px;
  }
  .gap-lg-38,
  .gap-lg-38-x {
    margin-left: -38px;
  }
  .gap-lg-38 > *,
  .gap-lg-38-x > * {
    padding-left: 38px;
  }
  .gap-lg-38,
  .gap-lg-38-y {
    margin-top: -38px;
  }
  .gap-lg-38 > *,
  .gap-lg-38-y > * {
    padding-top: 38px;
  }
  .gap-lg-42,
  .gap-lg-42-x {
    margin-left: -42px;
  }
  .gap-lg-42 > *,
  .gap-lg-42-x > * {
    padding-left: 42px;
  }
  .gap-lg-42,
  .gap-lg-42-y {
    margin-top: -42px;
  }
  .gap-lg-42 > *,
  .gap-lg-42-y > * {
    padding-top: 42px;
  }
  .gap-lg-44,
  .gap-lg-44-x {
    margin-left: -44px;
  }
  .gap-lg-44 > *,
  .gap-lg-44-x > * {
    padding-left: 44px;
  }
  .gap-lg-44,
  .gap-lg-44-y {
    margin-top: -44px;
  }
  .gap-lg-44 > *,
  .gap-lg-44-y > * {
    padding-top: 44px;
  }
  .gap-lg-48,
  .gap-lg-48-x {
    margin-left: -48px;
  }
  .gap-lg-48 > *,
  .gap-lg-48-x > * {
    padding-left: 48px;
  }
  .gap-lg-48,
  .gap-lg-48-y {
    margin-top: -48px;
  }
  .gap-lg-48 > *,
  .gap-lg-48-y > * {
    padding-top: 48px;
  }
  .gap-lg-52,
  .gap-lg-52-x {
    margin-left: -52px;
  }
  .gap-lg-52 > *,
  .gap-lg-52-x > * {
    padding-left: 52px;
  }
  .gap-lg-52,
  .gap-lg-52-y {
    margin-top: -52px;
  }
  .gap-lg-52 > *,
  .gap-lg-52-y > * {
    padding-top: 52px;
  }
  .gap-lg-54,
  .gap-lg-54-x {
    margin-left: -54px;
  }
  .gap-lg-54 > *,
  .gap-lg-54-x > * {
    padding-left: 54px;
  }
  .gap-lg-54,
  .gap-lg-54-y {
    margin-top: -54px;
  }
  .gap-lg-54 > *,
  .gap-lg-54-y > * {
    padding-top: 54px;
  }
  .gap-lg-56,
  .gap-lg-56-x {
    margin-left: -56px;
  }
  .gap-lg-56 > *,
  .gap-lg-56-x > * {
    padding-left: 56px;
  }
  .gap-lg-56,
  .gap-lg-56-y {
    margin-top: -56px;
  }
  .gap-lg-56 > *,
  .gap-lg-56-y > * {
    padding-top: 56px;
  }
  .gap-lg-62,
  .gap-lg-62-x {
    margin-left: -62px;
  }
  .gap-lg-62 > *,
  .gap-lg-62-x > * {
    padding-left: 62px;
  }
  .gap-lg-62,
  .gap-lg-62-y {
    margin-top: -62px;
  }
  .gap-lg-62 > *,
  .gap-lg-62-y > * {
    padding-top: 62px;
  }
  .gap-lg-64,
  .gap-lg-64-x {
    margin-left: -64px;
  }
  .gap-lg-64 > *,
  .gap-lg-64-x > * {
    padding-left: 64px;
  }
  .gap-lg-64,
  .gap-lg-64-y {
    margin-top: -64px;
  }
  .gap-lg-64 > *,
  .gap-lg-64-y > * {
    padding-top: 64px;
  }
  .gap-lg-72,
  .gap-lg-72-x {
    margin-left: -72px;
  }
  .gap-lg-72 > *,
  .gap-lg-72-x > * {
    padding-left: 72px;
  }
  .gap-lg-72,
  .gap-lg-72-y {
    margin-top: -72px;
  }
  .gap-lg-72 > *,
  .gap-lg-72-y > * {
    padding-top: 72px;
  }
  .gap-lg-78,
  .gap-lg-78-x {
    margin-left: -78px;
  }
  .gap-lg-78 > *,
  .gap-lg-78-x > * {
    padding-left: 78px;
  }
  .gap-lg-78,
  .gap-lg-78-y {
    margin-top: -78px;
  }
  .gap-lg-78 > *,
  .gap-lg-78-y > * {
    padding-top: 78px;
  }
  .gap-lg-82,
  .gap-lg-82-x {
    margin-left: -82px;
  }
  .gap-lg-82 > *,
  .gap-lg-82-x > * {
    padding-left: 82px;
  }
  .gap-lg-82,
  .gap-lg-82-y {
    margin-top: -82px;
  }
  .gap-lg-82 > *,
  .gap-lg-82-y > * {
    padding-top: 82px;
  }
  .gap-lg-84,
  .gap-lg-84-x {
    margin-left: -84px;
  }
  .gap-lg-84 > *,
  .gap-lg-84-x > * {
    padding-left: 84px;
  }
  .gap-lg-84,
  .gap-lg-84-y {
    margin-top: -84px;
  }
  .gap-lg-84 > *,
  .gap-lg-84-y > * {
    padding-top: 84px;
  }
  .gap-lg-86,
  .gap-lg-86-x {
    margin-left: -86px;
  }
  .gap-lg-86 > *,
  .gap-lg-86-x > * {
    padding-left: 86px;
  }
  .gap-lg-86,
  .gap-lg-86-y {
    margin-top: -86px;
  }
  .gap-lg-86 > *,
  .gap-lg-86-y > * {
    padding-top: 86px;
  }
  .gap-lg-92,
  .gap-lg-92-x {
    margin-left: -92px;
  }
  .gap-lg-92 > *,
  .gap-lg-92-x > * {
    padding-left: 92px;
  }
  .gap-lg-92,
  .gap-lg-92-y {
    margin-top: -92px;
  }
  .gap-lg-92 > *,
  .gap-lg-92-y > * {
    padding-top: 92px;
  }
  .gap-lg-102,
  .gap-lg-102-x {
    margin-left: -102px;
  }
  .gap-lg-102 > *,
  .gap-lg-102-x > * {
    padding-left: 102px;
  }
  .gap-lg-102,
  .gap-lg-102-y {
    margin-top: -102px;
  }
  .gap-lg-102 > *,
  .gap-lg-102-y > * {
    padding-top: 102px;
  }
  .gap-lg-104,
  .gap-lg-104-x {
    margin-left: -104px;
  }
  .gap-lg-104 > *,
  .gap-lg-104-x > * {
    padding-left: 104px;
  }
  .gap-lg-104,
  .gap-lg-104-y {
    margin-top: -104px;
  }
  .gap-lg-104 > *,
  .gap-lg-104-y > * {
    padding-top: 104px;
  }
  .gap-lg-108,
  .gap-lg-108-x {
    margin-left: -108px;
  }
  .gap-lg-108 > *,
  .gap-lg-108-x > * {
    padding-left: 108px;
  }
  .gap-lg-108,
  .gap-lg-108-y {
    margin-top: -108px;
  }
  .gap-lg-108 > *,
  .gap-lg-108-y > * {
    padding-top: 108px;
  }
  .gap-lg-112,
  .gap-lg-112-x {
    margin-left: -112px;
  }
  .gap-lg-112 > *,
  .gap-lg-112-x > * {
    padding-left: 112px;
  }
  .gap-lg-112,
  .gap-lg-112-y {
    margin-top: -112px;
  }
  .gap-lg-112 > *,
  .gap-lg-112-y > * {
    padding-top: 112px;
  }
  /* Generate all gap classes */
  .mb-lg-a {
    margin-bottom: auto !important;
  }
  .mt-lg-a {
    margin-top: auto !important;
  }
  .ml-lg-a {
    margin-left: auto !important;
  }
  .mr-lg-a {
    margin-right: auto !important;
  }
  .pb-lg-a {
    padding-bottom: auto !important;
  }
  .pt-lg-a {
    padding-top: auto !important;
  }
  .pl-lg-a {
    padding-left: auto !important;
  }
  .pr-lg-a {
    padding-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .mb-lg-4 {
    margin-bottom: 4px !important;
  }
  .mt-lg-4 {
    margin-top: 4px !important;
  }
  .ml-lg-4 {
    margin-left: 4px !important;
  }
  .mr-lg-4 {
    margin-right: 4px !important;
  }
  .pb-lg-4 {
    padding-bottom: 4px !important;
  }
  .pt-lg-4 {
    padding-top: 4px !important;
  }
  .pl-lg-4 {
    padding-left: 4px !important;
  }
  .pr-lg-4 {
    padding-right: 4px !important;
  }
  .mb-lg-6 {
    margin-bottom: 6px !important;
  }
  .mt-lg-6 {
    margin-top: 6px !important;
  }
  .ml-lg-6 {
    margin-left: 6px !important;
  }
  .mr-lg-6 {
    margin-right: 6px !important;
  }
  .pb-lg-6 {
    padding-bottom: 6px !important;
  }
  .pt-lg-6 {
    padding-top: 6px !important;
  }
  .pl-lg-6 {
    padding-left: 6px !important;
  }
  .pr-lg-6 {
    padding-right: 6px !important;
  }
  .mb-lg-8 {
    margin-bottom: 8px !important;
  }
  .mt-lg-8 {
    margin-top: 8px !important;
  }
  .ml-lg-8 {
    margin-left: 8px !important;
  }
  .mr-lg-8 {
    margin-right: 8px !important;
  }
  .pb-lg-8 {
    padding-bottom: 8px !important;
  }
  .pt-lg-8 {
    padding-top: 8px !important;
  }
  .pl-lg-8 {
    padding-left: 8px !important;
  }
  .pr-lg-8 {
    padding-right: 8px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .mb-lg-12 {
    margin-bottom: 12px !important;
  }
  .mt-lg-12 {
    margin-top: 12px !important;
  }
  .ml-lg-12 {
    margin-left: 12px !important;
  }
  .mr-lg-12 {
    margin-right: 12px !important;
  }
  .pb-lg-12 {
    padding-bottom: 12px !important;
  }
  .pt-lg-12 {
    padding-top: 12px !important;
  }
  .pl-lg-12 {
    padding-left: 12px !important;
  }
  .pr-lg-12 {
    padding-right: 12px !important;
  }
  .mb-lg-16 {
    margin-bottom: 16px !important;
  }
  .mt-lg-16 {
    margin-top: 16px !important;
  }
  .ml-lg-16 {
    margin-left: 16px !important;
  }
  .mr-lg-16 {
    margin-right: 16px !important;
  }
  .pb-lg-16 {
    padding-bottom: 16px !important;
  }
  .pt-lg-16 {
    padding-top: 16px !important;
  }
  .pl-lg-16 {
    padding-left: 16px !important;
  }
  .pr-lg-16 {
    padding-right: 16px !important;
  }
  .mb-lg-18 {
    margin-bottom: 18px !important;
  }
  .mt-lg-18 {
    margin-top: 18px !important;
  }
  .ml-lg-18 {
    margin-left: 18px !important;
  }
  .mr-lg-18 {
    margin-right: 18px !important;
  }
  .pb-lg-18 {
    padding-bottom: 18px !important;
  }
  .pt-lg-18 {
    padding-top: 18px !important;
  }
  .pl-lg-18 {
    padding-left: 18px !important;
  }
  .pr-lg-18 {
    padding-right: 18px !important;
  }
  .mb-lg-24 {
    margin-bottom: 24px !important;
  }
  .mt-lg-24 {
    margin-top: 24px !important;
  }
  .ml-lg-24 {
    margin-left: 24px !important;
  }
  .mr-lg-24 {
    margin-right: 24px !important;
  }
  .pb-lg-24 {
    padding-bottom: 24px !important;
  }
  .pt-lg-24 {
    padding-top: 24px !important;
  }
  .pl-lg-24 {
    padding-left: 24px !important;
  }
  .pr-lg-24 {
    padding-right: 24px !important;
  }
  .mb-lg-28 {
    margin-bottom: 28px !important;
  }
  .mt-lg-28 {
    margin-top: 28px !important;
  }
  .ml-lg-28 {
    margin-left: 28px !important;
  }
  .mr-lg-28 {
    margin-right: 28px !important;
  }
  .pb-lg-28 {
    padding-bottom: 28px !important;
  }
  .pt-lg-28 {
    padding-top: 28px !important;
  }
  .pl-lg-28 {
    padding-left: 28px !important;
  }
  .pr-lg-28 {
    padding-right: 28px !important;
  }
  .mb-lg-32 {
    margin-bottom: 32px !important;
  }
  .mt-lg-32 {
    margin-top: 32px !important;
  }
  .ml-lg-32 {
    margin-left: 32px !important;
  }
  .mr-lg-32 {
    margin-right: 32px !important;
  }
  .pb-lg-32 {
    padding-bottom: 32px !important;
  }
  .pt-lg-32 {
    padding-top: 32px !important;
  }
  .pl-lg-32 {
    padding-left: 32px !important;
  }
  .pr-lg-32 {
    padding-right: 32px !important;
  }
  .mb-lg-36 {
    margin-bottom: 36px !important;
  }
  .mt-lg-36 {
    margin-top: 36px !important;
  }
  .ml-lg-36 {
    margin-left: 36px !important;
  }
  .mr-lg-36 {
    margin-right: 36px !important;
  }
  .pb-lg-36 {
    padding-bottom: 36px !important;
  }
  .pt-lg-36 {
    padding-top: 36px !important;
  }
  .pl-lg-36 {
    padding-left: 36px !important;
  }
  .pr-lg-36 {
    padding-right: 36px !important;
  }
  .mb-lg-38 {
    margin-bottom: 38px !important;
  }
  .mt-lg-38 {
    margin-top: 38px !important;
  }
  .ml-lg-38 {
    margin-left: 38px !important;
  }
  .mr-lg-38 {
    margin-right: 38px !important;
  }
  .pb-lg-38 {
    padding-bottom: 38px !important;
  }
  .pt-lg-38 {
    padding-top: 38px !important;
  }
  .pl-lg-38 {
    padding-left: 38px !important;
  }
  .pr-lg-38 {
    padding-right: 38px !important;
  }
  .mb-lg-42 {
    margin-bottom: 42px !important;
  }
  .mt-lg-42 {
    margin-top: 42px !important;
  }
  .ml-lg-42 {
    margin-left: 42px !important;
  }
  .mr-lg-42 {
    margin-right: 42px !important;
  }
  .pb-lg-42 {
    padding-bottom: 42px !important;
  }
  .pt-lg-42 {
    padding-top: 42px !important;
  }
  .pl-lg-42 {
    padding-left: 42px !important;
  }
  .pr-lg-42 {
    padding-right: 42px !important;
  }
  .mb-lg-44 {
    margin-bottom: 44px !important;
  }
  .mt-lg-44 {
    margin-top: 44px !important;
  }
  .ml-lg-44 {
    margin-left: 44px !important;
  }
  .mr-lg-44 {
    margin-right: 44px !important;
  }
  .pb-lg-44 {
    padding-bottom: 44px !important;
  }
  .pt-lg-44 {
    padding-top: 44px !important;
  }
  .pl-lg-44 {
    padding-left: 44px !important;
  }
  .pr-lg-44 {
    padding-right: 44px !important;
  }
  .mb-lg-48 {
    margin-bottom: 48px !important;
  }
  .mt-lg-48 {
    margin-top: 48px !important;
  }
  .ml-lg-48 {
    margin-left: 48px !important;
  }
  .mr-lg-48 {
    margin-right: 48px !important;
  }
  .pb-lg-48 {
    padding-bottom: 48px !important;
  }
  .pt-lg-48 {
    padding-top: 48px !important;
  }
  .pl-lg-48 {
    padding-left: 48px !important;
  }
  .pr-lg-48 {
    padding-right: 48px !important;
  }
  .mb-lg-52 {
    margin-bottom: 52px !important;
  }
  .mt-lg-52 {
    margin-top: 52px !important;
  }
  .ml-lg-52 {
    margin-left: 52px !important;
  }
  .mr-lg-52 {
    margin-right: 52px !important;
  }
  .pb-lg-52 {
    padding-bottom: 52px !important;
  }
  .pt-lg-52 {
    padding-top: 52px !important;
  }
  .pl-lg-52 {
    padding-left: 52px !important;
  }
  .pr-lg-52 {
    padding-right: 52px !important;
  }
  .mb-lg-54 {
    margin-bottom: 54px !important;
  }
  .mt-lg-54 {
    margin-top: 54px !important;
  }
  .ml-lg-54 {
    margin-left: 54px !important;
  }
  .mr-lg-54 {
    margin-right: 54px !important;
  }
  .pb-lg-54 {
    padding-bottom: 54px !important;
  }
  .pt-lg-54 {
    padding-top: 54px !important;
  }
  .pl-lg-54 {
    padding-left: 54px !important;
  }
  .pr-lg-54 {
    padding-right: 54px !important;
  }
  .mb-lg-56 {
    margin-bottom: 56px !important;
  }
  .mt-lg-56 {
    margin-top: 56px !important;
  }
  .ml-lg-56 {
    margin-left: 56px !important;
  }
  .mr-lg-56 {
    margin-right: 56px !important;
  }
  .pb-lg-56 {
    padding-bottom: 56px !important;
  }
  .pt-lg-56 {
    padding-top: 56px !important;
  }
  .pl-lg-56 {
    padding-left: 56px !important;
  }
  .pr-lg-56 {
    padding-right: 56px !important;
  }
  .mb-lg-62 {
    margin-bottom: 62px !important;
  }
  .mt-lg-62 {
    margin-top: 62px !important;
  }
  .ml-lg-62 {
    margin-left: 62px !important;
  }
  .mr-lg-62 {
    margin-right: 62px !important;
  }
  .pb-lg-62 {
    padding-bottom: 62px !important;
  }
  .pt-lg-62 {
    padding-top: 62px !important;
  }
  .pl-lg-62 {
    padding-left: 62px !important;
  }
  .pr-lg-62 {
    padding-right: 62px !important;
  }
  .mb-lg-64 {
    margin-bottom: 64px !important;
  }
  .mt-lg-64 {
    margin-top: 64px !important;
  }
  .ml-lg-64 {
    margin-left: 64px !important;
  }
  .mr-lg-64 {
    margin-right: 64px !important;
  }
  .pb-lg-64 {
    padding-bottom: 64px !important;
  }
  .pt-lg-64 {
    padding-top: 64px !important;
  }
  .pl-lg-64 {
    padding-left: 64px !important;
  }
  .pr-lg-64 {
    padding-right: 64px !important;
  }
  .mb-lg-72 {
    margin-bottom: 72px !important;
  }
  .mt-lg-72 {
    margin-top: 72px !important;
  }
  .ml-lg-72 {
    margin-left: 72px !important;
  }
  .mr-lg-72 {
    margin-right: 72px !important;
  }
  .pb-lg-72 {
    padding-bottom: 72px !important;
  }
  .pt-lg-72 {
    padding-top: 72px !important;
  }
  .pl-lg-72 {
    padding-left: 72px !important;
  }
  .pr-lg-72 {
    padding-right: 72px !important;
  }
  .mb-lg-78 {
    margin-bottom: 78px !important;
  }
  .mt-lg-78 {
    margin-top: 78px !important;
  }
  .ml-lg-78 {
    margin-left: 78px !important;
  }
  .mr-lg-78 {
    margin-right: 78px !important;
  }
  .pb-lg-78 {
    padding-bottom: 78px !important;
  }
  .pt-lg-78 {
    padding-top: 78px !important;
  }
  .pl-lg-78 {
    padding-left: 78px !important;
  }
  .pr-lg-78 {
    padding-right: 78px !important;
  }
  .mb-lg-82 {
    margin-bottom: 82px !important;
  }
  .mt-lg-82 {
    margin-top: 82px !important;
  }
  .ml-lg-82 {
    margin-left: 82px !important;
  }
  .mr-lg-82 {
    margin-right: 82px !important;
  }
  .pb-lg-82 {
    padding-bottom: 82px !important;
  }
  .pt-lg-82 {
    padding-top: 82px !important;
  }
  .pl-lg-82 {
    padding-left: 82px !important;
  }
  .pr-lg-82 {
    padding-right: 82px !important;
  }
  .mb-lg-84 {
    margin-bottom: 84px !important;
  }
  .mt-lg-84 {
    margin-top: 84px !important;
  }
  .ml-lg-84 {
    margin-left: 84px !important;
  }
  .mr-lg-84 {
    margin-right: 84px !important;
  }
  .pb-lg-84 {
    padding-bottom: 84px !important;
  }
  .pt-lg-84 {
    padding-top: 84px !important;
  }
  .pl-lg-84 {
    padding-left: 84px !important;
  }
  .pr-lg-84 {
    padding-right: 84px !important;
  }
  .mb-lg-92 {
    margin-bottom: 92px !important;
  }
  .mt-lg-92 {
    margin-top: 92px !important;
  }
  .ml-lg-92 {
    margin-left: 92px !important;
  }
  .mr-lg-92 {
    margin-right: 92px !important;
  }
  .pb-lg-92 {
    padding-bottom: 92px !important;
  }
  .pt-lg-92 {
    padding-top: 92px !important;
  }
  .pl-lg-92 {
    padding-left: 92px !important;
  }
  .pr-lg-92 {
    padding-right: 92px !important;
  }
  .mb-lg-102 {
    margin-bottom: 102px !important;
  }
  .mt-lg-102 {
    margin-top: 102px !important;
  }
  .ml-lg-102 {
    margin-left: 102px !important;
  }
  .mr-lg-102 {
    margin-right: 102px !important;
  }
  .pb-lg-102 {
    padding-bottom: 102px !important;
  }
  .pt-lg-102 {
    padding-top: 102px !important;
  }
  .pl-lg-102 {
    padding-left: 102px !important;
  }
  .pr-lg-102 {
    padding-right: 102px !important;
  }
  .mb-lg-104 {
    margin-bottom: 104px !important;
  }
  .mt-lg-104 {
    margin-top: 104px !important;
  }
  .ml-lg-104 {
    margin-left: 104px !important;
  }
  .mr-lg-104 {
    margin-right: 104px !important;
  }
  .pb-lg-104 {
    padding-bottom: 104px !important;
  }
  .pt-lg-104 {
    padding-top: 104px !important;
  }
  .pl-lg-104 {
    padding-left: 104px !important;
  }
  .pr-lg-104 {
    padding-right: 104px !important;
  }
  .mb-lg-108 {
    margin-bottom: 108px !important;
  }
  .mt-lg-108 {
    margin-top: 108px !important;
  }
  .ml-lg-108 {
    margin-left: 108px !important;
  }
  .mr-lg-108 {
    margin-right: 108px !important;
  }
  .pb-lg-108 {
    padding-bottom: 108px !important;
  }
  .pt-lg-108 {
    padding-top: 108px !important;
  }
  .pl-lg-108 {
    padding-left: 108px !important;
  }
  .pr-lg-108 {
    padding-right: 108px !important;
  }
  .mb-lg-112 {
    margin-bottom: 112px !important;
  }
  .mt-lg-112 {
    margin-top: 112px !important;
  }
  .ml-lg-112 {
    margin-left: 112px !important;
  }
  .mr-lg-112 {
    margin-right: 112px !important;
  }
  .pb-lg-112 {
    padding-bottom: 112px !important;
  }
  .pt-lg-112 {
    padding-top: 112px !important;
  }
  .pl-lg-112 {
    padding-left: 112px !important;
  }
  .pr-lg-112 {
    padding-right: 112px !important;
  }
  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-md-0,
  .gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-x > * {
    padding-left: 0;
  }
  .gap-md-0,
  .gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-y > * {
    padding-top: 0;
  }
  .gap-md-4,
  .gap-md-4-x {
    margin-left: -4px;
  }
  .gap-md-4 > *,
  .gap-md-4-x > * {
    padding-left: 4px;
  }
  .gap-md-4,
  .gap-md-4-y {
    margin-top: -4px;
  }
  .gap-md-4 > *,
  .gap-md-4-y > * {
    padding-top: 4px;
  }
  .gap-md-6,
  .gap-md-6-x {
    margin-left: -6px;
  }
  .gap-md-6 > *,
  .gap-md-6-x > * {
    padding-left: 6px;
  }
  .gap-md-6,
  .gap-md-6-y {
    margin-top: -6px;
  }
  .gap-md-6 > *,
  .gap-md-6-y > * {
    padding-top: 6px;
  }
  .gap-md-8,
  .gap-md-8-x {
    margin-left: -8px;
  }
  .gap-md-8 > *,
  .gap-md-8-x > * {
    padding-left: 8px;
  }
  .gap-md-8,
  .gap-md-8-y {
    margin-top: -8px;
  }
  .gap-md-8 > *,
  .gap-md-8-y > * {
    padding-top: 8px;
  }
  .gap-md-10,
  .gap-md-10-x {
    margin-left: -10px;
  }
  .gap-md-10 > *,
  .gap-md-10-x > * {
    padding-left: 10px;
  }
  .gap-md-10,
  .gap-md-10-y {
    margin-top: -10px;
  }
  .gap-md-10 > *,
  .gap-md-10-y > * {
    padding-top: 10px;
  }
  .gap-md-12,
  .gap-md-12-x {
    margin-left: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-x > * {
    padding-left: 12px;
  }
  .gap-md-12,
  .gap-md-12-y {
    margin-top: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-y > * {
    padding-top: 12px;
  }
  .gap-md-16,
  .gap-md-16-x {
    margin-left: -16px;
  }
  .gap-md-16 > *,
  .gap-md-16-x > * {
    padding-left: 16px;
  }
  .gap-md-16,
  .gap-md-16-y {
    margin-top: -16px;
  }
  .gap-md-16 > *,
  .gap-md-16-y > * {
    padding-top: 16px;
  }
  .gap-md-18,
  .gap-md-18-x {
    margin-left: -18px;
  }
  .gap-md-18 > *,
  .gap-md-18-x > * {
    padding-left: 18px;
  }
  .gap-md-18,
  .gap-md-18-y {
    margin-top: -18px;
  }
  .gap-md-18 > *,
  .gap-md-18-y > * {
    padding-top: 18px;
  }
  .gap-md-24,
  .gap-md-24-x {
    margin-left: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-x > * {
    padding-left: 24px;
  }
  .gap-md-24,
  .gap-md-24-y {
    margin-top: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-y > * {
    padding-top: 24px;
  }
  .gap-md-28,
  .gap-md-28-x {
    margin-left: -28px;
  }
  .gap-md-28 > *,
  .gap-md-28-x > * {
    padding-left: 28px;
  }
  .gap-md-28,
  .gap-md-28-y {
    margin-top: -28px;
  }
  .gap-md-28 > *,
  .gap-md-28-y > * {
    padding-top: 28px;
  }
  .gap-md-32,
  .gap-md-32-x {
    margin-left: -32px;
  }
  .gap-md-32 > *,
  .gap-md-32-x > * {
    padding-left: 32px;
  }
  .gap-md-32,
  .gap-md-32-y {
    margin-top: -32px;
  }
  .gap-md-32 > *,
  .gap-md-32-y > * {
    padding-top: 32px;
  }
  .gap-md-36,
  .gap-md-36-x {
    margin-left: -36px;
  }
  .gap-md-36 > *,
  .gap-md-36-x > * {
    padding-left: 36px;
  }
  .gap-md-36,
  .gap-md-36-y {
    margin-top: -36px;
  }
  .gap-md-36 > *,
  .gap-md-36-y > * {
    padding-top: 36px;
  }
  .gap-md-38,
  .gap-md-38-x {
    margin-left: -38px;
  }
  .gap-md-38 > *,
  .gap-md-38-x > * {
    padding-left: 38px;
  }
  .gap-md-38,
  .gap-md-38-y {
    margin-top: -38px;
  }
  .gap-md-38 > *,
  .gap-md-38-y > * {
    padding-top: 38px;
  }
  .gap-md-42,
  .gap-md-42-x {
    margin-left: -42px;
  }
  .gap-md-42 > *,
  .gap-md-42-x > * {
    padding-left: 42px;
  }
  .gap-md-42,
  .gap-md-42-y {
    margin-top: -42px;
  }
  .gap-md-42 > *,
  .gap-md-42-y > * {
    padding-top: 42px;
  }
  .gap-md-44,
  .gap-md-44-x {
    margin-left: -44px;
  }
  .gap-md-44 > *,
  .gap-md-44-x > * {
    padding-left: 44px;
  }
  .gap-md-44,
  .gap-md-44-y {
    margin-top: -44px;
  }
  .gap-md-44 > *,
  .gap-md-44-y > * {
    padding-top: 44px;
  }
  .gap-md-48,
  .gap-md-48-x {
    margin-left: -48px;
  }
  .gap-md-48 > *,
  .gap-md-48-x > * {
    padding-left: 48px;
  }
  .gap-md-48,
  .gap-md-48-y {
    margin-top: -48px;
  }
  .gap-md-48 > *,
  .gap-md-48-y > * {
    padding-top: 48px;
  }
  .gap-md-52,
  .gap-md-52-x {
    margin-left: -52px;
  }
  .gap-md-52 > *,
  .gap-md-52-x > * {
    padding-left: 52px;
  }
  .gap-md-52,
  .gap-md-52-y {
    margin-top: -52px;
  }
  .gap-md-52 > *,
  .gap-md-52-y > * {
    padding-top: 52px;
  }
  .gap-md-54,
  .gap-md-54-x {
    margin-left: -54px;
  }
  .gap-md-54 > *,
  .gap-md-54-x > * {
    padding-left: 54px;
  }
  .gap-md-54,
  .gap-md-54-y {
    margin-top: -54px;
  }
  .gap-md-54 > *,
  .gap-md-54-y > * {
    padding-top: 54px;
  }
  .gap-md-56,
  .gap-md-56-x {
    margin-left: -56px;
  }
  .gap-md-56 > *,
  .gap-md-56-x > * {
    padding-left: 56px;
  }
  .gap-md-56,
  .gap-md-56-y {
    margin-top: -56px;
  }
  .gap-md-56 > *,
  .gap-md-56-y > * {
    padding-top: 56px;
  }
  .gap-md-62,
  .gap-md-62-x {
    margin-left: -62px;
  }
  .gap-md-62 > *,
  .gap-md-62-x > * {
    padding-left: 62px;
  }
  .gap-md-62,
  .gap-md-62-y {
    margin-top: -62px;
  }
  .gap-md-62 > *,
  .gap-md-62-y > * {
    padding-top: 62px;
  }
  .gap-md-64,
  .gap-md-64-x {
    margin-left: -64px;
  }
  .gap-md-64 > *,
  .gap-md-64-x > * {
    padding-left: 64px;
  }
  .gap-md-64,
  .gap-md-64-y {
    margin-top: -64px;
  }
  .gap-md-64 > *,
  .gap-md-64-y > * {
    padding-top: 64px;
  }
  .gap-md-72,
  .gap-md-72-x {
    margin-left: -72px;
  }
  .gap-md-72 > *,
  .gap-md-72-x > * {
    padding-left: 72px;
  }
  .gap-md-72,
  .gap-md-72-y {
    margin-top: -72px;
  }
  .gap-md-72 > *,
  .gap-md-72-y > * {
    padding-top: 72px;
  }
  .gap-md-78,
  .gap-md-78-x {
    margin-left: -78px;
  }
  .gap-md-78 > *,
  .gap-md-78-x > * {
    padding-left: 78px;
  }
  .gap-md-78,
  .gap-md-78-y {
    margin-top: -78px;
  }
  .gap-md-78 > *,
  .gap-md-78-y > * {
    padding-top: 78px;
  }
  .gap-md-82,
  .gap-md-82-x {
    margin-left: -82px;
  }
  .gap-md-82 > *,
  .gap-md-82-x > * {
    padding-left: 82px;
  }
  .gap-md-82,
  .gap-md-82-y {
    margin-top: -82px;
  }
  .gap-md-82 > *,
  .gap-md-82-y > * {
    padding-top: 82px;
  }
  .gap-md-84,
  .gap-md-84-x {
    margin-left: -84px;
  }
  .gap-md-84 > *,
  .gap-md-84-x > * {
    padding-left: 84px;
  }
  .gap-md-84,
  .gap-md-84-y {
    margin-top: -84px;
  }
  .gap-md-84 > *,
  .gap-md-84-y > * {
    padding-top: 84px;
  }
  .gap-md-86,
  .gap-md-86-x {
    margin-left: -86px;
  }
  .gap-md-86 > *,
  .gap-md-86-x > * {
    padding-left: 86px;
  }
  .gap-md-86,
  .gap-md-86-y {
    margin-top: -86px;
  }
  .gap-md-86 > *,
  .gap-md-86-y > * {
    padding-top: 86px;
  }
  .gap-md-92,
  .gap-md-92-x {
    margin-left: -92px;
  }
  .gap-md-92 > *,
  .gap-md-92-x > * {
    padding-left: 92px;
  }
  .gap-md-92,
  .gap-md-92-y {
    margin-top: -92px;
  }
  .gap-md-92 > *,
  .gap-md-92-y > * {
    padding-top: 92px;
  }
  .gap-md-102,
  .gap-md-102-x {
    margin-left: -102px;
  }
  .gap-md-102 > *,
  .gap-md-102-x > * {
    padding-left: 102px;
  }
  .gap-md-102,
  .gap-md-102-y {
    margin-top: -102px;
  }
  .gap-md-102 > *,
  .gap-md-102-y > * {
    padding-top: 102px;
  }
  .gap-md-104,
  .gap-md-104-x {
    margin-left: -104px;
  }
  .gap-md-104 > *,
  .gap-md-104-x > * {
    padding-left: 104px;
  }
  .gap-md-104,
  .gap-md-104-y {
    margin-top: -104px;
  }
  .gap-md-104 > *,
  .gap-md-104-y > * {
    padding-top: 104px;
  }
  .gap-md-108,
  .gap-md-108-x {
    margin-left: -108px;
  }
  .gap-md-108 > *,
  .gap-md-108-x > * {
    padding-left: 108px;
  }
  .gap-md-108,
  .gap-md-108-y {
    margin-top: -108px;
  }
  .gap-md-108 > *,
  .gap-md-108-y > * {
    padding-top: 108px;
  }
  .gap-md-112,
  .gap-md-112-x {
    margin-left: -112px;
  }
  .gap-md-112 > *,
  .gap-md-112-x > * {
    padding-left: 112px;
  }
  .gap-md-112,
  .gap-md-112-y {
    margin-top: -112px;
  }
  .gap-md-112 > *,
  .gap-md-112-y > * {
    padding-top: 112px;
  }
  /* Generate all gap classes */
  .mb-md-a {
    margin-bottom: auto !important;
  }
  .mt-md-a {
    margin-top: auto !important;
  }
  .ml-md-a {
    margin-left: auto !important;
  }
  .mr-md-a {
    margin-right: auto !important;
  }
  .pb-md-a {
    padding-bottom: auto !important;
  }
  .pt-md-a {
    padding-top: auto !important;
  }
  .pl-md-a {
    padding-left: auto !important;
  }
  .pr-md-a {
    padding-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .mb-md-4 {
    margin-bottom: 4px !important;
  }
  .mt-md-4 {
    margin-top: 4px !important;
  }
  .ml-md-4 {
    margin-left: 4px !important;
  }
  .mr-md-4 {
    margin-right: 4px !important;
  }
  .pb-md-4 {
    padding-bottom: 4px !important;
  }
  .pt-md-4 {
    padding-top: 4px !important;
  }
  .pl-md-4 {
    padding-left: 4px !important;
  }
  .pr-md-4 {
    padding-right: 4px !important;
  }
  .mb-md-6 {
    margin-bottom: 6px !important;
  }
  .mt-md-6 {
    margin-top: 6px !important;
  }
  .ml-md-6 {
    margin-left: 6px !important;
  }
  .mr-md-6 {
    margin-right: 6px !important;
  }
  .pb-md-6 {
    padding-bottom: 6px !important;
  }
  .pt-md-6 {
    padding-top: 6px !important;
  }
  .pl-md-6 {
    padding-left: 6px !important;
  }
  .pr-md-6 {
    padding-right: 6px !important;
  }
  .mb-md-8 {
    margin-bottom: 8px !important;
  }
  .mt-md-8 {
    margin-top: 8px !important;
  }
  .ml-md-8 {
    margin-left: 8px !important;
  }
  .mr-md-8 {
    margin-right: 8px !important;
  }
  .pb-md-8 {
    padding-bottom: 8px !important;
  }
  .pt-md-8 {
    padding-top: 8px !important;
  }
  .pl-md-8 {
    padding-left: 8px !important;
  }
  .pr-md-8 {
    padding-right: 8px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .mb-md-12 {
    margin-bottom: 12px !important;
  }
  .mt-md-12 {
    margin-top: 12px !important;
  }
  .ml-md-12 {
    margin-left: 12px !important;
  }
  .mr-md-12 {
    margin-right: 12px !important;
  }
  .pb-md-12 {
    padding-bottom: 12px !important;
  }
  .pt-md-12 {
    padding-top: 12px !important;
  }
  .pl-md-12 {
    padding-left: 12px !important;
  }
  .pr-md-12 {
    padding-right: 12px !important;
  }
  .mb-md-16 {
    margin-bottom: 16px !important;
  }
  .mt-md-16 {
    margin-top: 16px !important;
  }
  .ml-md-16 {
    margin-left: 16px !important;
  }
  .mr-md-16 {
    margin-right: 16px !important;
  }
  .pb-md-16 {
    padding-bottom: 16px !important;
  }
  .pt-md-16 {
    padding-top: 16px !important;
  }
  .pl-md-16 {
    padding-left: 16px !important;
  }
  .pr-md-16 {
    padding-right: 16px !important;
  }
  .mb-md-18 {
    margin-bottom: 18px !important;
  }
  .mt-md-18 {
    margin-top: 18px !important;
  }
  .ml-md-18 {
    margin-left: 18px !important;
  }
  .mr-md-18 {
    margin-right: 18px !important;
  }
  .pb-md-18 {
    padding-bottom: 18px !important;
  }
  .pt-md-18 {
    padding-top: 18px !important;
  }
  .pl-md-18 {
    padding-left: 18px !important;
  }
  .pr-md-18 {
    padding-right: 18px !important;
  }
  .mb-md-24 {
    margin-bottom: 24px !important;
  }
  .mt-md-24 {
    margin-top: 24px !important;
  }
  .ml-md-24 {
    margin-left: 24px !important;
  }
  .mr-md-24 {
    margin-right: 24px !important;
  }
  .pb-md-24 {
    padding-bottom: 24px !important;
  }
  .pt-md-24 {
    padding-top: 24px !important;
  }
  .pl-md-24 {
    padding-left: 24px !important;
  }
  .pr-md-24 {
    padding-right: 24px !important;
  }
  .mb-md-28 {
    margin-bottom: 28px !important;
  }
  .mt-md-28 {
    margin-top: 28px !important;
  }
  .ml-md-28 {
    margin-left: 28px !important;
  }
  .mr-md-28 {
    margin-right: 28px !important;
  }
  .pb-md-28 {
    padding-bottom: 28px !important;
  }
  .pt-md-28 {
    padding-top: 28px !important;
  }
  .pl-md-28 {
    padding-left: 28px !important;
  }
  .pr-md-28 {
    padding-right: 28px !important;
  }
  .mb-md-32 {
    margin-bottom: 32px !important;
  }
  .mt-md-32 {
    margin-top: 32px !important;
  }
  .ml-md-32 {
    margin-left: 32px !important;
  }
  .mr-md-32 {
    margin-right: 32px !important;
  }
  .pb-md-32 {
    padding-bottom: 32px !important;
  }
  .pt-md-32 {
    padding-top: 32px !important;
  }
  .pl-md-32 {
    padding-left: 32px !important;
  }
  .pr-md-32 {
    padding-right: 32px !important;
  }
  .mb-md-36 {
    margin-bottom: 36px !important;
  }
  .mt-md-36 {
    margin-top: 36px !important;
  }
  .ml-md-36 {
    margin-left: 36px !important;
  }
  .mr-md-36 {
    margin-right: 36px !important;
  }
  .pb-md-36 {
    padding-bottom: 36px !important;
  }
  .pt-md-36 {
    padding-top: 36px !important;
  }
  .pl-md-36 {
    padding-left: 36px !important;
  }
  .pr-md-36 {
    padding-right: 36px !important;
  }
  .mb-md-38 {
    margin-bottom: 38px !important;
  }
  .mt-md-38 {
    margin-top: 38px !important;
  }
  .ml-md-38 {
    margin-left: 38px !important;
  }
  .mr-md-38 {
    margin-right: 38px !important;
  }
  .pb-md-38 {
    padding-bottom: 38px !important;
  }
  .pt-md-38 {
    padding-top: 38px !important;
  }
  .pl-md-38 {
    padding-left: 38px !important;
  }
  .pr-md-38 {
    padding-right: 38px !important;
  }
  .mb-md-42 {
    margin-bottom: 42px !important;
  }
  .mt-md-42 {
    margin-top: 42px !important;
  }
  .ml-md-42 {
    margin-left: 42px !important;
  }
  .mr-md-42 {
    margin-right: 42px !important;
  }
  .pb-md-42 {
    padding-bottom: 42px !important;
  }
  .pt-md-42 {
    padding-top: 42px !important;
  }
  .pl-md-42 {
    padding-left: 42px !important;
  }
  .pr-md-42 {
    padding-right: 42px !important;
  }
  .mb-md-44 {
    margin-bottom: 44px !important;
  }
  .mt-md-44 {
    margin-top: 44px !important;
  }
  .ml-md-44 {
    margin-left: 44px !important;
  }
  .mr-md-44 {
    margin-right: 44px !important;
  }
  .pb-md-44 {
    padding-bottom: 44px !important;
  }
  .pt-md-44 {
    padding-top: 44px !important;
  }
  .pl-md-44 {
    padding-left: 44px !important;
  }
  .pr-md-44 {
    padding-right: 44px !important;
  }
  .mb-md-48 {
    margin-bottom: 48px !important;
  }
  .mt-md-48 {
    margin-top: 48px !important;
  }
  .ml-md-48 {
    margin-left: 48px !important;
  }
  .mr-md-48 {
    margin-right: 48px !important;
  }
  .pb-md-48 {
    padding-bottom: 48px !important;
  }
  .pt-md-48 {
    padding-top: 48px !important;
  }
  .pl-md-48 {
    padding-left: 48px !important;
  }
  .pr-md-48 {
    padding-right: 48px !important;
  }
  .mb-md-52 {
    margin-bottom: 52px !important;
  }
  .mt-md-52 {
    margin-top: 52px !important;
  }
  .ml-md-52 {
    margin-left: 52px !important;
  }
  .mr-md-52 {
    margin-right: 52px !important;
  }
  .pb-md-52 {
    padding-bottom: 52px !important;
  }
  .pt-md-52 {
    padding-top: 52px !important;
  }
  .pl-md-52 {
    padding-left: 52px !important;
  }
  .pr-md-52 {
    padding-right: 52px !important;
  }
  .mb-md-54 {
    margin-bottom: 54px !important;
  }
  .mt-md-54 {
    margin-top: 54px !important;
  }
  .ml-md-54 {
    margin-left: 54px !important;
  }
  .mr-md-54 {
    margin-right: 54px !important;
  }
  .pb-md-54 {
    padding-bottom: 54px !important;
  }
  .pt-md-54 {
    padding-top: 54px !important;
  }
  .pl-md-54 {
    padding-left: 54px !important;
  }
  .pr-md-54 {
    padding-right: 54px !important;
  }
  .mb-md-56 {
    margin-bottom: 56px !important;
  }
  .mt-md-56 {
    margin-top: 56px !important;
  }
  .ml-md-56 {
    margin-left: 56px !important;
  }
  .mr-md-56 {
    margin-right: 56px !important;
  }
  .pb-md-56 {
    padding-bottom: 56px !important;
  }
  .pt-md-56 {
    padding-top: 56px !important;
  }
  .pl-md-56 {
    padding-left: 56px !important;
  }
  .pr-md-56 {
    padding-right: 56px !important;
  }
  .mb-md-62 {
    margin-bottom: 62px !important;
  }
  .mt-md-62 {
    margin-top: 62px !important;
  }
  .ml-md-62 {
    margin-left: 62px !important;
  }
  .mr-md-62 {
    margin-right: 62px !important;
  }
  .pb-md-62 {
    padding-bottom: 62px !important;
  }
  .pt-md-62 {
    padding-top: 62px !important;
  }
  .pl-md-62 {
    padding-left: 62px !important;
  }
  .pr-md-62 {
    padding-right: 62px !important;
  }
  .mb-md-64 {
    margin-bottom: 64px !important;
  }
  .mt-md-64 {
    margin-top: 64px !important;
  }
  .ml-md-64 {
    margin-left: 64px !important;
  }
  .mr-md-64 {
    margin-right: 64px !important;
  }
  .pb-md-64 {
    padding-bottom: 64px !important;
  }
  .pt-md-64 {
    padding-top: 64px !important;
  }
  .pl-md-64 {
    padding-left: 64px !important;
  }
  .pr-md-64 {
    padding-right: 64px !important;
  }
  .mb-md-72 {
    margin-bottom: 72px !important;
  }
  .mt-md-72 {
    margin-top: 72px !important;
  }
  .ml-md-72 {
    margin-left: 72px !important;
  }
  .mr-md-72 {
    margin-right: 72px !important;
  }
  .pb-md-72 {
    padding-bottom: 72px !important;
  }
  .pt-md-72 {
    padding-top: 72px !important;
  }
  .pl-md-72 {
    padding-left: 72px !important;
  }
  .pr-md-72 {
    padding-right: 72px !important;
  }
  .mb-md-78 {
    margin-bottom: 78px !important;
  }
  .mt-md-78 {
    margin-top: 78px !important;
  }
  .ml-md-78 {
    margin-left: 78px !important;
  }
  .mr-md-78 {
    margin-right: 78px !important;
  }
  .pb-md-78 {
    padding-bottom: 78px !important;
  }
  .pt-md-78 {
    padding-top: 78px !important;
  }
  .pl-md-78 {
    padding-left: 78px !important;
  }
  .pr-md-78 {
    padding-right: 78px !important;
  }
  .mb-md-82 {
    margin-bottom: 82px !important;
  }
  .mt-md-82 {
    margin-top: 82px !important;
  }
  .ml-md-82 {
    margin-left: 82px !important;
  }
  .mr-md-82 {
    margin-right: 82px !important;
  }
  .pb-md-82 {
    padding-bottom: 82px !important;
  }
  .pt-md-82 {
    padding-top: 82px !important;
  }
  .pl-md-82 {
    padding-left: 82px !important;
  }
  .pr-md-82 {
    padding-right: 82px !important;
  }
  .mb-md-84 {
    margin-bottom: 84px !important;
  }
  .mt-md-84 {
    margin-top: 84px !important;
  }
  .ml-md-84 {
    margin-left: 84px !important;
  }
  .mr-md-84 {
    margin-right: 84px !important;
  }
  .pb-md-84 {
    padding-bottom: 84px !important;
  }
  .pt-md-84 {
    padding-top: 84px !important;
  }
  .pl-md-84 {
    padding-left: 84px !important;
  }
  .pr-md-84 {
    padding-right: 84px !important;
  }
  .mb-md-92 {
    margin-bottom: 92px !important;
  }
  .mt-md-92 {
    margin-top: 92px !important;
  }
  .ml-md-92 {
    margin-left: 92px !important;
  }
  .mr-md-92 {
    margin-right: 92px !important;
  }
  .pb-md-92 {
    padding-bottom: 92px !important;
  }
  .pt-md-92 {
    padding-top: 92px !important;
  }
  .pl-md-92 {
    padding-left: 92px !important;
  }
  .pr-md-92 {
    padding-right: 92px !important;
  }
  .mb-md-102 {
    margin-bottom: 102px !important;
  }
  .mt-md-102 {
    margin-top: 102px !important;
  }
  .ml-md-102 {
    margin-left: 102px !important;
  }
  .mr-md-102 {
    margin-right: 102px !important;
  }
  .pb-md-102 {
    padding-bottom: 102px !important;
  }
  .pt-md-102 {
    padding-top: 102px !important;
  }
  .pl-md-102 {
    padding-left: 102px !important;
  }
  .pr-md-102 {
    padding-right: 102px !important;
  }
  .mb-md-104 {
    margin-bottom: 104px !important;
  }
  .mt-md-104 {
    margin-top: 104px !important;
  }
  .ml-md-104 {
    margin-left: 104px !important;
  }
  .mr-md-104 {
    margin-right: 104px !important;
  }
  .pb-md-104 {
    padding-bottom: 104px !important;
  }
  .pt-md-104 {
    padding-top: 104px !important;
  }
  .pl-md-104 {
    padding-left: 104px !important;
  }
  .pr-md-104 {
    padding-right: 104px !important;
  }
  .mb-md-108 {
    margin-bottom: 108px !important;
  }
  .mt-md-108 {
    margin-top: 108px !important;
  }
  .ml-md-108 {
    margin-left: 108px !important;
  }
  .mr-md-108 {
    margin-right: 108px !important;
  }
  .pb-md-108 {
    padding-bottom: 108px !important;
  }
  .pt-md-108 {
    padding-top: 108px !important;
  }
  .pl-md-108 {
    padding-left: 108px !important;
  }
  .pr-md-108 {
    padding-right: 108px !important;
  }
  .mb-md-112 {
    margin-bottom: 112px !important;
  }
  .mt-md-112 {
    margin-top: 112px !important;
  }
  .ml-md-112 {
    margin-left: 112px !important;
  }
  .mr-md-112 {
    margin-right: 112px !important;
  }
  .pb-md-112 {
    padding-bottom: 112px !important;
  }
  .pt-md-112 {
    padding-top: 112px !important;
  }
  .pl-md-112 {
    padding-left: 112px !important;
  }
  .pr-md-112 {
    padding-right: 112px !important;
  }
  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-sm-0,
  .gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-x > * {
    padding-left: 0;
  }
  .gap-sm-0,
  .gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-y > * {
    padding-top: 0;
  }
  .gap-sm-4,
  .gap-sm-4-x {
    margin-left: -4px;
  }
  .gap-sm-4 > *,
  .gap-sm-4-x > * {
    padding-left: 4px;
  }
  .gap-sm-4,
  .gap-sm-4-y {
    margin-top: -4px;
  }
  .gap-sm-4 > *,
  .gap-sm-4-y > * {
    padding-top: 4px;
  }
  .gap-sm-6,
  .gap-sm-6-x {
    margin-left: -6px;
  }
  .gap-sm-6 > *,
  .gap-sm-6-x > * {
    padding-left: 6px;
  }
  .gap-sm-6,
  .gap-sm-6-y {
    margin-top: -6px;
  }
  .gap-sm-6 > *,
  .gap-sm-6-y > * {
    padding-top: 6px;
  }
  .gap-sm-8,
  .gap-sm-8-x {
    margin-left: -8px;
  }
  .gap-sm-8 > *,
  .gap-sm-8-x > * {
    padding-left: 8px;
  }
  .gap-sm-8,
  .gap-sm-8-y {
    margin-top: -8px;
  }
  .gap-sm-8 > *,
  .gap-sm-8-y > * {
    padding-top: 8px;
  }
  .gap-sm-10,
  .gap-sm-10-x {
    margin-left: -10px;
  }
  .gap-sm-10 > *,
  .gap-sm-10-x > * {
    padding-left: 10px;
  }
  .gap-sm-10,
  .gap-sm-10-y {
    margin-top: -10px;
  }
  .gap-sm-10 > *,
  .gap-sm-10-y > * {
    padding-top: 10px;
  }
  .gap-sm-12,
  .gap-sm-12-x {
    margin-left: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-x > * {
    padding-left: 12px;
  }
  .gap-sm-12,
  .gap-sm-12-y {
    margin-top: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-y > * {
    padding-top: 12px;
  }
  .gap-sm-16,
  .gap-sm-16-x {
    margin-left: -16px;
  }
  .gap-sm-16 > *,
  .gap-sm-16-x > * {
    padding-left: 16px;
  }
  .gap-sm-16,
  .gap-sm-16-y {
    margin-top: -16px;
  }
  .gap-sm-16 > *,
  .gap-sm-16-y > * {
    padding-top: 16px;
  }
  .gap-sm-18,
  .gap-sm-18-x {
    margin-left: -18px;
  }
  .gap-sm-18 > *,
  .gap-sm-18-x > * {
    padding-left: 18px;
  }
  .gap-sm-18,
  .gap-sm-18-y {
    margin-top: -18px;
  }
  .gap-sm-18 > *,
  .gap-sm-18-y > * {
    padding-top: 18px;
  }
  .gap-sm-24,
  .gap-sm-24-x {
    margin-left: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-x > * {
    padding-left: 24px;
  }
  .gap-sm-24,
  .gap-sm-24-y {
    margin-top: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-y > * {
    padding-top: 24px;
  }
  .gap-sm-28,
  .gap-sm-28-x {
    margin-left: -28px;
  }
  .gap-sm-28 > *,
  .gap-sm-28-x > * {
    padding-left: 28px;
  }
  .gap-sm-28,
  .gap-sm-28-y {
    margin-top: -28px;
  }
  .gap-sm-28 > *,
  .gap-sm-28-y > * {
    padding-top: 28px;
  }
  .gap-sm-32,
  .gap-sm-32-x {
    margin-left: -32px;
  }
  .gap-sm-32 > *,
  .gap-sm-32-x > * {
    padding-left: 32px;
  }
  .gap-sm-32,
  .gap-sm-32-y {
    margin-top: -32px;
  }
  .gap-sm-32 > *,
  .gap-sm-32-y > * {
    padding-top: 32px;
  }
  .gap-sm-36,
  .gap-sm-36-x {
    margin-left: -36px;
  }
  .gap-sm-36 > *,
  .gap-sm-36-x > * {
    padding-left: 36px;
  }
  .gap-sm-36,
  .gap-sm-36-y {
    margin-top: -36px;
  }
  .gap-sm-36 > *,
  .gap-sm-36-y > * {
    padding-top: 36px;
  }
  .gap-sm-38,
  .gap-sm-38-x {
    margin-left: -38px;
  }
  .gap-sm-38 > *,
  .gap-sm-38-x > * {
    padding-left: 38px;
  }
  .gap-sm-38,
  .gap-sm-38-y {
    margin-top: -38px;
  }
  .gap-sm-38 > *,
  .gap-sm-38-y > * {
    padding-top: 38px;
  }
  .gap-sm-42,
  .gap-sm-42-x {
    margin-left: -42px;
  }
  .gap-sm-42 > *,
  .gap-sm-42-x > * {
    padding-left: 42px;
  }
  .gap-sm-42,
  .gap-sm-42-y {
    margin-top: -42px;
  }
  .gap-sm-42 > *,
  .gap-sm-42-y > * {
    padding-top: 42px;
  }
  .gap-sm-44,
  .gap-sm-44-x {
    margin-left: -44px;
  }
  .gap-sm-44 > *,
  .gap-sm-44-x > * {
    padding-left: 44px;
  }
  .gap-sm-44,
  .gap-sm-44-y {
    margin-top: -44px;
  }
  .gap-sm-44 > *,
  .gap-sm-44-y > * {
    padding-top: 44px;
  }
  .gap-sm-48,
  .gap-sm-48-x {
    margin-left: -48px;
  }
  .gap-sm-48 > *,
  .gap-sm-48-x > * {
    padding-left: 48px;
  }
  .gap-sm-48,
  .gap-sm-48-y {
    margin-top: -48px;
  }
  .gap-sm-48 > *,
  .gap-sm-48-y > * {
    padding-top: 48px;
  }
  .gap-sm-52,
  .gap-sm-52-x {
    margin-left: -52px;
  }
  .gap-sm-52 > *,
  .gap-sm-52-x > * {
    padding-left: 52px;
  }
  .gap-sm-52,
  .gap-sm-52-y {
    margin-top: -52px;
  }
  .gap-sm-52 > *,
  .gap-sm-52-y > * {
    padding-top: 52px;
  }
  .gap-sm-54,
  .gap-sm-54-x {
    margin-left: -54px;
  }
  .gap-sm-54 > *,
  .gap-sm-54-x > * {
    padding-left: 54px;
  }
  .gap-sm-54,
  .gap-sm-54-y {
    margin-top: -54px;
  }
  .gap-sm-54 > *,
  .gap-sm-54-y > * {
    padding-top: 54px;
  }
  .gap-sm-56,
  .gap-sm-56-x {
    margin-left: -56px;
  }
  .gap-sm-56 > *,
  .gap-sm-56-x > * {
    padding-left: 56px;
  }
  .gap-sm-56,
  .gap-sm-56-y {
    margin-top: -56px;
  }
  .gap-sm-56 > *,
  .gap-sm-56-y > * {
    padding-top: 56px;
  }
  .gap-sm-62,
  .gap-sm-62-x {
    margin-left: -62px;
  }
  .gap-sm-62 > *,
  .gap-sm-62-x > * {
    padding-left: 62px;
  }
  .gap-sm-62,
  .gap-sm-62-y {
    margin-top: -62px;
  }
  .gap-sm-62 > *,
  .gap-sm-62-y > * {
    padding-top: 62px;
  }
  .gap-sm-64,
  .gap-sm-64-x {
    margin-left: -64px;
  }
  .gap-sm-64 > *,
  .gap-sm-64-x > * {
    padding-left: 64px;
  }
  .gap-sm-64,
  .gap-sm-64-y {
    margin-top: -64px;
  }
  .gap-sm-64 > *,
  .gap-sm-64-y > * {
    padding-top: 64px;
  }
  .gap-sm-72,
  .gap-sm-72-x {
    margin-left: -72px;
  }
  .gap-sm-72 > *,
  .gap-sm-72-x > * {
    padding-left: 72px;
  }
  .gap-sm-72,
  .gap-sm-72-y {
    margin-top: -72px;
  }
  .gap-sm-72 > *,
  .gap-sm-72-y > * {
    padding-top: 72px;
  }
  .gap-sm-78,
  .gap-sm-78-x {
    margin-left: -78px;
  }
  .gap-sm-78 > *,
  .gap-sm-78-x > * {
    padding-left: 78px;
  }
  .gap-sm-78,
  .gap-sm-78-y {
    margin-top: -78px;
  }
  .gap-sm-78 > *,
  .gap-sm-78-y > * {
    padding-top: 78px;
  }
  .gap-sm-82,
  .gap-sm-82-x {
    margin-left: -82px;
  }
  .gap-sm-82 > *,
  .gap-sm-82-x > * {
    padding-left: 82px;
  }
  .gap-sm-82,
  .gap-sm-82-y {
    margin-top: -82px;
  }
  .gap-sm-82 > *,
  .gap-sm-82-y > * {
    padding-top: 82px;
  }
  .gap-sm-84,
  .gap-sm-84-x {
    margin-left: -84px;
  }
  .gap-sm-84 > *,
  .gap-sm-84-x > * {
    padding-left: 84px;
  }
  .gap-sm-84,
  .gap-sm-84-y {
    margin-top: -84px;
  }
  .gap-sm-84 > *,
  .gap-sm-84-y > * {
    padding-top: 84px;
  }
  .gap-sm-86,
  .gap-sm-86-x {
    margin-left: -86px;
  }
  .gap-sm-86 > *,
  .gap-sm-86-x > * {
    padding-left: 86px;
  }
  .gap-sm-86,
  .gap-sm-86-y {
    margin-top: -86px;
  }
  .gap-sm-86 > *,
  .gap-sm-86-y > * {
    padding-top: 86px;
  }
  .gap-sm-92,
  .gap-sm-92-x {
    margin-left: -92px;
  }
  .gap-sm-92 > *,
  .gap-sm-92-x > * {
    padding-left: 92px;
  }
  .gap-sm-92,
  .gap-sm-92-y {
    margin-top: -92px;
  }
  .gap-sm-92 > *,
  .gap-sm-92-y > * {
    padding-top: 92px;
  }
  .gap-sm-102,
  .gap-sm-102-x {
    margin-left: -102px;
  }
  .gap-sm-102 > *,
  .gap-sm-102-x > * {
    padding-left: 102px;
  }
  .gap-sm-102,
  .gap-sm-102-y {
    margin-top: -102px;
  }
  .gap-sm-102 > *,
  .gap-sm-102-y > * {
    padding-top: 102px;
  }
  .gap-sm-104,
  .gap-sm-104-x {
    margin-left: -104px;
  }
  .gap-sm-104 > *,
  .gap-sm-104-x > * {
    padding-left: 104px;
  }
  .gap-sm-104,
  .gap-sm-104-y {
    margin-top: -104px;
  }
  .gap-sm-104 > *,
  .gap-sm-104-y > * {
    padding-top: 104px;
  }
  .gap-sm-108,
  .gap-sm-108-x {
    margin-left: -108px;
  }
  .gap-sm-108 > *,
  .gap-sm-108-x > * {
    padding-left: 108px;
  }
  .gap-sm-108,
  .gap-sm-108-y {
    margin-top: -108px;
  }
  .gap-sm-108 > *,
  .gap-sm-108-y > * {
    padding-top: 108px;
  }
  .gap-sm-112,
  .gap-sm-112-x {
    margin-left: -112px;
  }
  .gap-sm-112 > *,
  .gap-sm-112-x > * {
    padding-left: 112px;
  }
  .gap-sm-112,
  .gap-sm-112-y {
    margin-top: -112px;
  }
  .gap-sm-112 > *,
  .gap-sm-112-y > * {
    padding-top: 112px;
  }
  /* Generate all gap classes */
  .mb-sm-a {
    margin-bottom: auto !important;
  }
  .mt-sm-a {
    margin-top: auto !important;
  }
  .ml-sm-a {
    margin-left: auto !important;
  }
  .mr-sm-a {
    margin-right: auto !important;
  }
  .pb-sm-a {
    padding-bottom: auto !important;
  }
  .pt-sm-a {
    padding-top: auto !important;
  }
  .pl-sm-a {
    padding-left: auto !important;
  }
  .pr-sm-a {
    padding-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .mb-sm-4 {
    margin-bottom: 4px !important;
  }
  .mt-sm-4 {
    margin-top: 4px !important;
  }
  .ml-sm-4 {
    margin-left: 4px !important;
  }
  .mr-sm-4 {
    margin-right: 4px !important;
  }
  .pb-sm-4 {
    padding-bottom: 4px !important;
  }
  .pt-sm-4 {
    padding-top: 4px !important;
  }
  .pl-sm-4 {
    padding-left: 4px !important;
  }
  .pr-sm-4 {
    padding-right: 4px !important;
  }
  .mb-sm-6 {
    margin-bottom: 6px !important;
  }
  .mt-sm-6 {
    margin-top: 6px !important;
  }
  .ml-sm-6 {
    margin-left: 6px !important;
  }
  .mr-sm-6 {
    margin-right: 6px !important;
  }
  .pb-sm-6 {
    padding-bottom: 6px !important;
  }
  .pt-sm-6 {
    padding-top: 6px !important;
  }
  .pl-sm-6 {
    padding-left: 6px !important;
  }
  .pr-sm-6 {
    padding-right: 6px !important;
  }
  .mb-sm-8 {
    margin-bottom: 8px !important;
  }
  .mt-sm-8 {
    margin-top: 8px !important;
  }
  .ml-sm-8 {
    margin-left: 8px !important;
  }
  .mr-sm-8 {
    margin-right: 8px !important;
  }
  .pb-sm-8 {
    padding-bottom: 8px !important;
  }
  .pt-sm-8 {
    padding-top: 8px !important;
  }
  .pl-sm-8 {
    padding-left: 8px !important;
  }
  .pr-sm-8 {
    padding-right: 8px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .mb-sm-12 {
    margin-bottom: 12px !important;
  }
  .mt-sm-12 {
    margin-top: 12px !important;
  }
  .ml-sm-12 {
    margin-left: 12px !important;
  }
  .mr-sm-12 {
    margin-right: 12px !important;
  }
  .pb-sm-12 {
    padding-bottom: 12px !important;
  }
  .pt-sm-12 {
    padding-top: 12px !important;
  }
  .pl-sm-12 {
    padding-left: 12px !important;
  }
  .pr-sm-12 {
    padding-right: 12px !important;
  }
  .mb-sm-16 {
    margin-bottom: 16px !important;
  }
  .mt-sm-16 {
    margin-top: 16px !important;
  }
  .ml-sm-16 {
    margin-left: 16px !important;
  }
  .mr-sm-16 {
    margin-right: 16px !important;
  }
  .pb-sm-16 {
    padding-bottom: 16px !important;
  }
  .pt-sm-16 {
    padding-top: 16px !important;
  }
  .pl-sm-16 {
    padding-left: 16px !important;
  }
  .pr-sm-16 {
    padding-right: 16px !important;
  }
  .mb-sm-18 {
    margin-bottom: 18px !important;
  }
  .mt-sm-18 {
    margin-top: 18px !important;
  }
  .ml-sm-18 {
    margin-left: 18px !important;
  }
  .mr-sm-18 {
    margin-right: 18px !important;
  }
  .pb-sm-18 {
    padding-bottom: 18px !important;
  }
  .pt-sm-18 {
    padding-top: 18px !important;
  }
  .pl-sm-18 {
    padding-left: 18px !important;
  }
  .pr-sm-18 {
    padding-right: 18px !important;
  }
  .mb-sm-24 {
    margin-bottom: 24px !important;
  }
  .mt-sm-24 {
    margin-top: 24px !important;
  }
  .ml-sm-24 {
    margin-left: 24px !important;
  }
  .mr-sm-24 {
    margin-right: 24px !important;
  }
  .pb-sm-24 {
    padding-bottom: 24px !important;
  }
  .pt-sm-24 {
    padding-top: 24px !important;
  }
  .pl-sm-24 {
    padding-left: 24px !important;
  }
  .pr-sm-24 {
    padding-right: 24px !important;
  }
  .mb-sm-28 {
    margin-bottom: 28px !important;
  }
  .mt-sm-28 {
    margin-top: 28px !important;
  }
  .ml-sm-28 {
    margin-left: 28px !important;
  }
  .mr-sm-28 {
    margin-right: 28px !important;
  }
  .pb-sm-28 {
    padding-bottom: 28px !important;
  }
  .pt-sm-28 {
    padding-top: 28px !important;
  }
  .pl-sm-28 {
    padding-left: 28px !important;
  }
  .pr-sm-28 {
    padding-right: 28px !important;
  }
  .mb-sm-32 {
    margin-bottom: 32px !important;
  }
  .mt-sm-32 {
    margin-top: 32px !important;
  }
  .ml-sm-32 {
    margin-left: 32px !important;
  }
  .mr-sm-32 {
    margin-right: 32px !important;
  }
  .pb-sm-32 {
    padding-bottom: 32px !important;
  }
  .pt-sm-32 {
    padding-top: 32px !important;
  }
  .pl-sm-32 {
    padding-left: 32px !important;
  }
  .pr-sm-32 {
    padding-right: 32px !important;
  }
  .mb-sm-36 {
    margin-bottom: 36px !important;
  }
  .mt-sm-36 {
    margin-top: 36px !important;
  }
  .ml-sm-36 {
    margin-left: 36px !important;
  }
  .mr-sm-36 {
    margin-right: 36px !important;
  }
  .pb-sm-36 {
    padding-bottom: 36px !important;
  }
  .pt-sm-36 {
    padding-top: 36px !important;
  }
  .pl-sm-36 {
    padding-left: 36px !important;
  }
  .pr-sm-36 {
    padding-right: 36px !important;
  }
  .mb-sm-38 {
    margin-bottom: 38px !important;
  }
  .mt-sm-38 {
    margin-top: 38px !important;
  }
  .ml-sm-38 {
    margin-left: 38px !important;
  }
  .mr-sm-38 {
    margin-right: 38px !important;
  }
  .pb-sm-38 {
    padding-bottom: 38px !important;
  }
  .pt-sm-38 {
    padding-top: 38px !important;
  }
  .pl-sm-38 {
    padding-left: 38px !important;
  }
  .pr-sm-38 {
    padding-right: 38px !important;
  }
  .mb-sm-42 {
    margin-bottom: 42px !important;
  }
  .mt-sm-42 {
    margin-top: 42px !important;
  }
  .ml-sm-42 {
    margin-left: 42px !important;
  }
  .mr-sm-42 {
    margin-right: 42px !important;
  }
  .pb-sm-42 {
    padding-bottom: 42px !important;
  }
  .pt-sm-42 {
    padding-top: 42px !important;
  }
  .pl-sm-42 {
    padding-left: 42px !important;
  }
  .pr-sm-42 {
    padding-right: 42px !important;
  }
  .mb-sm-44 {
    margin-bottom: 44px !important;
  }
  .mt-sm-44 {
    margin-top: 44px !important;
  }
  .ml-sm-44 {
    margin-left: 44px !important;
  }
  .mr-sm-44 {
    margin-right: 44px !important;
  }
  .pb-sm-44 {
    padding-bottom: 44px !important;
  }
  .pt-sm-44 {
    padding-top: 44px !important;
  }
  .pl-sm-44 {
    padding-left: 44px !important;
  }
  .pr-sm-44 {
    padding-right: 44px !important;
  }
  .mb-sm-48 {
    margin-bottom: 48px !important;
  }
  .mt-sm-48 {
    margin-top: 48px !important;
  }
  .ml-sm-48 {
    margin-left: 48px !important;
  }
  .mr-sm-48 {
    margin-right: 48px !important;
  }
  .pb-sm-48 {
    padding-bottom: 48px !important;
  }
  .pt-sm-48 {
    padding-top: 48px !important;
  }
  .pl-sm-48 {
    padding-left: 48px !important;
  }
  .pr-sm-48 {
    padding-right: 48px !important;
  }
  .mb-sm-52 {
    margin-bottom: 52px !important;
  }
  .mt-sm-52 {
    margin-top: 52px !important;
  }
  .ml-sm-52 {
    margin-left: 52px !important;
  }
  .mr-sm-52 {
    margin-right: 52px !important;
  }
  .pb-sm-52 {
    padding-bottom: 52px !important;
  }
  .pt-sm-52 {
    padding-top: 52px !important;
  }
  .pl-sm-52 {
    padding-left: 52px !important;
  }
  .pr-sm-52 {
    padding-right: 52px !important;
  }
  .mb-sm-54 {
    margin-bottom: 54px !important;
  }
  .mt-sm-54 {
    margin-top: 54px !important;
  }
  .ml-sm-54 {
    margin-left: 54px !important;
  }
  .mr-sm-54 {
    margin-right: 54px !important;
  }
  .pb-sm-54 {
    padding-bottom: 54px !important;
  }
  .pt-sm-54 {
    padding-top: 54px !important;
  }
  .pl-sm-54 {
    padding-left: 54px !important;
  }
  .pr-sm-54 {
    padding-right: 54px !important;
  }
  .mb-sm-56 {
    margin-bottom: 56px !important;
  }
  .mt-sm-56 {
    margin-top: 56px !important;
  }
  .ml-sm-56 {
    margin-left: 56px !important;
  }
  .mr-sm-56 {
    margin-right: 56px !important;
  }
  .pb-sm-56 {
    padding-bottom: 56px !important;
  }
  .pt-sm-56 {
    padding-top: 56px !important;
  }
  .pl-sm-56 {
    padding-left: 56px !important;
  }
  .pr-sm-56 {
    padding-right: 56px !important;
  }
  .mb-sm-62 {
    margin-bottom: 62px !important;
  }
  .mt-sm-62 {
    margin-top: 62px !important;
  }
  .ml-sm-62 {
    margin-left: 62px !important;
  }
  .mr-sm-62 {
    margin-right: 62px !important;
  }
  .pb-sm-62 {
    padding-bottom: 62px !important;
  }
  .pt-sm-62 {
    padding-top: 62px !important;
  }
  .pl-sm-62 {
    padding-left: 62px !important;
  }
  .pr-sm-62 {
    padding-right: 62px !important;
  }
  .mb-sm-64 {
    margin-bottom: 64px !important;
  }
  .mt-sm-64 {
    margin-top: 64px !important;
  }
  .ml-sm-64 {
    margin-left: 64px !important;
  }
  .mr-sm-64 {
    margin-right: 64px !important;
  }
  .pb-sm-64 {
    padding-bottom: 64px !important;
  }
  .pt-sm-64 {
    padding-top: 64px !important;
  }
  .pl-sm-64 {
    padding-left: 64px !important;
  }
  .pr-sm-64 {
    padding-right: 64px !important;
  }
  .mb-sm-72 {
    margin-bottom: 72px !important;
  }
  .mt-sm-72 {
    margin-top: 72px !important;
  }
  .ml-sm-72 {
    margin-left: 72px !important;
  }
  .mr-sm-72 {
    margin-right: 72px !important;
  }
  .pb-sm-72 {
    padding-bottom: 72px !important;
  }
  .pt-sm-72 {
    padding-top: 72px !important;
  }
  .pl-sm-72 {
    padding-left: 72px !important;
  }
  .pr-sm-72 {
    padding-right: 72px !important;
  }
  .mb-sm-78 {
    margin-bottom: 78px !important;
  }
  .mt-sm-78 {
    margin-top: 78px !important;
  }
  .ml-sm-78 {
    margin-left: 78px !important;
  }
  .mr-sm-78 {
    margin-right: 78px !important;
  }
  .pb-sm-78 {
    padding-bottom: 78px !important;
  }
  .pt-sm-78 {
    padding-top: 78px !important;
  }
  .pl-sm-78 {
    padding-left: 78px !important;
  }
  .pr-sm-78 {
    padding-right: 78px !important;
  }
  .mb-sm-82 {
    margin-bottom: 82px !important;
  }
  .mt-sm-82 {
    margin-top: 82px !important;
  }
  .ml-sm-82 {
    margin-left: 82px !important;
  }
  .mr-sm-82 {
    margin-right: 82px !important;
  }
  .pb-sm-82 {
    padding-bottom: 82px !important;
  }
  .pt-sm-82 {
    padding-top: 82px !important;
  }
  .pl-sm-82 {
    padding-left: 82px !important;
  }
  .pr-sm-82 {
    padding-right: 82px !important;
  }
  .mb-sm-84 {
    margin-bottom: 84px !important;
  }
  .mt-sm-84 {
    margin-top: 84px !important;
  }
  .ml-sm-84 {
    margin-left: 84px !important;
  }
  .mr-sm-84 {
    margin-right: 84px !important;
  }
  .pb-sm-84 {
    padding-bottom: 84px !important;
  }
  .pt-sm-84 {
    padding-top: 84px !important;
  }
  .pl-sm-84 {
    padding-left: 84px !important;
  }
  .pr-sm-84 {
    padding-right: 84px !important;
  }
  .mb-sm-92 {
    margin-bottom: 92px !important;
  }
  .mt-sm-92 {
    margin-top: 92px !important;
  }
  .ml-sm-92 {
    margin-left: 92px !important;
  }
  .mr-sm-92 {
    margin-right: 92px !important;
  }
  .pb-sm-92 {
    padding-bottom: 92px !important;
  }
  .pt-sm-92 {
    padding-top: 92px !important;
  }
  .pl-sm-92 {
    padding-left: 92px !important;
  }
  .pr-sm-92 {
    padding-right: 92px !important;
  }
  .mb-sm-102 {
    margin-bottom: 102px !important;
  }
  .mt-sm-102 {
    margin-top: 102px !important;
  }
  .ml-sm-102 {
    margin-left: 102px !important;
  }
  .mr-sm-102 {
    margin-right: 102px !important;
  }
  .pb-sm-102 {
    padding-bottom: 102px !important;
  }
  .pt-sm-102 {
    padding-top: 102px !important;
  }
  .pl-sm-102 {
    padding-left: 102px !important;
  }
  .pr-sm-102 {
    padding-right: 102px !important;
  }
  .mb-sm-104 {
    margin-bottom: 104px !important;
  }
  .mt-sm-104 {
    margin-top: 104px !important;
  }
  .ml-sm-104 {
    margin-left: 104px !important;
  }
  .mr-sm-104 {
    margin-right: 104px !important;
  }
  .pb-sm-104 {
    padding-bottom: 104px !important;
  }
  .pt-sm-104 {
    padding-top: 104px !important;
  }
  .pl-sm-104 {
    padding-left: 104px !important;
  }
  .pr-sm-104 {
    padding-right: 104px !important;
  }
  .mb-sm-108 {
    margin-bottom: 108px !important;
  }
  .mt-sm-108 {
    margin-top: 108px !important;
  }
  .ml-sm-108 {
    margin-left: 108px !important;
  }
  .mr-sm-108 {
    margin-right: 108px !important;
  }
  .pb-sm-108 {
    padding-bottom: 108px !important;
  }
  .pt-sm-108 {
    padding-top: 108px !important;
  }
  .pl-sm-108 {
    padding-left: 108px !important;
  }
  .pr-sm-108 {
    padding-right: 108px !important;
  }
  .mb-sm-112 {
    margin-bottom: 112px !important;
  }
  .mt-sm-112 {
    margin-top: 112px !important;
  }
  .ml-sm-112 {
    margin-left: 112px !important;
  }
  .mr-sm-112 {
    margin-right: 112px !important;
  }
  .pb-sm-112 {
    padding-bottom: 112px !important;
  }
  .pt-sm-112 {
    padding-top: 112px !important;
  }
  .pl-sm-112 {
    padding-left: 112px !important;
  }
  .pr-sm-112 {
    padding-right: 112px !important;
  }
  .reset-sm {
    margin-left: 0;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

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

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

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--medium {
  max-width: var(--container-medium-width);
}
.container--large {
  max-width: var(--container-large-width);
}
.container--fluid {
  max-width: 100%;
}

/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

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

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.2;
}

body:not(.wp-admin) {
  background-color: var(--body-background);
}

.row--reversed {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .row--reversed {
    flex-direction: column-reverse;
  }
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
       * Don't show links that are fragment identifiers,
       * or use the `javascript:` pseudo protocol
       */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
       * Printing Tables:
       * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
       */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
   SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  line-height: var(--main-line-height);
  scroll-behavior: smooth;
}

body:not(.wp-admin) {
  background-color: var(--body-background);
}

ul {
  list-style: none;
}

a {
  color: #282828;
}

.section--hero {
  padding: 140px 0 130px;
  position: relative;
  height: 852px;
}
.section--hero p {
  max-width: 768px;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.container-large {
  max-width: 1794px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.wysiwyg-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 35px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--main-font-color);
}
.wysiwyg-content h2:not(:first-child) {
  margin: 55px 0 25px;
}
.wysiwyg-content h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--main-font-color);
}
.wysiwyg-content h3:not(:first-child) {
  margin: 55px 0 25px;
}
.wysiwyg-content p {
  font-size: 19px;
  line-height: 1.4;
  color: var(--main-font-color);
  margin-bottom: 20px;
}
@media only screen and (max-width: 1366px) {
  .wysiwyg-content h2 {
    font-size: 48px;
    margin: 0 0 34px;
  }
  .wysiwyg-content h2:not(:first-child) {
    margin: 55px 0 25px;
  }
  .wysiwyg-content h3 {
    font-size: 35px;
    margin-bottom: 21px;
  }
  .wysiwyg-content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .wysiwyg-content h2 {
    font-size: 32px;
    margin: 0 0 34px;
  }
  .wysiwyg-content h2:not(:first-child) {
    margin: 55px 0 25px;
  }
  .wysiwyg-content h3 {
    font-size: 24px;
    margin-bottom: 21px;
  }
  .wysiwyg-content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .wysiwyg-content h2 {
    font-size: 52px;
  }
  .wysiwyg-content h3 {
    font-size: 20px;
  }
}

.loading-spinner {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  /* To make this thing go faster, change the turn amount (above) or change the millisecond amount (below)*/
}
@keyframes spin {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.loading-spinner svg {
  animation: spin 1000ms;
  animation-iteration-count: infinite;
}

.w-100 {
  width: 100% !important;
}

.block-note.m-auto .block-note__wrapper {
  margin-left: auto;
  margin-right: auto;
}

.section-items-center .centered-title {
  align-items: flex-start;
}
.section-items-center .gallery-link__row {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.section-items-center .centered-title h2 {
  margin-bottom: 48px !important;
  font-size: 48px;
}

.align-top {
  align-items: flex-start !important;
}

.flex-gap-0 {
  gap: 0;
}

.checked-icon::before {
  content: "";
  position: relative;
  padding-left: 24px;
  background-color: #475581;
  -webkit-mask-image: url(../images/checked-icon.svg);
  -webkit-mask-position-x: left;
  -webkit-mask-repeat: no-repeat;
}

.text-label {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgb(16, 32, 52);
  color: #fff;
  border-radius: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.wysiwyg-content p.has-text-align-center {
  text-align: center !important;
}

.wysiwyg-content .text-big {
  font-size: 26px !important;
}
@media only screen and (max-width: 768px) {
  .wysiwyg-content .text-big {
    font-size: 21px !important;
  }
}
@media only screen and (max-width: 500px) {
  .wysiwyg-content .text-big {
    font-size: 18px !important;
  }
}

.width-830 {
  max-width: 830px;
  margin: auto;
}

.properties-loading-wrapper {
  position: relative;
  padding-bottom: 112px;
}
.properties-loading-wrapper .screen-reader-text {
  display: none;
}
.properties-loading-wrapper .navigation.pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.properties-loading-wrapper .nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.properties-loading-wrapper .page-numbers {
  padding: 2px 12px;
  margin-top: 2px;
  border-radius: 4px;
}
.properties-loading-wrapper .page-numbers.current {
  opacity: 0.3;
}
.properties-loading-wrapper .page-numbers.next, .properties-loading-wrapper .page-numbers.prev {
  padding: 16px 28px;
  background-color: #102034;
  border-radius: 8px;
  font-weight: 600;
  display: block;
  color: #fff;
  margin: 0 16px;
}
.properties-loading-wrapper .page-numbers.dots {
  position: relative;
}

#uc_macronutrient_calculator {
  background-color: #000;
}

@media only screen and (max-width: 1366px) {
  #block-flexy-block_beda88ff4f0b6d06eb2c33270ceb511d.flexy .flexy__row > * {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}
@media only screen and (max-width: 1024px) {
  #block-flexy-block_beda88ff4f0b6d06eb2c33270ceb511d.flexy .flexy__row > * {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 768px) {
  #block-flexy-block_beda88ff4f0b6d06eb2c33270ceb511d.flexy .flexy__row > * {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
  align-items: center;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  font-size: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.pagination .page-numbers.next::before, .pagination .page-numbers.prev::before {
  display: block;
  content: "";
  background-color: var(--accent-color);
  mask-image: url(../images/icons/arrow-slider-next.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.pagination .page-numbers.current {
  opacity: 0.3;
}
.pagination .page-numbers.prev::before {
  mask-image: url(../images/icons/arrow-slider-prev.svg);
}

.text-shadow {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.text-underline {
  position: relative;
}
.text-underline::before {
  content: "";
  position: absolute;
  bottom: 3px;
  z-index: -1;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

.width-768 {
  max-width: 768px;
  margin: 0 auto;
}

.width-1024 {
  max-width: 1024px;
  margin: 0 auto;
}

.width-540 {
  max-width: 540px;
  margin: 0 auto;
}

.flex-bottom {
  display: flex;
  flex-direction: column;
}
.flex-bottom--left {
  align-items: center;
  justify-content: flex-start;
}
.flex-bottom--center {
  align-items: center;
  justify-content: center;
}
.flex-bottom--right {
  align-items: center;
  justify-content: flex-end;
}

/* ==========================================================================
   SCSS Styles [PARTIALS:TYPOGRAPHY]
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:GUTENBERG]
   ========================================================================== */
/* This is global in order to work also in Dashboard */
.wp-block-columns {
  margin-bottom: 0;
}

/* In mobile when columns stack I add a bit of margin-bottom */
@media screen and (max-width: 768px) {
  .wp-block-column > * {
    margin-bottom: var(--container-pad);
  }
}
.wp-block-group.alignfull,
.wp-block-group.alignfull.has-background,
.editor-styles-wrapper .wp-block[data-align=full] > .wp-block-group,
.wp-block-cover.alignfull,
.wp-block-group.alignwide,
.editor-styles-wrapper .wp-block[data-align=wide] > .wp-block-group,
.editor-styles-wrapper .wp-block[data-align=full] > .wp-block-cover {
  padding: 90px var(--container-pad);
}
@media screen and (max-width: 1024px) {
  .wp-block-group.alignfull,
  .wp-block-group.alignfull.has-background,
  .editor-styles-wrapper .wp-block[data-align=full] > .wp-block-group,
  .wp-block-cover.alignfull,
  .wp-block-group.alignwide,
  .editor-styles-wrapper .wp-block[data-align=wide] > .wp-block-group,
  .editor-styles-wrapper .wp-block[data-align=full] > .wp-block-cover {
    padding: 50px var(--container-pad);
  }
}

/* This works only in frontend */
.wp-site-blocks {
  padding: 90px var(--container-pad);
}
@media screen and (max-width: 1024px) {
  .wp-site-blocks {
    padding: 50px var(--container-pad);
  }
}
.wp-site-blocks > .wp-block-group:first-child, .wp-site-blocks > .wp-block-cover:first-child, .wp-site-blocks > .wp-block-cover.alignfull:first-child {
  margin-top: -90px !important;
}
@media screen and (max-width: 1024px) {
  .wp-site-blocks > .wp-block-group:first-child, .wp-site-blocks > .wp-block-cover:first-child, .wp-site-blocks > .wp-block-cover.alignfull:first-child {
    margin-top: -50px !important;
  }
}
.wp-site-blocks > .wp-block-group:last-child, .wp-site-blocks > .wp-block-cover:last-child, .wp-site-blocks > .wp-block-cover.alignfull:last-child {
  margin-bottom: -90px !important;
}
@media screen and (max-width: 1024px) {
  .wp-site-blocks > .wp-block-group:last-child, .wp-site-blocks > .wp-block-cover:last-child, .wp-site-blocks > .wp-block-cover.alignfull:last-child {
    margin-bottom: -50px !important;
  }
}
.wp-site-blocks > *, .wp-site-blocks > blockquote {
  max-width: calc(var(--container-width) - var(--container-pad) * 2);
  max-width: calc(var(--container-width));
  margin-left: auto !important;
  margin-right: auto !important;
}
.wp-site-blocks > section {
  max-width: 100%;
  width: 100%;
}
.wp-site-blocks .alignfull,
.wp-site-blocks .wp-block-cover.alignfull {
  max-width: none;
  margin: 0 calc(-1 * var(--container-pad)) !important;
  width: auto;
}
.wp-site-blocks .alignfull > .wp-block-group__inner-container, .wp-site-blocks .alignfull > .wp-block-cover__inner-container,
.wp-site-blocks .wp-block-cover.alignfull > .wp-block-group__inner-container,
.wp-site-blocks .wp-block-cover.alignfull > .wp-block-cover__inner-container {
  max-width: calc(var(--container-width) - var(--container-pad) * 2);
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}
.wp-site-blocks .alignwide {
  max-width: none;
  margin: 0 calc(-1 * var(--container-pad)) !important;
  width: auto;
}
.wp-site-blocks .wp-block-group__inner-container .wp-block-group__inner-container {
  display: contents;
}

.wp-site-blocks > h1,
.wp-site-blocks > h2,
.wp-site-blocks > h3,
.wp-site-blocks > h4,
.wp-site-blocks > h5,
.wp-site-blocks > h6,
.wp-site-blocks > p,
.wp-site-blocks > ul,
.wp-site-blocks > span,
.wp-site-blocks > .block-faq,
.wp-site-blocks > .gallery,
.wp-site-blocks > .wp-block-table,
.wp-site-blocks > .lob,
.wp-site-blocks > .block-note {
  padding: 0 var(--container-pad);
}

/* This works only in Dashboard */
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block {
  max-width: calc(var(--container-width) - var(--container-pad) * 2) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block.alignfull {
  max-width: none !important;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block.alignfull > * {
  max-width: calc(var(--container-width) - var(--container-pad) * 2) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block.alignfull.wp-block-cover > .wp-block-cover__background,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block.alignfull.wp-block-cover > .wp-block-cover__image-background {
  max-width: none !important;
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block.alignwide {
  max-width: none !important;
  width: auto !important;
}

.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > [data-align=wide] {
  max-width: none !important;
  margin: 0 !important;
  width: auto;
}

.wp-block-group .wp-block-poka-box-text {
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.wp-block-group:where(.has-background) {
  padding: initial;
}

.wp-block-separator {
  opacity: 1;
}
.wp-block-separator.has-background.is-thick-line:not(.is-style-dots) {
  height: 4px;
}

.editor-styles-wrapper ul.wp-block-list {
  list-style: none;
  padding-left: 1.875rem;
  font-size: 1rem;
  line-height: 1.3125rem;
  font-weight: 400;
}
.editor-styles-wrapper ul.wp-block-list li {
  position: relative;
  margin-bottom: 0.9375rem;
  color: inherit;
}
.editor-styles-wrapper ul.wp-block-list li ol,
.editor-styles-wrapper ul.wp-block-list li ul {
  margin-top: 1.25rem;
}
.editor-styles-wrapper ul.wp-block-list li strong {
  font-weight: 700;
}
.editor-styles-wrapper ul.wp-block-list > li::before {
  content: "l";
  position: absolute;
  color: var(--main-color);
  left: -1.875rem;
  top: 3px;
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.editor-styles-wrapper ul.wp-block-list.list-star-o > li::before {
  content: "i";
}
.editor-styles-wrapper ul.wp-block-list.list-star > li::before {
  content: "j";
}
.editor-styles-wrapper ul.wp-block-list.list-arrow-right > li::before {
  content: "k";
}
.editor-styles-wrapper ul.wp-block-list.list-play > li::before {
  content: "l";
}
.editor-styles-wrapper ul.wp-block-list.list-circle-check > li::before {
  content: "n";
}
.editor-styles-wrapper ul.wp-block-list.list-star-line > li::before {
  content: "q";
}
.editor-styles-wrapper ul.wp-block-list.list-list > li::before {
  content: "s";
}
.editor-styles-wrapper ul.wp-block-list.list-angle-right > li::before {
  content: "v";
}
.editor-styles-wrapper ul.wp-block-list.list-columns {
  display: flex;
  flex-wrap: wrap;
}
.editor-styles-wrapper ul.wp-block-list.list-columns > li {
  flex-basis: 33%;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul.wp-block-list.list-columns > li {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 500px) {
  .editor-styles-wrapper ul.wp-block-list.list-columns > li {
    flex-basis: 100%;
  }
}
.editor-styles-wrapper ul.wp-block-list.list-check li:before {
  content: "n";
}
.editor-styles-wrapper ol {
  list-style-position: inside;
  padding-left: 1.875rem;
}
.editor-styles-wrapper ol li {
  position: relative;
  margin-bottom: 0.9375rem;
  line-height: 1.4;
  color: inherit;
}
.editor-styles-wrapper ol li ol,
.editor-styles-wrapper ol li ul {
  margin-top: 1.25rem;
}
.editor-styles-wrapper ol li strong {
  font-weight: 700;
}
.editor-styles-wrapper ol > li {
  margin-left: -30px;
}
.editor-styles-wrapper ol > li > ol,
.editor-styles-wrapper ol > li ul {
  margin-left: 30px;
}

.wp-block-group.row {
  gap: 0;
}
.wp-block-group.is-nowrap {
  width: 100%;
  gap: 0;
}
.wp-block-group.is-layout-flex {
  flex-wrap: nowrap;
}

/* ==========================================================================
   SCSS Styles [PARTIALS:SECTIONS]
   ========================================================================== */
.section {
  padding: 150px 0;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 100px 0;
  }
}
.section.section--overlay {
  position: relative;
}
.section.section--overlay > .overlay {
  z-index: 15;
  opacity: 0.04;
  pointer-events: none;
  background-image: url(../images/overlay-gif.gif);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
.section.section--overlay > .container {
  position: relative;
  z-index: 20;
}
/* ==========================================================================
   SCSS Styles [PARTIALS:HOMEPAGE]
   ========================================================================== */
.section--hero-slider {
  padding: 0;
  position: relative;
}
.section--hero-slider .slider .slider-item {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section--hero-slider .slider .slider-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.section--hero-slider .slider .slider-item > .container {
  position: relative;
  z-index: 20;
}
.section--hero-slider .slider .slider-item__content-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  padding-bottom: 130px;
  padding-top: 420px;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .section--hero-slider .slider .slider-item__content-wrapper {
    padding-top: 312px;
    padding-bottom: 100px;
  }
}
.section--hero-slider .slider .slider-item__image-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.section--hero-slider .slider .slider-item__image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section--hero-slider .slider .slider-item__overlay {
  position: absolute;
  top: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.38);
  z-index: 10;
}
.section--hero-slider .slider .slider-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section--hero-slider .slider .slider-item__content .title {
  color: #fff;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-align: left;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out 0.3s;
}
.section--hero-slider .slider .slider-item__content .description {
  max-width: 640px;
  text-align: left;
  margin: 0 auto 32px 0;
  color: #fff;
  line-height: 1.4;
  font-size: 18px;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out 0.3s;
}
.section--hero-slider .slider .slider-item__content .link {
  display: flex;
  position: relative;
  padding: 24px 100px 24px 28px;
  background-color: #000;
  color: #fff;
  transition: all ease-in-out 0.2s;
}
.section--hero-slider .slider .slider-item__content .link .link-icon {
  width: 72px;
  height: 100%;
  background-color: #fff;
  margin-left: 12px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--hero-slider .slider .slider-item__content .link .link-icon::before {
  content: "";
  background-color: var(--accent-color);
  width: 24px;
  height: 24px;
  mask-image: url(../images/icons/icon-right.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .section--hero-slider .slider .slider-item__content .link .link-icon {
    display: none;
  }
}
.section--hero-slider .slider .slider-item__content .link:hover {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .section--hero-slider .slider .slider-item__content .link {
    padding: 24px 28px 24px 28px;
  }
}
.section--hero-slider .container--hero-arrows {
  position: relative;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows {
  display: flex;
  justify-content: flex-end;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-arrow {
  position: absolute;
  bottom: 164px;
  z-index: 20;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: all ease-in-out 0.1s;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-prev {
  right: 120px;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-prev::before {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  -webkit-mask-image: url(../images/icons/arrow-slider-prev.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-prev:hover::before {
  transform: translate(-75%, -50%);
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-next::before {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  -webkit-mask-image: url(../images/icons/arrow-slider-next.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.section--hero-slider .container--hero-arrows .slider-item__arrows .slick-next:hover::before {
  transform: translate(-25%, -50%);
}
.section--hero-slider .slick-list {
  overflow: hidden;
}

.container--slider-item {
  position: relative;
  height: 100%;
  z-index: 15;
}

@media only screen and (max-width: 1366px) {
  .section--hero-slider .slider .slider-item__content .link {
    font-size: 14px;
  }
  .section--hero-slider .slider .slider-item__content .title {
    font-size: 42px;
  }
}
.section--blog-archive .blog__row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -24px;
  margin-left: -24px;
}
.section--blog-archive .blog__row > * {
  padding-top: 24px;
  padding-left: 24px;
}
.section--blog-archive .blog-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.section--category-hero {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.section--category-hero::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
  opacity: 0.38;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
}
.section--category-hero .category-hero {
  position: relative;
  padding: 180px 0 0;
  overflow: hidden;
  z-index: 10;
}
.section--category-hero .category-hero__image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}
.section--category-hero .category-hero .category-title {
  color: #fff;
  font-size: 82px;
  font-weight: 400;
  line-height: 1.2;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 32px;
  font-size: 16px;
  color: var(--button-primary-text-color);
  background-color: var(--button-primary-color);
  border: 1px solid var(--button-primary-color);
  line-height: 1;
  border-radius: var(--button-border-radius) px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  font-weight: 400;
}
.btn--primary {
  background-color: var(--button-primary-color);
  border: 1px solid var(--button-primary-color);
  color: var(--button-primary-text-color);
}
.btn--secondary {
  background-color: var(--button-secondary-color);
  border: 1px solid var(--button-secondary-color);
  color: var(--button-secondary-text-color);
}
.btn--secondary:hover {
  opacity: 1;
  background-color: var(--button-secondary-color);
  border-color: var(--button-secondary-color);
}
.btn--outline-secondary {
  background-color: transparent;
  border: 1px solid var(--button-secondary-text-color);
  color: var(--button-secondary-text-color);
}
.btn--outline-secondary:hover {
  opacity: 1;
  background-color: transparent;
  border-color: var(--button-secondary-text-color);
}

.subtitle {
  display: block;
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 20px;
}
ol li {
  margin-bottom: 6px;
  padding-left: 8px;
  font-size: var(--main-font-size) px;
}

/* ==========================================================================
   SCSS Styles [PARTIALS:SIDEBAR]
   ========================================================================== */
/* ==========================================================================
   SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
.footer {
  background-color: var(--footer-background-color);
}
@media only screen and (max-width: 500px) {
  .footer .footer-wrapper > .container > .row {
    margin-top: -32px;
    margin-left: -32px;
  }
  .footer .footer-wrapper > .container > .row > * {
    padding-left: 32px;
    padding-top: 32px;
  }
}
.footer .footer-copyrights {
  padding: 38px 0;
  background-color: var(--footer-background-color-copyrights);
}
.footer .footer-copyrights > .container > .row {
  justify-content: space-between;
}
.footer .footer-copyrights .copyrights-text p,
.footer .footer-copyrights .developer-text p {
  color: var(--footer-text-color-copyrights);
}
.footer .footer-copyrights .copyrights-text p a,
.footer .footer-copyrights .developer-text p a {
  color: var(--footer-text-color-copyrights);
  display: inline-block;
  transition: all ease-in-out 0.2s;
}
.footer .footer-copyrights .copyrights-text p a:hover,
.footer .footer-copyrights .developer-text p a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1366px) {
  .footer .footer-copyrights .copyrights-text p,
  .footer .footer-copyrights .developer-text p {
    font-size: 16px;
  }
}
.footer .footer-wrapper {
  padding: 100px 0;
}
.footer .footer-wrapper > .container > .row {
  justify-content: space-between;
}
.footer .footer-wrapper--simple {
  background-color: #f4f4f4;
  background-color: #274246;
  padding: 48px 0;
}
.footer .footer-wrapper--simple .footer-simple-menu-list {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.footer .footer-wrapper--simple .footer-simple-menu-list li a {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  transition: all ease-in-out 0.1s;
}
.footer .footer-wrapper--simple .footer-simple-menu-list li a:hover {
  opacity: 0.6;
}
.footer .footer-separator {
  background-color: transparent;
}
.footer .footer-separator__line {
  background-color: var(--footer-copyrights-text);
  width: 100%;
  display: block;
  height: 1px;
  font-size: 0;
}
.footer .footer-social-flex {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 26px;
}
.footer .footer-social-flex .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.footer .footer-social-flex .social-link-icon {
  width: 32px;
  height: 32px;
  background-color: var(--footer-links-color);
  color: transparent;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
}
.footer .footer-social-flex .social-link-icon:hover {
  opacity: 0.7;
}
.footer .footer-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer-contact-info {
  margin-bottom: 24px;
}
.footer .footer-contact-info .information-link {
  display: flex;
  position: relative;
  align-items: center;
  gap: 14px;
  padding: 16px 32px 16px 16px;
  margin-bottom: 8px;
  background-color: #1c1c1c;
  font-size: 14px;
  transition: all ease-in-out 0.2s;
  color: var(--footer-accent-color);
}
.footer .footer-contact-info .information-link--tel .information-link-icon {
  mask-image: url(../images/icons/telephone-icon.svg);
}
.footer .footer-contact-info .information-link--email .information-link-icon {
  mask-image: url(../images/icons/info-email.svg);
}
.footer .footer-contact-info .information-link--loc .information-link-icon {
  mask-image: url(../images/icons/info-loc.svg);
}
.footer .footer-contact-info .information-link:last-child {
  margin-bottom: 0;
}
.footer .footer-contact-info .information-link-icon {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-color: var(--footer-text-color-copyrights);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  position: relative;
}
.footer .footer-logo-link {
  margin-bottom: 12px;
  display: block;
  max-width: 180px;
}
.footer .footer-menu-titles {
  color: var(--footer-accent-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer .footer-menu-list li a {
  color: var(--footer-links-color);
}
.footer .footer-menu-list li a:hover {
  opacity: 0.7;
  transition: all ease-in-out 0.2s;
}
.footer .footer-description {
  max-width: 362px;
  color: var(--footer-links-color);
  margin-bottom: 42px;
}
.footer .footer-menu-col {
  flex: 1;
  padding: 0 84px;
}
.footer .footer-menu-col > .row {
  justify-content: flex-end;
  margin-top: -84px;
  margin-left: -84px;
}
.footer .footer-menu-col > .row > .footer-menu-wrapper {
  padding-top: 84px;
  padding-left: 84px;
}

.footer-location-col .locations-row {
  margin-top: 6px;
}
.footer-location-col .locations-row .locations-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #767676;
}
.footer-location-col .locations-row .locations-item__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--footer-accent-color);
  font-weight: 500;
}
.footer-location-col .locations-row .locations-item__title::before {
  content: "";
  display: block;
  margin-right: 0;
  width: 20px;
  height: 20px;
  position: relative;
  left: -6px;
  background-color: var(--footer-accent-color);
  mask-image: url(../images/icons/location-icon.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
.footer-location-col .locations-row .locations-item__row {
  display: flex;
  margin-top: -48px;
  margin-left: -48px;
}
.footer-location-col .locations-row .locations-item__item {
  padding-top: 48px;
  padding-left: 48px;
}
.footer-location-col .locations-row .locations-item__item p {
  line-height: 1.2;
  color: var(--footer-links-color);
}
@media only screen and (max-width: 1366px) {
  .footer-location-col .locations-row .locations-item__item p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1366px) {
  .footer-col-contact {
    flex: 0 0 60%;
    max-width: 60%;
    order: 1;
  }
  .footer-location-col {
    flex: 0 0 100%;
    max-width: 100%;
    order: 3;
    margin-top: 56px;
  }
  .footer-menu-col {
    flex: 0 0 40%;
    max-width: 40%;
    order: 2;
  }
  .footer-description {
    line-height: 1.3;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1366px) {
  .footer-contact-col {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    padding-top: 38px !important;
    border-top: 1px solid #3a3a3a;
  }
  .footer-col-contact {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .footer-location-col {
    flex: 0 0 100%;
    max-width: 100%;
    order: 3;
    margin-top: 56px;
  }
  .footer-menu-col {
    margin-top: 56px;
    flex: 0 0 100%;
    max-width: 100%;
    order: 3;
  }
  .footer .footer-info-wrapper {
    align-items: center;
  }
  .footer .footer-social-flex {
    justify-content: space-between;
    max-width: 200px;
    margin-top: 26px;
    margin-bottom: 42px;
  }
}
/* ==========================================================================
   SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.header {
  padding: 32px 0;
  z-index: 1000;
  position: absolute;
  width: 100%;
}
.header > .container > .header-row > .row {
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1366px) {
  .header > .container > .header-row > .row {
    flex-direction: row-reverse;
  }
}
.header .header-nav-menu {
  display: flex;
  align-items: center;
}
.header .header-nav-menu .menu-class .menu-list--simple {
  display: flex;
  align-items: center;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item {
  margin-right: 22px;
  position: relative;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item > a {
  padding: 0;
  display: block;
  transition: all ease-in-out 0.2s;
  font-size: 16px;
  color: #fff;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item > a:hover {
  opacity: 0.5;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item:last-child {
  margin-right: 0;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 4px);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, -6px);
  transition: all ease-in-out 0.2s;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  padding: 20px 24px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu::before {
  content: "";
  height: 9px;
  position: absolute;
  width: 100%;
  display: block;
  z-index: 5;
  top: -3px;
  left: 0;
  user-select: none;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu .menu-item a {
  white-space: nowrap;
  margin-bottom: 4px;
  display: inline-block;
  transition: all ease-in-out 0.2s;
  line-height: 1.3;
  font-size: 16px;
  min-width: 20px;
  color: #fff;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu .menu-item a:hover {
  opacity: 0.5;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu .menu-item:last-child a {
  margin-bottom: 0;
}
.header .header-nav-menu .menu-class .menu-list--simple > .menu-item:hover .sub-menu {
  pointer-events: initial;
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
@media only screen and (max-width: 1366px) {
  .header .header-nav-menu .menu-class .menu-list--simple > .menu-item:hover .sub-menu {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -6px);
  }
}
.header .btn {
  padding: 18px 26px;
}
.header.header-is-absolute {
  background-color: transparent;
  position: absolute;
  width: 100%;
}
.header.header-is-absolute .header-nav-menu .menu-class .menu-list--simple > .menu-item > a {
  color: #fff;
}
.header.header-is-absolute .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu {
  top: 52px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.header.header-is-absolute .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu .menu-item a {
  color: #fff;
}

.menu-toggle {
  display: none;
}

@media only screen and (max-width: 1366px) {
  .menu-toggle {
    display: block;
  }
  .menu-toggle__wrapper {
    width: 42px;
    height: 26px;
    display: block;
    position: relative;
  }
  .menu-toggle__wrapper .line {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    background-color: #fff;
    font-size: 0;
    border-radius: 2px;
    transition: all ease-in-out 0.2s;
  }
  .menu-toggle__wrapper .line--top {
    top: 0;
  }
  .menu-toggle__wrapper .line--mid {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-toggle__wrapper .line--bottom {
    top: 100%;
    transform: translateY(-50%);
  }
  .menu-toggle.active .menu-toggle__wrapper {
    position: fixed;
  }
  .menu-toggle.active .menu-toggle__wrapper .line--top {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(43deg);
  }
  .menu-toggle.active .menu-toggle__wrapper .line--mid {
    opacity: 0;
  }
  .menu-toggle.active .menu-toggle__wrapper .line--bottom {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-43deg);
  }
}
.header-social-flex {
  display: flex;
  gap: 6px;
}
.header-social-flex .social-link {
  display: flex;
  width: 32px;
  height: 32px;
  background-color: #f4f4f4;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.header-social-flex .social-link-icon {
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.header__left {
  flex: 0 0 40%;
  max-width: 40%;
}
@media only screen and (max-width: 1366px) {
  .header__left {
    display: flex;
    justify-content: flex-end;
  }
}
.header__center {
  max-width: 20%;
  flex: 0 0 20%;
}
@media only screen and (max-width: 1366px) {
  .header__center {
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 768px) {
  .header__center {
    max-width: 150px;
    flex: 0 0 150px;
  }
}
.header__center .header-logo {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 180px;
}
.header__center .header-logo img {
  width: 100%;
}
@media only screen and (max-width: 1366px) {
  .header__center .header-logo {
    margin: 0 auto 0 0;
  }
}
.header__right {
  flex: 0 0 40%;
  max-width: 40%;
}

@media only screen and (max-width: 1366px) {
  .header__right {
    display: none;
  }
  .header .menu-toggle {
    z-index: 1100;
    width: 42px;
    height: 26px;
    display: block;
    position: relative;
  }
  .header .header-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 50%;
    width: 100%;
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: all ease-in-out 0.3s;
  }
  .header .header-nav-menu.active {
    transform: translateX(0);
  }
  .header .header-nav-menu .menu-class {
    height: 100%;
    padding: 200px 72px 24px 56px;
    width: 100%;
  }
  .header .header-nav-menu .menu-class .menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item:last-child {
    margin-bottom: 0;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item a {
    font-size: 20px !important;
    white-space: normal !important;
    margin-bottom: 6px;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item.menu-item-has-children {
    position: relative;
    padding-right: 42px;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item.menu-item-has-children .submenu-toggle {
    position: absolute;
    content: "";
    width: 42px;
    height: 42px;
    display: block;
    right: 0;
    top: 12px;
    transition: all ease-in-out 0.2s;
    transform: translateY(-50%) rotate(90deg);
    background-color: #fff;
    mask-image: url(../images/icons/slick-next.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 22px;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item.menu-item-has-children li > a {
    font-size: 20px !important;
  }
  .header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu {
    position: relative !important;
    top: auto !important;
    max-height: 0;
    height: auto;
    transition: all ease-in-out 0.3s !important;
    padding: 0 24px !important;
    background-color: transparent;
    backdrop-filter: none;
  }
  .header .header-nav-menu .menu-class .menu-list--simple > .menu-item .sub-menu::before {
    content: "";
    height: calc(100% - 8px);
    position: absolute;
    width: 1px;
    display: block;
    z-index: 5;
    top: 4px;
    left: 0;
    user-select: none;
    background-color: #fff;
  }
  .header .header-nav-menu .menu-list--simple > .menu-item.active .sub-menu {
    max-height: 500px;
    backdrop-filter: none;
    padding: 14px 24px 18px !important;
    pointer-events: initial !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .header .header-nav-menu .menu-list--simple > .menu-item.active .submenu-toggle {
    transform: translateY(-50%) rotate(-90deg) !important;
  }
}
.buttons-wrapper {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

@media only screen and (max-width: 1024px) {
  .header .header-nav-menu {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .header .header-nav-menu .menu-class {
    padding: 154px 72px 24px 56px;
  }
  .header .header-nav-menu .menu-class .menu-list .menu-item {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .header .header-nav-menu .menu-class {
    padding: 154px 32px 24px 32px;
  }
  .header .header-nav-menu {
    max-width: 90%;
  }
}
.section--hero-post {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 100px;
}
@media only screen and (max-width: 1366px) {
  .section--hero-post {
    padding: 80px 0 100px;
  }
}
.section--hero-post::before {
  content: "";
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.4509803922);
  opacity: 1;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
}
.section--hero-post .hero-post {
  position: relative;
  padding: 272px 0 0;
  z-index: 110;
}
.section--hero-post .hero-post__title {
  color: #fff;
  font-size: 82px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
  text-align: left;
}
.section--hero-post .hero-post__description {
  max-width: 768px;
  text-align: center;
  margin: 0 auto;
  color: var(--main-font-color);
  line-height: 1.4;
  font-size: 18px;
}

.section.section--post-content .content-post > h2 {
  font-weight: 600;
  font-size: 36px !important;
  margin: 54px 0 24px;
  line-height: 1;
}
.section.section--post-content .content-post > h2:first-child {
  margin-top: 0 !important;
}
@media only screen and (max-width: 768px) {
  .section.section--post-content .content-post > h2 {
    font-size: 32px !important;
  }
}
.section.section--post-content .content-post > p {
  color: #000 !important;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.5;
}
.section.section--post-content .content-post > p:last-child {
  margin-bottom: 0 !important;
}
.section.section--post-content .content-post > ul > li {
  padding-left: 24px;
  position: relative;
  display: block;
  margin-bottom: 6px;
}
.section.section--post-content .content-post > ul > li::before {
  position: absolute;
  content: "";
  background-color: var(--accent-color);
  mask-image: url(../images/icons/slick-next.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  top: 4px;
}

.post-template-default .section.section--hero-post {
  padding: 280px 0 0;
}
.post-template-default .section.section--hero-post > .container > .row {
  margin-top: -48px;
  margin-left: -48px;
}
.post-template-default .section.section--hero-post > .container > .row > * {
  padding-top: 48px;
  padding-left: 48px;
}
.post-template-default .section.section--hero-post .hero-post {
  padding: 80px 0 112px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-template-default .section.section--hero-post .hero-post .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 12px;
}
.post-template-default .section.section--hero-post .hero-post .post-info {
  display: flex;
  gap: 12px;
}
.post-template-default .section.section--hero-post .hero-post .post-info__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 16px 24px;
  background-color: rgba(9, 9, 9, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 2px solid #383838;
}
.post-template-default .section.section--hero-post .hero-post .post-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-template-default .section.section--hero-post .hero-post .post-info__icon img {
  max-width: 20px;
  height: auto;
}
.post-template-default .section.section--hero-post .hero-post .post-info__text {
  line-height: 1;
}
.post-template-default .section.section--hero-post .hero-post__image {
  position: relative;
  z-index: 110;
  overflow: hidden;
}
.post-template-default .section.section--hero-post .hero-post__title {
  text-align: left;
  font-size: 56px;
}
.post-template-default .section.section--hero-post .hero-post__description {
  text-align: left;
}

.single-post .section.section--hero-post > .container {
  max-width: 1024px;
}
.single-post .section.section--hero-post .hero-post {
  padding: 0;
}
.single-post .section.section--hero-post .hero-post__image {
  margin-bottom: -158px;
  max-height: 500px;
}
.single-post .section.section--hero-post .hero-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .section.section--hero-post::before {
  backdrop-filter: blur(18px);
}
.single-post .section--post-content {
  padding: 190px 0 100px;
}
.single-post .section--post-content > .container {
  max-width: 1024px;
}
.single-post .section--post-content .post-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-post .section--post-content .post-info__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: 6px;
  background-color: var(--light-wrapper-background);
  backdrop-filter: blur(10px);
}
.single-post .section--post-content .post-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post .section--post-content .post-info__icon .icon-wrapper {
  content: "";
  width: 18px;
  position: relative;
  height: 18px;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--accent-color);
}
.single-post .section--post-content .post-info__icon img {
  max-width: 18px;
  height: auto;
}
.single-post .section--post-content .post-info__text {
  line-height: 1;
}
.single-post .section--post-content .post-info__image {
  position: relative;
  z-index: 110;
  overflow: hidden;
}
.single-post .section--post-content .post-info__title {
  line-height: 1.2;
  font-size: 42px;
  font-weight: 600;
  text-align: left;
}
.single-post .section--post-content .post-info__description {
  text-align: left;
}
.single-post .section--post-content .post-info__bottom {
  display: flex;
  margin-bottom: 20px;
  margin-top: 32px;
  gap: 8px;
}
.single-post .section--post-content .post-info__category {
  padding: 8px 18px;
  position: relative;
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
}
.breadcrumbs > a {
  color: var(--accent-color);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumbs > a::after {
  position: relative;
  content: "";
  background-color: var(--accent-color);
  mask-image: url(../images/icons/slick-next.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 18px;
  height: 18px;
}
.breadcrumbs > span {
  opacity: 0.5;
  color: var(--accent-color);
}

.section--breadcrumbs {
  background-color: #000;
  padding: 10px 0;
}
.section--breadcrumbs .breadcrumbs li {
  color: #666666;
}
.section--breadcrumbs .breadcrumbs li a {
  color: #fff;
}
.section--breadcrumbs .breadcrumbs li a::after {
  background-color: #fff;
}

.breadcrumbs ul {
  display: flex;
  gap: 8px;
}
.breadcrumbs li {
  font-size: 16px;
  color: #666666;
}
.breadcrumbs li a {
  color: #111;
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: capitalize;
  font-size: 16px;
}
.breadcrumbs li a::after {
  position: relative;
  content: "";
  background-color: #111;
  mask-image: url(../images/icons/slick-next.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 18px;
  height: 18px;
}
.breadcrumbs li:hover {
  opacity: 0.8;
}
.breadcrumbs li.current a {
  opacity: 0.6;
}

.page-template-page-beforeafter .section--hero-post .hero-post,
.page-template-default.page .section--hero-post .hero-post,
.page-template-page-contact .section--hero-post .hero-post,
.page-template-page-blog .section--hero-post .hero-post {
  display: flex;
  flex-direction: column;
  z-index: 110;
  align-items: flex-start;
}
.page-template-page-beforeafter .section--hero-post .hero-post__title,
.page-template-default.page .section--hero-post .hero-post__title,
.page-template-page-contact .section--hero-post .hero-post__title,
.page-template-page-blog .section--hero-post .hero-post__title {
  font-size: 64px;
  margin-bottom: 12px;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1366px) {
  .page-template-page-beforeafter .section--hero-post .hero-post__title,
  .page-template-default.page .section--hero-post .hero-post__title,
  .page-template-page-contact .section--hero-post .hero-post__title,
  .page-template-page-blog .section--hero-post .hero-post__title {
    font-size: 42px;
  }
}
.page-template-page-beforeafter .section--hero-post .hero-post__description,
.page-template-default.page .section--hero-post .hero-post__description,
.page-template-page-contact .section--hero-post .hero-post__description,
.page-template-page-blog .section--hero-post .hero-post__description {
  max-width: 570px;
  text-align: left;
  margin: 0 auto 32px 0;
  color: #fff;
  line-height: 1.4;
  font-size: 18px;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1366px) {
  .page-template-page-beforeafter .section--hero-post .hero-post__description,
  .page-template-default.page .section--hero-post .hero-post__description,
  .page-template-page-contact .section--hero-post .hero-post__description,
  .page-template-page-blog .section--hero-post .hero-post__description {
    font-size: 18px;
  }
}
.page-template-page-beforeafter .section--hero-post .hero-post__icon,
.page-template-default.page .section--hero-post .hero-post__icon,
.page-template-page-contact .section--hero-post .hero-post__icon,
.page-template-page-blog .section--hero-post .hero-post__icon {
  margin: 0 auto 24px;
  width: 84px;
  height: 84px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 0 70px 0px rgba(72, 234, 159, 0.5), 0 0 18px 2px rgba(146, 239, 197, 0.2);
}
.page-template-page-beforeafter .section--hero-post .hero-post__link,
.page-template-default.page .section--hero-post .hero-post__link,
.page-template-page-contact .section--hero-post .hero-post__link,
.page-template-page-blog .section--hero-post .hero-post__link {
  display: flex;
  position: relative;
  padding: 24px 100px 24px 28px;
  background-color: #000;
  color: #fff;
  transition: all ease-in-out 0.2s;
}
.page-template-page-beforeafter .section--hero-post .hero-post__link:hover,
.page-template-default.page .section--hero-post .hero-post__link:hover,
.page-template-page-contact .section--hero-post .hero-post__link:hover,
.page-template-page-blog .section--hero-post .hero-post__link:hover {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 1366px) {
  .page-template-page-beforeafter .section--hero-post .hero-post__link,
  .page-template-default.page .section--hero-post .hero-post__link,
  .page-template-page-contact .section--hero-post .hero-post__link,
  .page-template-page-blog .section--hero-post .hero-post__link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-page-beforeafter .section--hero-post .hero-post__link,
  .page-template-default.page .section--hero-post .hero-post__link,
  .page-template-page-contact .section--hero-post .hero-post__link,
  .page-template-page-blog .section--hero-post .hero-post__link {
    padding: 24px 28px 24px 28px;
  }
}
.page-template-page-beforeafter .section--hero-post .hero-post__link-icon,
.page-template-default.page .section--hero-post .hero-post__link-icon,
.page-template-page-contact .section--hero-post .hero-post__link-icon,
.page-template-page-blog .section--hero-post .hero-post__link-icon {
  width: 72px;
  height: 100%;
  background-color: #fff;
  margin-left: 12px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-beforeafter .section--hero-post .hero-post__link-icon::before,
.page-template-default.page .section--hero-post .hero-post__link-icon::before,
.page-template-page-contact .section--hero-post .hero-post__link-icon::before,
.page-template-page-blog .section--hero-post .hero-post__link-icon::before {
  content: "";
  background-color: var(--accent-color);
  width: 24px;
  height: 24px;
  mask-image: url(../images/icons/icon-right.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .page-template-page-beforeafter .section--hero-post .hero-post__link-icon,
  .page-template-default.page .section--hero-post .hero-post__link-icon,
  .page-template-page-contact .section--hero-post .hero-post__link-icon,
  .page-template-page-blog .section--hero-post .hero-post__link-icon {
    display: none;
  }
}
.page-template-page-beforeafter .section--default > .container h1,
.page-template-default.page .section--default > .container h1,
.page-template-page-contact .section--default > .container h1,
.page-template-page-blog .section--default > .container h1 {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}
.page-template-page-beforeafter .section--default > .container h2,
.page-template-default.page .section--default > .container h2,
.page-template-page-contact .section--default > .container h2,
.page-template-page-blog .section--default > .container h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
  margin-top: 48px;
}
.page-template-page-beforeafter .section--default > .container h2:first-child,
.page-template-default.page .section--default > .container h2:first-child,
.page-template-page-contact .section--default > .container h2:first-child,
.page-template-page-blog .section--default > .container h2:first-child {
  margin-top: 0;
}
.page-template-page-beforeafter .section--default > .container h3,
.page-template-default.page .section--default > .container h3,
.page-template-page-contact .section--default > .container h3,
.page-template-page-blog .section--default > .container h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 10px;
  margin-top: 28px;
}
.page-template-page-beforeafter .section--default > .container h4,
.page-template-default.page .section--default > .container h4,
.page-template-page-contact .section--default > .container h4,
.page-template-page-blog .section--default > .container h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 8px;
}
.page-template-page-beforeafter .section--default > .container h5,
.page-template-default.page .section--default > .container h5,
.page-template-page-contact .section--default > .container h5,
.page-template-page-blog .section--default > .container h5 {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 6px;
}
.page-template-page-beforeafter .section--default > .container h6,
.page-template-default.page .section--default > .container h6,
.page-template-page-contact .section--default > .container h6,
.page-template-page-blog .section--default > .container h6 {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 5px;
}
.page-template-page-beforeafter .section--default > .container p,
.page-template-default.page .section--default > .container p,
.page-template-page-contact .section--default > .container p,
.page-template-page-blog .section--default > .container p {
  font-size: 16px;
  margin-bottom: 15px;
}

.section--default {
  padding: 100px 0;
}

.theme-browser .theme .theme-name {
  height: 52px !important;
}

.wp-admin .editor-styles-wrapper.block-editor-writing-flow {
  background-color: var(--body-background);
}

.wp-admin .quicktags-toolbar {
  display: flex;
}

#wp-link #link-options label span, #wp-link #search-panel label span.search-label {
  text-align: left;
}

/* 
 * CUSTOM STYLING ADMIN
 */
.interface-complementary-area__fill {
  width: 410px !important;
}

.interface-complementary-area.editor-sidebar {
  width: 410px !important;
}

.section--blog-archive {
  background-color: #F6F5F3;
  padding: 100px 0;
}
@media only screen and (max-width: 1366px) {
  .section--blog-archive {
    padding: 56px 0 100px;
  }
}
.section--blog-archive > .container > .blog__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -24px;
}
.section--blog-archive > .container > .blog__row > * {
  padding-left: 24px;
  padding-top: 24px;
}
.section--blog-archive .post-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .section--blog-archive .post-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section--blog-archive .post-item__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  flex: 1;
  margin-top: 12px;
  border: 1px solid #ccc;
  transition: all ease-in-out 0.2s;
}
.section--blog-archive .post-item__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section--blog-archive .post-item__image {
  height: 260px;
  display: block;
  position: relative;
  overflow: hidden;
}
.section--blog-archive .post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.section--blog-archive .post-item__image:hover img {
  transform: scale(1.04);
}
.section--blog-archive .post-item__title {
  transition: all ease-in-out 0.1s;
}
.section--blog-archive .post-item__title > * {
  font-weight: 600;
  line-height: 1.3;
  font-size: 20px;
  margin-bottom: 8px;
}
.section--blog-archive .post-item__title:hover {
  opacity: 0.5;
}
.section--blog-archive .post-item__excerpt {
  line-height: 1.4;
  color: #646464;
  font-size: 16px;
  margin-bottom: 24px;
  flex: 1;
}
.section--blog-archive .post-item__link {
  font-size: 16px;
  position: relative;
  padding-right: 36px;
  color: var(--accent-color);
  transition: all ease-in-out 0.1s;
}
.section--blog-archive .post-item__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-42%);
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  mask-image: url(../images/icons/icon-right.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.section--blog-archive .post-item__link:hover {
  opacity: 0.5;
}
.section--blog-archive .post-item__date {
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 8px 12px;
  line-height: 1.3;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  bottom: 0;
  position: absolute;
}
.section--blog-archive .post-item:hover .post-item__content {
  box-shadow: 0 2px 20px -18px #000;
  background-color: #fff;
  border: 1px solid #fff;
}
.section--blog-archive .button-flex {
  justify-content: center;
  margin-top: 56px;
}
.section--blog-archive .button-flex button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 36px;
  font-size: 18px;
  color: var(--button-primary-text-color);
  background-color: var(--button-primary-color);
  border: 2px solid var(--button-primary-color);
  min-width: 164px;
  line-height: 1;
  border-radius: var(--button-border-radius) px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  font-weight: 400;
}

.section--related {
  background-color: var(--light-wrapper-background);
}
.section--related .button-flex {
  margin-top: 56px;
  justify-content: center;
}
.section--related .title {
  margin-bottom: 56px;
  text-align: center;
}
.section--related .selected-posts {
  justify-content: center;
}

.section--under-construction {
  background-color: rgb(240, 240, 240);
  height: 100svh;
  display: flex;
  align-items: center;
}
.section--under-construction h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.section--under-construction .under-construction-image {
  width: 162px;
  height: 125px;
  background: #111;
  mask-size: contain;
  mask-repeat: no-repeat;
  margin: 0 auto 24px;
}

.page-template-page-contact .hero-wrapper {
  padding-top: 200px;
  padding-bottom: 0;
  background-color: transparent;
}
.page-template-page-contact .hero-wrapper::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.5);
}
.page-template-page-contact .section--hero {
  height: 100%;
  min-height: auto;
  background-size: cover;
}
.page-template-page-contact .footer {
  margin-top: 0;
}
.page-template-page-contact .form-title {
  margin-top: 92px;
}
.page-template-page-contact .form-description {
  margin-bottom: 36px;
  color: #6a6a6a;
  line-height: 1.4;
}
.page-template-page-contact .contact-form {
  position: relative;
}
.page-template-page-contact .contact-form::before {
  content: "";
  display: block;
  position: absolute;
  left: -56px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e3e3e3;
}
.page-template-page-contact .contact-left .title {
  font-size: 64px;
}
.page-template-page-contact .contact-left .description {
  color: #6a6a6a;
  line-height: 1.4;
}
.page-template-page-contact .contact-left .subtitle {
  margin-top: 32px;
  font-size: 24px;
}
.page-template-page-contact .contact-left .footer-social-flex {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.page-template-page-contact .contact-left .footer-social-flex a {
  transition: all ease-in-out 0.2s;
}
.page-template-page-contact .contact-left .footer-social-flex a:hover {
  opacity: 0.5;
}
.page-template-page-contact .contact-left .footer-social-flex a .social-link-icon {
  width: 32px;
  height: 32px;
  background-color: #000;
  color: transparent;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
}
.page-template-page-contact .contact-left .text-separator {
  margin: 0 12px;
  color: #b5b5b5;
}
.page-template-page-contact .contact-left .footer-numbers-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 36px;
  margin-top: 12px;
}
.page-template-page-contact .contact-left .footer-numbers-list li {
  margin-bottom: 8px;
  transition: all ease-in-out 0.2s;
}
.page-template-page-contact .contact-left .footer-numbers-list li:hover {
  opacity: 0.5;
}
.page-template-page-contact .contact-left .footer-numbers-list li a {
  padding: 16px 20px 16px 48px;
  display: block;
  line-height: 1;
  background-color: transparent;
  border: 1px solid #6a6a6a;
  color: #353535;
  position: relative;
  transition: all ease-in-out 0.2s;
  min-width: 200px;
}
.page-template-page-contact .contact-left .footer-numbers-list li a::before {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  content: "";
  background-color: #6a6a6a;
  width: 16px;
  height: 16px;
  mask-image: url(../images/icons/telephone-icon.svg);
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url(../images/icons/telephone-icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: all ease-in-out 0.1s;
}
.page-template-page-contact .contact-left .footer-numbers-list li:last-child {
  margin-bottom: 0;
}

.hero-contact-map {
  position: relative;
  z-index: 15;
  max-width: 100%;
  width: 100%;
  height: 420px;
}
.hero-contact-map iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.hero-contact {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 50px;
  background-color: #fff;
  margin: auto;
}

.hero-contact {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 64px;
  background-color: #fff;
  margin: auto;
}
.hero-contact form .contact-form-title {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
.hero-contact form .label-span {
  display: none;
}
.hero-contact form.wpcf7-form input:not(.wpcf7-submit), .hero-contact form.wpcf7-form textarea, .hero-contact form .wpcf7-form select {
  padding: 17px 24px;
  background-color: #F6F5F3;
  color: #111;
}
.hero-contact form.wpcf7-form input:not(.wpcf7-submit)::placeholder, .hero-contact form.wpcf7-form textarea::placeholder, .hero-contact form .wpcf7-form select::placeholder {
  color: #696969;
}
.hero-contact form .wpcf7-submit {
  padding: 24px 56px 24px;
  width: auto;
}
.hero-contact form .label-accept {
  margin-left: 12px;
  margin-top: 12px;
  color: #696969;
}
.hero-contact form .label-accept a {
  color: #363636;
  text-decoration: underline;
}
.hero-contact form .label-accept a:hover {
  opacity: 0.7;
}
.hero-contact form.wpcf7-form select {
  padding: 20.7px 24px;
  margin-left: 0;
  background-color: #F6F5F3;
  color: #696969;
}
.hero-contact form .terms-accept .wpcf7-list-item-label {
  top: 5px;
  background-color: #F6F5F3;
}
.hero-contact form.wpcf7-form .terms-accept input:hover ~ .wpcf7-list-item-label {
  background-color: #cacaca;
}
.hero-contact form.wpcf7-form .form-flex p {
  margin-bottom: 0;
}
.hero-contact form.wpcf7-form .terms-accept .wpcf7-list-item-label::after {
  top: -1px;
  left: -1px;
  background: #000;
  mask-image: url(../images/check-input.svg);
  mask-size: 12px;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/check-input.svg);
  -webkit-mask-size: 12px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.hero-contact form.wpcf7-form .terms-accept input:checked ~ .wpcf7-list-item-label {
  background-color: #fa7929;
}
.hero-contact form .form-flex {
  display: flex;
  margin-left: -14px;
}
.hero-contact form .form-flex--100 p {
  width: 100%;
}
.hero-contact form .form-flex--100 p label {
  width: 100%;
}
.hero-contact form.wpcf7-form .form-flex p {
  display: flex;
  margin: 0 0 15px;
  width: 100%;
}
.hero-contact form.wpcf7-form .form-flex p > * {
  padding: 0 0 0 14px;
}
.hero-contact .row--contact {
  margin-left: -56px;
  margin-top: -56px;
}
.hero-contact .row--contact > * {
  padding-left: 56px;
  padding-top: 56px;
}
.hero-contact .row--contact .contact-left {
  flex: 0 0 40%;
  max-width: 40%;
  width: 100%;
  padding-right: 56px;
}
.hero-contact .row--contact .contact-right {
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
}
.hero-contact .contact-form-title {
  max-width: 500px;
  font-size: 55px;
  margin-bottom: 60px;
  line-height: 1.1;
  color: #242630;
}
.hero-contact .contact-form-title .text-underlined::before {
  background-color: #ffd344;
}
.hero-contact .wpcf7-form .wpcf7-submit {
  display: inline-block;
  background-color: var(--accent-color);
  width: auto;
  padding: 24px 48px 24px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 32px;
  cursor: pointer;
  letter-spacing: 0;
}
.hero-contact .label-span {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #f7f8f9;
  padding: 0 40px 0 15px;
  pointer-events: none;
  color: #626262;
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
.hero-contact .label-message .label-span {
  top: 25px;
  pointer-events: none;
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
.hero-contact .label-accept {
  margin-left: 12px;
  font-size: 15px;
  color: #626262;
  line-height: 1.1;
}
.hero-contact .label-accept a {
  text-decoration: underline;
  color: #626262;
}

@media only screen and (max-width: 1366px) {
  .page-template-page-contact .hero-contact {
    padding: 52px 48px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-right {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .page-template-page-contact .hero-contact .footer-social-flex .footer-social-flex__item {
    max-width: 42px;
  }
  .page-template-page-contact .form-title {
    margin-top: 84px;
    font-size: 28px;
  }
  .hero-contact-form .contact-form-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-template-page-contact .section--hero {
    max-width: 100%;
  }
  .page-template-page-contact .section--hero .hero-wrapper {
    padding-top: 240px;
    border: 0;
  }
  .page-template-page-contact .hero-contact {
    padding: 52px 48px;
  }
  .page-template-page-contact .hero-contact .row--contact {
    margin-left: -32px;
    margin-top: -32px;
  }
  .page-template-page-contact .hero-contact .row--contact > * {
    padding-left: 32px;
    padding-top: 32px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .footer-numbers-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .footer-numbers-list li {
    margin-bottom: 0;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .footer-numbers-list li a {
    margin-bottom: 0;
    min-width: auto;
    padding: 16px 20px 16px 38px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-left .footer-numbers-list li a::before {
    left: 15px;
    width: 14px;
    height: 14px;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-template-page-contact .hero-contact .row--contact .contact-right .contact-form::before {
    display: none;
  }
  .page-template-page-contact .hero-contact .footer-social-flex .footer-social-flex__item {
    max-width: 42px;
  }
  .page-template-page-contact .form-title {
    margin-top: 0;
    font-size: 28px;
  }
  .hero-contact-form .contact-form-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .hero-contact-form {
    padding: 60px 40px;
  }
  .hero-contact-form form .form-flex {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .hero-contact-form form .form-flex > p {
    padding: 0;
    margin-bottom: 10px;
  }
  .hero-contact-form .contact-form-title {
    font-size: 40px;
    max-width: 380px;
  }
  .page-template-page-contact .hero-wrapper {
    padding-top: 200px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 500px) {
  .hero-contact-form {
    padding: 60px 30px;
  }
  .hero-contact-form form .form-flex {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .hero-contact-form form .form-flex > p {
    padding: 0;
    margin-bottom: 10px;
  }
  .hero-contact-form .contact-form-title {
    font-size: 32px;
    max-width: 380px;
  }
  .hero-contact-form form input,
  .hero-contact-form form textarea,
  .hero-contact-form form select {
    padding: 10px 15px;
  }
  .hero-contact-form .label-span {
    left: 5px;
  }
}
.wpcf7-form .wpcf7-response-output {
  padding: 12px 24px;
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 0;
  border: 1px solid #dbdbdb;
  display: none;
}
.wpcf7-form.failed .wpcf7-response-output {
  display: block;
  background-color: #ffc9d2;
  border: 1px solid #a4263b;
  color: #a4263b;
}
.wpcf7-form.invalid .wpcf7-response-output {
  display: block;
  background-color: #ffc9d2;
  border: 1px solid #a4263b;
  color: #a4263b;
}
.wpcf7-form.valid .wpcf7-response-output {
  display: block;
  background-color: #C9FFE5;
  border: 1px solid #1cab77;
  color: #1cab77;
}

.section--block {
  position: relative;
  overflow: hidden;
}
.section--block .background-color-overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
.section--block > .container {
  position: relative;
  z-index: 10;
}
.section > .container > h2 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
}
@media only screen and (max-width: 1366px) {
  .section > .container > h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .section > .container > h2 {
    font-size: 52px;
  }
}
.section > .container > h3 {
  font-size: var(--h3-size);
  line-height: 1.2;
  font-weight: 600;
}
@media only screen and (max-width: 1366px) {
  .section > .container > h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .section > .container > h3 {
    font-size: 20px;
  }
}
.section > .container > p {
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.4;
}
@media only screen and (max-width: 1366px) {
  .section > .container > p {
    font-size: 16px;
  }
}
.section > .container ul.wp-block-list {
  list-style: disc;
  padding: 0 20px;
}
@media only screen and (max-width: 1366px) {
  .section > .container ul.wp-block-list li {
    font-size: 16px;
  }
}
.section.wysiwyg-editor p:not(.subtitle) {
  font-size: 18px;
  margin-top: 28px;
  color: var(--main-font-color);
}
.section.wysiwyg-editor h2 {
  font-size: 36px;
  margin-top: 32px;
  line-height: 1.2;
}
.section.wysiwyg-editor h2:first-child {
  margin-top: 0;
}
.section.wysiwyg-editor h3 {
  font-size: 28px;
  margin-top: 24px;
}
.section.wysiwyg-editor h3:first-child {
  margin-top: 0;
}
.section.wysiwyg-editor h4 {
  font-size: 24px;
  margin-top: 20px;
}
.section.wysiwyg-editor h4:first-child {
  margin-top: 0;
}
.section.wysiwyg-editor h5 {
  font-size: 20px;
  margin-top: 18px;
}
.section.wysiwyg-editor h5:first-child {
  margin-top: 0;
}
.section.wysiwyg-editor h6 {
  font-size: 18px;
  margin-top: 16px;
}
.section.wysiwyg-editor h6:first-child {
  margin-top: 0;
}
.section.wysiwyg-editor p {
  margin-top: 24px;
}
.section.wysiwyg-editor p:first-child {
  margin-top: 0;
}

#editor .background-color-overlay {
  z-index: 0;
}

.section--two-sides {
  padding: 0;
}
.section--two-sides.simple {
  padding: 150px 0;
}
@media only screen and (max-width: 1024px) {
  .section--two-sides.simple {
    padding: 100px 0;
  }
}
.section--two-sides.simple > .container > .row {
  margin-top: -64px;
  margin-left: -64px;
}
.section--two-sides.simple > .container > .row > * {
  padding-left: 64px;
  padding-top: 64px;
}
.section--two-sides.simple .content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}
.section--two-sides.simple .content__wrapper h2 {
  font-size: var(--h2-size);
  line-height: 1;
}
.section--two-sides.simple .content__wrapper h3 {
  font-size: var(--h3-size);
}
.section--two-sides.simple .content__wrapper p:not(.subtitle) {
  font-size: var(--main-font-size) px;
  margin-top: 20px;
  color: var(--main-font-color);
}
@media only screen and (max-width: 1366px) {
  .section--two-sides.simple .content__wrapper h2 {
    font-size: 42px;
    line-height: 1;
  }
  .section--two-sides.simple .content__wrapper h3 {
    font-size: 24px;
  }
  .section--two-sides.simple .content__wrapper p:not(.subtitle) {
    font-size: 16px;
    margin-top: 28px;
    color: var(--main-font-color);
  }
}
@media only screen and (max-width: 768px) {
  .section--two-sides.simple .content__wrapper h2 {
    font-size: 52px;
  }
  .section--two-sides.simple .content__wrapper h3 {
    font-size: 20px;
  }
}
.section--two-sides.simple .image {
  width: 100%;
  height: 100%;
  position: relative;
}
.section--two-sides.simple .image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--two-sides.simple .image.image-absolute .image__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section--two-sides.simple .image-sticky .image {
  height: auto;
  position: sticky;
  top: 80px;
}
.section--two-sides.split-screen .two-side-grid {
  display: grid;
  grid-template-columns: [left-side-start] 1fr [left-side-end] 0 [right-side-start] 1fr [right-side-end];
  grid-template-rows: auto;
}
.section--two-sides.split-screen .two-side-grid--slider {
  grid-template-columns: [left-side-start] 50% [left-side-end] 0 [right-side-start] 50% [right-side-end];
}
.section--two-sides.split-screen .two-side-grid.content-right .content {
  grid-column: right-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: [content-start] var(--grid-container-split) [content-end] 1fr;
  grid-template-rows: auto;
}
.section--two-sides.split-screen .two-side-grid.content-right .content__wrapper {
  grid-column: content;
  padding: 200px var(--container-pad) 190px 112px;
}
.section--two-sides.split-screen .two-side-grid.content-right .image {
  grid-column: left-side;
  grid-row: 1/2;
}
.section--two-sides.split-screen .two-side-grid.content-left .content {
  grid-column: left-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr [content-start] var(--grid-container-split) [content-end];
  grid-template-rows: auto;
}
.section--two-sides.split-screen .two-side-grid.content-left .content__wrapper {
  grid-column: content;
  padding: 200px 112px 190px var(--container-pad);
}
.section--two-sides.split-screen .two-side-grid.content-left .image {
  grid-column: right-side;
  grid-row: 1/2;
}
.section--two-sides.split-screen .two-side-grid .content .content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--two-sides.split-screen .two-side-grid .content .content__wrapper h2 {
  font-size: var(--h2-size);
  line-height: 1.1;
}
.section--two-sides.split-screen .two-side-grid .content .content__wrapper h3 {
  font-size: var(--h3-size);
}
.section--two-sides.split-screen .two-side-grid .content .content__wrapper p:not(.subtitle) {
  font-size: var(--main-font-size) px;
  margin-top: 28px;
  color: var(--main-font-color);
}
@media only screen and (max-width: 1366px) {
  .section--two-sides.split-screen .two-side-grid .content .content__wrapper h2 {
    font-size: 42px;
    line-height: 1.1;
  }
  .section--two-sides.split-screen .two-side-grid .content .content__wrapper h3 {
    font-size: 24px;
  }
  .section--two-sides.split-screen .two-side-grid .content .content__wrapper p:not(.subtitle) {
    font-size: 16px;
    margin-top: 28px;
    color: var(--main-font-color);
  }
}
@media only screen and (max-width: 768px) {
  .section--two-sides.split-screen .two-side-grid .content .content__wrapper h2 {
    font-size: 52px;
  }
  .section--two-sides.split-screen .two-side-grid .content .content__wrapper h3 {
    font-size: 20px;
  }
}
.section--two-sides.split-screen .two-side-grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--two-sides.split-screen .two-side-grid .image.image-absolute {
  position: relative;
  overflow: hidden;
}
.section--two-sides.split-screen .two-side-grid .image.image-absolute img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section--two-sides.overlap-content {
  position: relative;
  overflow: hidden;
}
.section--two-sides.overlap-content .two-side-grid.half-sized {
  display: grid;
  grid-template-columns: [full-width-start] 0 [left-side-start] 1fr [left-side-end] 0 [right-side-start] 1fr [right-side-end] 0 [full-width-end];
  grid-template-rows: auto;
  position: relative;
  z-index: 5;
}
.section--two-sides.overlap-content .two-side-grid.half-sized::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.section--two-sides.overlap-content .two-side-grid.half-sized.content-right .content {
  grid-column: right-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: [content-start] var(--grid-container-split) [content-end] 1fr;
  grid-template-rows: auto;
}
.section--two-sides.overlap-content .two-side-grid.half-sized.content-right .content__wrapper {
  grid-column: content;
  padding: 200px var(--container-pad) 190px 112px;
}
.section--two-sides.overlap-content .two-side-grid.half-sized.content-left .content {
  grid-column: left-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr [content-start] var(--grid-container-split) [content-end];
  grid-template-rows: auto;
}
.section--two-sides.overlap-content .two-side-grid.half-sized.content-left .content__wrapper {
  grid-column: content;
  padding: 200px 112px 190px var(--container-pad);
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized {
  display: grid;
  grid-template-columns: [full-width-start] 0 1fr calc(var(--grid-container-split) - var(--container-pad)) calc(var(--grid-container-split) - var(--container-pad)) 1fr 0 [full-width-end];
  grid-template-rows: auto;
  position: relative;
  z-index: 5;
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized.content-right .content {
  grid-column: 3/6;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: [content-start] calc(var(--container-width) - var(--container-pad)) [content-end] 1fr;
  grid-template-rows: auto;
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized.content-right .content__wrapper {
  grid-column: content;
  padding: 200px var(--container-pad) 190px 112px;
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized.content-left .content {
  grid-column: 1/5;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr [content-start] calc(var(--container-width) - var(--container-pad)) [content-end];
  grid-template-rows: auto;
}
.section--two-sides.overlap-content .two-side-grid.three-to-four-sized.content-left .content__wrapper {
  grid-column: content;
  padding: 200px 112px 190px var(--container-pad);
}
.section--two-sides.overlap-content .two-side-grid .image {
  grid-column: full-width;
  grid-row: 1/2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--two-sides.overlap-content .two-side-grid .content {
  position: relative;
  z-index: 10;
}
.section--two-sides.overlap-content .two-side-grid .content .content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--two-sides.overlap-content .two-side-grid .content .content__wrapper h2 {
  font-size: var(--h2-size);
  line-height: 1.1;
}
.section--two-sides.overlap-content .two-side-grid .content .content__wrapper h3 {
  font-size: var(--h3-size);
}
.section--two-sides.overlap-content .two-side-grid .content .content__wrapper p:not(.subtitle) {
  font-size: var(--main-font-size) px;
  margin-top: 28px;
  color: var(--main-font-color);
}
@media only screen and (max-width: 1366px) {
  .section--two-sides.overlap-content .two-side-grid .content .content__wrapper h2 {
    font-size: 42px;
    line-height: 1.1;
  }
  .section--two-sides.overlap-content .two-side-grid .content .content__wrapper h3 {
    font-size: 24px;
  }
  .section--two-sides.overlap-content .two-side-grid .content .content__wrapper p:not(.subtitle) {
    font-size: 16px;
    margin-top: 28px;
    color: var(--main-font-color);
  }
}
@media only screen and (max-width: 768px) {
  .section--two-sides.overlap-content .two-side-grid .content .content__wrapper h2 {
    font-size: 52px;
  }
  .section--two-sides.overlap-content .two-side-grid .content .content__wrapper h3 {
    font-size: 20px;
  }
}
.section--two-sides.overlap-content .two-side-grid .content.backdrop {
  background-color: rgba(0, 0, 0, 0.4784313725);
}
.section--two-sides.overlap-content .two-side-grid .content.blur {
  backdrop-filter: blur(10px);
}
.section--two-sides.overlap-content .two-side-grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--two-sides.overlap-content .two-side-grid .image.image-absolute {
  position: relative;
  overflow: hidden;
}
.section--two-sides.overlap-content .two-side-grid .image.image-absolute img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section--two-sides .content__buttons-flex {
  display: flex;
  justify-content: flex-start;
  margin-top: 72px;
}
.section--two-sides .content__buttons-flex > * {
  margin-right: 6px;
}
.section--two-sides .content__buttons-flex > *:last-child {
  margin-right: 0;
}

.two-sides-slider .slick-track {
  display: flex;
}
.two-sides-slider__item {
  height: inherit;
}
.two-sides-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 0;
  display: block;
  background-color: rgb(0, 0, 0);
  border: 1px solid #000;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.two-sides-slider .slick-arrow::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  background-color: #fff;
  mask-image: url(../images/icons/slick-next.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
.two-sides-slider .slick-arrow.slick-next {
  right: 48px;
}
.two-sides-slider .slick-arrow.slick-prev {
  left: 48px;
}
.two-sides-slider .slick-arrow.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.two-sides-slider .slick-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.banner--simple-image-link .banner__link-wrapper {
  display: block;
}
.banner--simple-image-link .banner__link-image {
  width: 100%;
  height: auto;
}
.banner--with-content {
  position: relative;
  position: relative;
  padding-left: 92px;
  padding-right: 92px;
}
.banner--with-content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.banner--with-content .banner__content {
  position: relative;
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.banner--with-content .banner__background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 5;
  object-fit: cover;
}
.banner--with-content .banner__link {
  margin-top: 36px;
}

.align-content-center {
  align-items: center !important;
}

.align-content-left {
  align-items: flex-start !important;
}

.align-content-right {
  align-items: flex-end !important;
}

.button-flex {
  display: flex;
  flex-wrap: wrap;
}
.button-flex > .btn {
  margin-right: 6px;
}
.button-flex > .btn:last-child {
  margin: 0;
}
@media only screen and (max-width: 500px) {
  .button-flex > .btn {
    margin-right: 0;
    width: 100%;
  }
  .button-flex > .btn:first-child {
    margin-bottom: 4px;
  }
}

.wrapper {
  width: 100%;
  position: relative;
}
.wrapper h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
}
.wrapper h3 {
  font-size: 48px;
  font-weight: 600;
}
.wrapper p:not(.subtitle) {
  font-size: 18px;
  margin-top: 28px;
  color: var(--main-font-color);
}
@media only screen and (max-width: 768px) {
  .wrapper h2 {
    font-size: 52px;
    line-height: 1.3;
  }
  .wrapper h3 {
    font-size: 20px;
    line-height: 1.3;
  }
  .wrapper p:not(.subtitle) {
    font-size: 16px;
  }
}
.wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.wrapper::before {
  display: none;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wrapper > * {
  position: relative;
}

.faq {
  display: block;
  width: 100%;
}
.faq .questions-list .faq-item {
  padding: 0;
  margin-bottom: 12px;
  background-color: var(--light-wrapper-background);
  background-color: #f6f5f3;
  background-color: #f3f2f0;
  border: 1px solid #ccc;
}
.faq .questions-list .faq-item::before {
  display: none;
}
.faq .questions-list .faq-item:last-child {
  margin-bottom: 0;
}
.faq .questions-list .faq-answer {
  display: none;
  padding: 0 0 28px 0;
  margin: 0;
  font-size: 16px;
  background-color: transparent;
  color: #242630;
}
.faq .questions-list .faq-answer ul li::before {
  background-color: var(--accent-color);
}
@media only screen and (max-width: 768px) {
  .faq .questions-list .faq-answer {
    padding: 22px 72px 20px 24px;
  }
}
.faq .questions-list .faq-answer ul {
  list-style: disc !important;
  padding-left: 14px !important;
}
.faq .questions-list .faq-answer p {
  margin: 0 !important;
}
.faq .questions-list .faq-answer h3 {
  margin: 0 !important;
}
.faq .questions-list .faq-question {
  padding: 28px 0 28px 0;
  background-color: transparent;
  max-width: 100%;
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.faq .questions-list .faq-question::before {
  content: "";
  position: absolute;
  right: 0;
  width: 21px;
  height: 21px;
  background-color: var(--accent-color);
  -webkit-mask-image: url(../images/arrow.svg);
  mask-image: url(../images/arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  padding: 3px;
  top: 32px;
  transform: rotate(90deg);
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 768px) {
  .faq .questions-list .faq-question {
    padding: 22px 42px 20px 24px;
  }
  .faq .questions-list .faq-question::before {
    right: 24px;
  }
}
.faq .questions-list .faq-item.open .faq-question {
  color: #000;
}
.faq .questions-list .faq-item.open .faq-question::before {
  background-color: var(--accent-color);
  transform: rotate(-90deg);
}
.faq--modern .questions-list .faq-item {
  padding: 0;
  margin-bottom: 12px;
}
.faq--modern .questions-list .faq-item::before {
  display: none;
}
.faq--modern .questions-list .faq-answer {
  display: none;
  padding: 0 36px 24px 24px;
  margin: 0;
  font-size: 16px;
  color: #000;
}
.faq--modern .questions-list .faq-answer ul li::before {
  background-color: var(--accent-color);
}
@media only screen and (max-width: 768px) {
  .faq--modern .questions-list .faq-answer {
    padding: 22px 42px 20px 24px;
  }
}
.faq--modern .questions-list .faq-answer ul {
  list-style: disc !important;
  padding-left: 14px !important;
}
.faq--modern .questions-list .faq-answer p {
  margin: 0;
}
.faq--modern .questions-list .faq-question {
  padding: 24px 72px 24px 24px;
  max-width: 100%;
  margin: 0 !important;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.faq--modern .questions-list .faq-question::before {
  content: "";
  position: absolute;
  right: 24px;
  width: 21px;
  height: 21px;
  background-color: var(--accent-color);
  -webkit-mask-image: url(../images/arrow.svg);
  mask-image: url(../images/arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  padding: 3px;
  top: 30px;
  transform: rotate(90deg);
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 768px) {
  .faq--modern .questions-list .faq-question {
    padding: 22px 42px 20px 24px;
  }
  .faq--modern .questions-list .faq-question::before {
    right: 24px;
  }
}
.faq--modern .questions-list .faq-item.open .faq-question {
  color: #000;
}
.faq--modern .questions-list .faq-item.open .faq-question::before {
  background-color: var(--accent-color);
  transform: rotate(-90deg);
}
@media only screen and (max-width: 1024px) {
  .faq .questions-list .faq-question {
    font-size: 16px;
  }
  .faq .questions-list .faq-answer {
    font-size: 14px;
  }
  .faq .questions-list .faq-answer li {
    font-size: 14px !important;
  }
}

.section--quote {
  padding: 260px 0;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section--quote {
    padding: 100px 0;
  }
}
.section--quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.section--quote > .container > h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .section--quote > .container > h2 {
    font-size: 32px;
  }
}
.section--quote .quote {
  position: relative;
  z-index: 10;
}
.section--quote .quote__content p {
  margin: 0 0 54px 0;
  font-size: 52px;
  line-height: 1.3;
}
.section--quote .quote__author-icon {
  max-width: 64px;
  width: 100%;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.section--quote .quote__author-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section--quote .quote__icon-flex {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 54px;
}
.section--quote .quote__icon {
  content: "";
  display: block;
  background-color: #000;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.section--quote .quote__author-flex {
  display: flex;
  justify-content: flex-start;
}
.section--quote .quote__author {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section--quote .quote--centered .quote__icon-flex {
  justify-content: center;
  margin-bottom: 64px;
}
.section--quote .quote--centered .quote__icon {
  display: block;
}
.section--quote .quote--centered .quote__content p {
  text-align: center;
  margin: 0 0 64px 0;
}
.section--quote .quote--centered .quote__author-flex {
  justify-content: center;
}
.section--quote .quote--centered .quote__author {
  text-align: center;
}

.trusted {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -56px;
  margin-top: -56px;
}
.trusted > * {
  display: flex;
  padding-left: 56px;
  padding-top: 56px;
}
.trusted .col-five {
  flex: 20%;
  max-width: 20%;
}
.trusted__item {
  margin: 0 auto;
}
.trusted__item img {
  max-height: 100px;
  max-width: 232px;
  transition: all ease-in-out 0.2s;
  opacity: 0.28;
}
.trusted__item:hover img {
  opacity: 1;
}

.block-gallery .gallery--modern-blocks {
  display: flex;
  flex-wrap: wrap;
  margin-left: -28px;
  margin-top: -28px;
}
.block-gallery .gallery--modern-blocks .gallery__item {
  padding-left: 28px;
  padding-top: 28px;
}
.block-gallery .gallery--modern-blocks .gallery__item-1, .block-gallery .gallery--modern-blocks .gallery__item-7 {
  flex: 0 0 40%;
  width: 40%;
}
.block-gallery .gallery--modern-blocks .gallery__item-3, .block-gallery .gallery--modern-blocks .gallery__item-4, .block-gallery .gallery--modern-blocks .gallery__item-5 {
  flex: 0 0 33.33%;
  width: 33.33%;
}
.block-gallery .gallery--modern-blocks .gallery__item-2, .block-gallery .gallery--modern-blocks .gallery__item-6 {
  flex: 0 0 60%;
  width: 60%;
}
.block-gallery .gallery--modern-blocks .gallery__item .image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.block-gallery .gallery--modern-blocks .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.6s;
}
.block-gallery .gallery--modern-blocks .gallery__item img:hover {
  transform: scale(1.04);
}
@media only screen and (max-width: 768px) {
  .block-gallery .gallery--modern-blocks {
    margin-left: -18px;
    margin-top: -18px;
  }
  .block-gallery .gallery--modern-blocks .gallery__item {
    padding-left: 18px;
    padding-top: 18px;
  }
  .block-gallery .gallery--modern-blocks .gallery__item-1, .block-gallery .gallery--modern-blocks .gallery__item-7, .block-gallery .gallery--modern-blocks .gallery__item-3, .block-gallery .gallery--modern-blocks .gallery__item-4, .block-gallery .gallery--modern-blocks .gallery__item-5, .block-gallery .gallery--modern-blocks .gallery__item-2, .block-gallery .gallery--modern-blocks .gallery__item-6 {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .block-gallery .gallery--modern-blocks {
    margin-left: -14px;
    margin-top: -14px;
  }
  .block-gallery .gallery--modern-blocks .gallery__item {
    padding-left: 14px;
    padding-top: 14px;
  }
}

.block-contact .contact-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -64px;
  margin-top: -64px;
}
.block-contact .contact-row > * {
  padding-left: 64px;
  padding-top: 64px;
}
.block-contact .contact__information {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.block-contact .contact__title {
  font-size: 52px;
  line-height: 1.1;
}
.block-contact .contact__description {
  color: #2F2F2F;
  line-height: 1.3;
  font-size: 18px;
  max-width: 530px;
}
.block-contact .contact__map {
  overflow: hidden;
  border-radius: 24px;
}
.block-contact .contact__map iframe {
  width: 100% !important;
  height: 600px !important;
}
.block-contact .contact-form__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-top: -12px;
}
.block-contact .contact-form__row > * {
  padding-left: 12px;
  padding-top: 12px;
}
.block-contact .contact-form__input-box p {
  margin-top: 0 !important;
}
.block-contact .contact-form__input-box br {
  display: none;
}
.block-contact .contact-form__input-box label {
  display: block;
}
.block-contact .contact-form__input-box .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.block-contact .contact-form__input-box .wpcf7-form-control-wrap input,
.block-contact .contact-form__input-box .wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  border: none;
  background-color: #F3F8F9;
  border-radius: 12px;
  padding: 20px;
}
.block-contact .contact-form__button p {
  margin-top: 0;
}
.block-contact .contact-form__button p .wpcf7-form-control {
  padding: 20px 36px;
  text-transform: uppercase;
  border-radius: 14px;
  background-color: #1D4454;
  border-color: #1D4454;
  min-width: 164px;
  text-align: center;
  cursor: pointer;
  border: none;
  color: #fff;
  font-size: 18px;
}
.block-contact .contact-form__input-box-label {
  display: none;
}
.block-contact .contact__info-box {
  padding: 20px;
  background-color: #f3f8f9;
}
.block-contact .contact__info-box .contact__info-list-item {
  margin-bottom: 6px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-contact .contact__info-box .contact__info-list-item::before {
  background-color: #000;
  position: relative;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.block-contact .contact__info-box .contact__info-list-item--tel::before {
  -webkit-mask-image: url(../images/icons/info-tel.svg);
  mask-image: url(../images/icons/info-tel.svg);
}
.block-contact .contact__info-box .contact__info-list-item--email::before {
  -webkit-mask-image: url(../images/icons/info-email.svg);
  mask-image: url(../images/icons/info-email.svg);
}
.block-contact .contact__info-box .contact__info-list-item--loc::before {
  -webkit-mask-image: url(../images/icons/info-loc.svg);
  mask-image: url(../images/icons/info-loc.svg);
}
.block-contact .contact__info-box .contact__info-list-item:last-child {
  margin-bottom: 0;
}
.block-contact .contact__info-box .contact__info-list-item-text {
  font-size: 18px;
}

.wpcf7-form p {
  max-width: 100%;
  flex-wrap: wrap;
}
.wpcf7-form label,
.wpcf7-form p span {
  display: block;
}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  display: block;
  max-width: 100%;
  width: 100%;
}
.wpcf7-form label {
  position: relative;
}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  padding: 17px 20px;
  border: none;
  background-color: var(--light-wrapper-background);
  outline: none;
  color: #626262;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.3px;
  border: 1px solid #ccc;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form select {
  padding: 20.7px 20px;
}
.wpcf7-form .form-flex p {
  display: flex;
  margin: 0 -7.5px 15px;
}
.wpcf7-form .form-flex p > * {
  flex: 1 1 50%;
  padding: 0 7.5px;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form .form-flex p > * {
    flex: 1 1 100%;
  }
  .wpcf7-form .form-flex p > * > .label-span--tel {
    margin-top: 15px;
  }
}
.wpcf7-form .visited-input .label-span,
.wpcf7-form .active-input .label-span,
.wpcf7-form .visited-select .label-span {
  opacity: 1;
}
.wpcf7-form .terms-accept {
  position: relative;
  width: 20px;
  height: 20px;
}
.wpcf7-form .terms-accept .wpcf7-list-item-label {
  position: absolute;
  display: block;
  background-color: var(--light-wrapper-background);
  height: 20px;
  width: 20px;
  top: 0;
  left: 0;
  font-size: 0;
  width: 20px;
  height: 20px;
  transition: all ease-in-out 0.1s;
  cursor: pointer;
  border: 1px solid #ccc;
}
.wpcf7-form .terms-accept .wpcf7-list-item-label::after {
  display: none;
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--accent-color) url(../images/check-input.svg) center center no-repeat;
  background-size: 14px;
}
.wpcf7-form .terms-accept input {
  display: none;
}
.wpcf7-form .terms-accept input:checked ~ .wpcf7-list-item-label:after {
  display: block;
}
.wpcf7-form .terms-accept input:checked ~ .wpcf7-list-item-label {
  border: 1px solid #fa7929;
}
.wpcf7-form .terms-accept input:hover ~ .wpcf7-list-item-label {
  background-color: #dadbdd;
}
.wpcf7-form .label-radio {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.wpcf7-form .label-accept {
  margin-left: 12px;
}
@media only screen and (max-width: 1366px) {
  .wpcf7-form .label-accept {
    font-size: 16px;
  }
}
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  background-color: var(--primary-color);
  width: auto;
  padding: 24px 84px 24px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  border-radius: 0;
  margin-top: 40px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  border: 1px solid var(--primary-color);
}
.wpcf7-form .wpcf7-submit:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.wpcf7-form .radio-flex {
  margin-top: 28px;
}
.wpcf7-form .label-span--required,
.wpcf7-form .label-radio--required .label-accept {
  display: inline-block;
  position: relative;
}
.wpcf7-form .label-span--required::after,
.wpcf7-form .label-radio--required .label-accept::after {
  content: "*";
  color: #d51010;
  font-size: 14px;
  position: relative;
  top: -3px;
  margin-left: 3px;
}
.wpcf7-form .label-span {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #f7f8f9;
  padding: 0 40px 0 15px;
  pointer-events: none;
  color: #626262;
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
.wpcf7-form .label-message .label-span {
  top: 25px;
  pointer-events: none;
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
.wpcf7-form .label-accept {
  margin-left: 12px;
  font-size: 15px;
  color: #626262;
  line-height: 1.1;
}
.wpcf7-form .label-accept a {
  text-decoration: underline;
  color: #626262;
}
.wpcf7-form .select-wrapper .wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form .select-wrapper .wpcf7-form-control-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 32px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  mask-image: url(../images/right-arrow.svg);
  mask-size: 16px;
  mask-position: left center;
  mask-repeat: no-repeat;
  background-color: #999999;
  z-index: 2;
}
.wpcf7-form .select-wrapper .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 32px;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  background-color: var(--light-wrapper-background);
}

.wpcf7-form .label-span {
  display: none;
}

.wpcf7-form .flex-bottom--left > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.wpcf7-form .flex-bottom--center > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wpcf7-form .flex-bottom--right > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.form-white .wpcf7-form input,
.form-white .wpcf7-form textarea,
.form-white .wpcf7-form select {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}
.form-white .wpcf7-form input::placeholder,
.form-white .wpcf7-form textarea::placeholder,
.form-white .wpcf7-form select::placeholder {
  color: #fff;
}
.form-white .wpcf7-form .label-accept {
  color: #fff;
}
.form-white .wpcf7-form .label-accept a {
  color: #fff;
}
.form-white .wpcf7-form .terms-accept .wpcf7-list-item-label {
  background-color: transparent;
}
.form-white .wpcf7-form .terms-accept input:hover ~ .wpcf7-list-item-label {
  background-color: rgba(218, 219, 221, 0);
}
.form-white .wpcf7-form .wpcf7-submit {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #000;
}
.form-white .wpcf7-form .wpcf7-submit:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.form-white .wpcf7-form .select-wrapper .wpcf7-form-control-wrap::after,
.form-white .wpcf7-form .select-wrapper .wpcf7-form-control-wrap::before {
  background-color: transparent;
}
.form-white .wpcf7-form select option {
  color: #000;
}

.cards__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-top: -16px;
}
.cards__col {
  padding-top: 16px;
  padding-left: 16px;
}
.cards__link-item {
  display: block;
  position: relative;
}
.cards__link-item::before {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 8;
}
.cards__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
  z-index: 10;
  border: 1px solid #ccc;
  border-left: 0;
  transition: all ease-in-out 0.3s;
}
.cards__content.left-align {
  align-items: flex-start;
  margin: 0 auto 0 0;
}
.cards__content.left-align > * {
  text-align: left;
}
.cards__content.left-align .cards__content-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cards__content.center-align {
  align-items: center;
  margin: 0 auto;
}
.cards__content.center-align > * {
  text-align: center;
}
.cards__content.center-align .cards__content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cards__content.right-align {
  align-items: flex-end;
  margin: 0 0 0 auto;
}
.cards__content.right-align > * {
  text-align: right;
}
.cards__content.right-align .cards__content-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cards__title {
  font-size: 24px !important;
  line-height: 1.3 !important;
}
.cards__description {
  font-size: 14px !important;
  line-height: 1.3;
  margin-top: 4px !important;
}
.cards__item {
  padding: 18px 24px;
  height: 100%;
  display: flex;
  transition: all ease-in-out 0.3s;
  position: relative;
}
.cards__item::before {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 8;
}
.cards__item:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 20px -18px #000;
  background-color: #fff;
}
.cards__item:hover .cards__content {
  border: 1px solid #fff;
  border-left: 0;
}
.cards__link {
  margin-top: 24px;
  font-size: 14px;
  text-decoration: underline;
  display: inline-block;
}
.cards__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 5;
}
.cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards__icon {
  width: 82px;
  height: 82px;
  display: block;
  position: relative;
}
.cards__icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #000;
}
.cards--hor-cards .cards__item {
  padding: 0;
}
.cards--hor-cards .cards__item:hover {
  transform: scale(1);
}
.cards--hor-cards .cards__item:hover .cards__image img {
  transform: scale(1.05);
}
@media only screen and (max-width: 1024px) {
  .cards--hor-cards .cards__item {
    flex-direction: column;
  }
}
.cards--hor-cards .cards__col {
  padding-top: 28px;
  padding-left: 28px;
}
.cards--hor-cards .cards__row {
  margin-left: -28px;
  margin-top: -28px;
}
.cards--hor-cards .cards__image {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  width: 100%;
  overflow: hidden;
}
.cards--hor-cards .cards__image img {
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 1366px) {
  .cards--hor-cards .cards__image {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .cards--hor-cards .cards__image {
    flex: 0 0 250px;
    width: 100%;
    max-width: 100%;
  }
}
.cards--hor-cards .cards__content {
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
  padding: 36px 36px 36px 36px;
}
@media only screen and (max-width: 1024px) {
  .cards--hor-cards .cards__content {
    flex: 1;
    max-width: 100%;
    padding: 24px 24px 24px 24px;
    margin-top: 18px !important;
    border-left: 1px solid #ccc;
  }
}
.cards--hor-cards .cards__title {
  font-weight: 600;
  line-height: 1.2 !important;
}
@media only screen and (max-width: 1366px) {
  .cards--hor-cards .cards__title {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .cards--hor-cards .cards__title {
    font-size: 26px !important;
  }
}
.cards--hor-cards .cards__description {
  color: #646464;
  font-size: 16px !important;
}
@media only screen and (max-width: 1366px) {
  .cards--hor-cards .cards__description {
    font-size: 14px !important;
  }
}
.cards--hor-cards .cards__link-title {
  transition: all ease-in-out 0.1s;
}
.cards--hor-cards .cards__link-title:hover {
  opacity: 0.5;
}
.cards--hor-cards .cards__link {
  padding: 0 24px 0 0;
  margin-top: 32px;
  color: var(--accent-color);
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-weight: 600;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.cards--hor-cards .cards__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-42%);
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  mask-image: url(../images/icons/icon-right.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.cards--hor-cards .cards__link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 1366px) {
  .cards--hor-cards .cards__link {
    font-size: 12px !important;
  }
}

.cards.cards--simple .cards__item {
  padding: 0;
}
.cards.cards--simple .cards__item .cards__title {
  font-weight: 500;
}
.cards.cards--simple .cards__item:hover .cards__content {
  border: 1px solid #fff;
}
.cards.cards--simple .cards__content {
  padding: 28px 32px 36px;
  border-left: 1px solid #ccc;
}

.section--marquee {
  position: relative;
  z-index: 15;
  padding-top: 64px;
  padding-bottom: 0;
}
.section--marquee .marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 24px 0;
}
.section--marquee .marquee__list {
  display: flex;
  justify-content: space-around;
  min-width: 2200px;
  -webkit-animation: scroll 36s linear infinite;
  animation: scroll 36s linear infinite;
}
.section--marquee .marquee__item {
  padding-left: 28px;
  transition: all ease-in-out 0.1s;
}
.section--marquee .marquee__item--link:hover {
  opacity: 0.8;
}
.section--marquee .marquee__item--link:hover .marquee__item-wrapper {
  transform: scale(1.04);
}
.section--marquee .marquee__item-wrapper {
  overflow: hidden;
  transition: all ease-in-out 0.4s;
  height: 100%;
  width: auto;
  max-height: 250px;
  min-width: 250px;
  background-color: #f4f4f4;
}
.section--marquee .marquee__item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 250px;
  min-width: 250px;
}
.section--marquee .marquee__item-title {
  display: none;
}
.section--marquee .marquee--ltr .marquee__list {
  -webkit-animation: scrollLTR 36s linear infinite;
  animation: scrollLTR 36s linear infinite;
}
.section--marquee .marquee--rtl .marquee__list {
  -webkit-animation: scroll 36s linear infinite;
  animation: scroll 36s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scrollLTR {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1366px) {
  .section--marquee .marquee__list {
    min-width: 1800px;
  }
  .section--marquee .marquee__item {
    padding-left: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .section--marquee {
    padding-top: 36px;
  }
  .section--marquee .marquee__list {
    min-width: 1500px;
  }
}
@media only screen and (max-width: 768px) {
  .section--marquee {
    padding-top: 20px;
  }
  .section--marquee .marquee__list {
    min-width: 1300px;
  }
}
@media only screen and (max-width: 500px) {
  .section--marquee .marquee__list {
    min-width: 1300px;
  }
  .section--marquee {
    padding-top: 16px;
  }
}
.section--hero.centered {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 100px 0 0 0;
}
.section--hero.centered::before {
  content: "";
  position: absolute;
  display: block;
  height: 306px;
  width: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background: rgb(6, 6, 6);
  background: linear-gradient(0deg, rgb(6, 6, 6) 0%, rgba(6, 6, 6, 0) 100%);
  opacity: 1;
}

.hero-block__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 30;
}
.hero-block__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-block__content {
  position: relative;
  z-index: 60;
  padding-bottom: 42px;
}
.hero-block__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto;
}
.hero-block__content-buttons-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-block__content h2 {
  font-size: 82px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.9);
}
.hero-block__content p {
  color: #fff;
  font-size: 20px;
  font-family: var(--main-font-family);
  line-height: 1.3;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.9);
}
.hero-block__image {
  position: absolute;
  bottom: 0;
  z-index: 40;
  max-width: 1024px;
  margin: 0 auto;
}

.section--hero {
  height: 812px;
}

.services__row {
  display: flex;
  flex-wrap: wrap;
}
.services .service-item {
  width: 100%;
}
.services .service-item__wrapper {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.services .service-item__button-wrapper {
  display: flex;
  height: 100%;
  align-items: end;
}
.services .service-item__button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  margin-top: 28px;
  transition: all ease-out 0.2s;
}
.services .service-item__button:hover {
  transform: translateY(-4px);
}
.services .service-item__label {
  background-color: #000;
  color: #fff;
  position: absolute;
  top: -14px;
  right: 32px;
  padding: 2px 12px 4px;
  border-radius: 10px;
  font-size: 14px;
}
.services .service-item__title {
  font-weight: 500;
  line-height: 1.3;
  font-size: 18px;
}
.services .service-item__description {
  margin-top: 6px;
}
.services .service-item__description p {
  line-height: 1.3;
  font-size: 16px;
}
.services .service-item__price {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}
.services .service-item__payment-period {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-left: -4px;
}
.services .service-item__list {
  padding: 24px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.services .service-item__list-item {
  display: block;
  position: relative;
  padding-left: 28px;
  width: 100%;
}
.services .service-item__list-item-icon {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  font-size: 0;
}
.services .service-item__list-item-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%);
  mask-image: url(../images/icons/services-item.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.services .service-item__list-item-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.services .service-item--dark .service-item__wrapper .service-item__title {
  color: #fff;
}
.services .service-item--dark .service-item__wrapper .service-item__description {
  color: #fff;
  opacity: 0.7;
}
.services .service-item--dark .service-item__wrapper .service-item__list {
  border-color: rgba(255, 255, 255, 0.7);
}
.services .service-item--dark .service-item__wrapper .service-item__list .service-item__list-item p {
  color: #fff;
}
.services .service-item--dark .service-item__wrapper .service-item__list .service-item__list-item::after {
  background-color: rgba(255, 255, 255, 0.9);
}
.services--style-1 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-1 .service-item__wrapper .service-item__payment {
  order: 2;
}
.services--style-1 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-1 .service-item__wrapper .service-item__list {
  order: 4;
}
.services--style-1 .service-item__wrapper .service-item__button-wrapper {
  order: 5;
}
.services--style-2 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-2 .service-item__wrapper .service-item__payment {
  order: 2;
}
.services--style-2 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-2 .service-item__wrapper .service-item__list {
  order: 5;
}
.services--style-2 .service-item__wrapper .service-item__button-wrapper {
  order: 4;
  height: auto;
}
.services--style-2 .service-item__wrapper .service-item__button-wrapper .service-item__button {
  margin-top: 20px;
}
.services--style-3 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-3 .service-item__wrapper .service-item__payment {
  order: 2;
}
.services--style-3 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-3 .service-item__wrapper .service-item__list {
  order: 4;
}
.services--style-3 .service-item__wrapper .service-item__list .service-item__list-item::after {
  content: "";
  display: block;
  width: calc(100% + 28px);
  height: 1px;
  background-color: #000;
  margin-top: 10px;
  bottom: 1px;
  position: relative;
  left: -28px;
  opacity: 0.1;
}
.services--style-3 .service-item__wrapper .service-item__list .service-item__list-item:last-child::after {
  display: none;
}
.services--style-3 .service-item__wrapper .service-item__button-wrapper {
  order: 5;
}
.services--style-4 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-4 .service-item__wrapper .service-item__payment {
  order: 2;
}
.services--style-4 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-4 .service-item__wrapper .service-item__list {
  order: 5;
  padding-bottom: 0;
}
.services--style-4 .service-item__wrapper .service-item__list .service-item__list-item::after {
  content: "";
  display: block;
  width: calc(100% + 28px);
  height: 1px;
  background-color: #000;
  margin-top: 10px;
  bottom: 1px;
  position: relative;
  left: -28px;
  opacity: 0.1;
}
.services--style-4 .service-item__wrapper .service-item__list .service-item__list-item:last-child::after {
  display: none;
}
.services--style-4 .service-item__wrapper .service-item__button-wrapper {
  order: 4;
  height: auto;
}
.services--style-4 .service-item__wrapper .service-item__button-wrapper .service-item__button {
  margin-top: 20px;
}
.services--style-5 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-5 .service-item__wrapper .service-item__payment {
  order: 2;
}
.services--style-5 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-5 .service-item__wrapper .service-item__list {
  order: 4;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 24px;
}
.services--style-5 .service-item__wrapper .service-item__button-wrapper {
  order: 5;
}
.services--style-6 .service-item__wrapper {
  align-items: flex-start;
}
.services--style-6 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-6 .service-item__wrapper .service-item__payment {
  order: 2;
  line-height: 1;
  padding: 6px 20px 8px;
  background-color: #ededed;
  display: inline-block;
  width: auto;
  border-radius: 42px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.services--style-6 .service-item__wrapper .service-item__payment .service-item__price {
  font-size: 28px;
}
.services--style-6 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-6 .service-item__wrapper .service-item__list {
  order: 4;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 24px;
  width: 100%;
}
.services--style-6 .service-item__wrapper .service-item__button-wrapper {
  order: 5;
  width: 100%;
}
.services--style-7 .service-item__wrapper {
  align-items: flex-start;
}
.services--style-7 .service-item__wrapper .service-item__title {
  order: 1;
}
.services--style-7 .service-item__wrapper .service-item__payment {
  order: 2;
  line-height: 1;
  padding: 6px 20px 8px;
  background-color: #ededed;
  display: inline-block;
  width: auto;
  border-radius: 42px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.services--style-7 .service-item__wrapper .service-item__payment .service-item__price {
  font-size: 28px;
}
.services--style-7 .service-item__wrapper .service-item__description {
  order: 3;
}
.services--style-7 .service-item__wrapper .service-item__list {
  order: 5;
  width: 100%;
  padding-bottom: 0;
}
.services--style-7 .service-item__wrapper .service-item__list .service-item__list-item::after {
  content: "";
  display: block;
  width: calc(100% + 28px);
  height: 1px;
  background-color: #000;
  margin-top: 10px;
  bottom: 1px;
  position: relative;
  left: -28px;
  opacity: 0.1;
}
.services--style-7 .service-item__wrapper .service-item__list .service-item__list-item:last-child::after {
  display: none;
}
.services--style-7 .service-item__wrapper .service-item__button-wrapper {
  order: 4;
  width: 100%;
  height: auto;
}

.before-after-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -24px;
  margin-left: -24px;
}
.before-after-list > * {
  padding-left: 24px;
  padding-top: 24px;
}
.before-after-list .before-after {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.before-after-list .before-after__title {
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .before-after-list .before-after {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.before-after-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-height: 600px;
}
.before-after-wrapper .before-image-wrapper img,
.before-after-wrapper .after-image-wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: left;
}
.before-after-wrapper .before-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.before-after-wrapper .before-image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-width: inherit;
  filter: grayscale(1);
}
.before-after-wrapper .slider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.before-after-wrapper .resize-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Initial value */
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.before-after-wrapper .slider-label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transition: box-shadow ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
.before-after-wrapper .slider-label__text.left {
  min-width: 80px;
  text-align: right;
  font-weight: 500;
}
.before-after-wrapper .slider-label__text.right {
  min-width: 80px;
  text-align: left;
  font-weight: 500;
}
.steps-container {
  position: relative;
  padding: 40px 0;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
}

.step-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
  padding: 52px 0;
}

.step-content {
  background-color: rgba(9, 9, 9, 0.4);
  padding: 32px 36px;
  width: 42%;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1215686275);
  opacity: 0.2;
  transition: all ease-in-out 0.2s;
  filter: blur(4px);
}

.step-item.active .step-content {
  opacity: 1;
  filter: blur(0);
}

.step-content h3 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.step-content p {
  margin: 0;
  color: #898989;
  line-height: 1.4;
}

.step-item.left {
  text-align: right;
  justify-content: flex-start;
}

.step-item.right {
  text-align: left;
  justify-content: flex-end;
}

.step-marker {
  position: absolute;
  z-index: 2;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.marker-icon-svg {
  transition: all ease-in-out 0.2s;
  height: 20px;
  width: 20px;
}

.marker-icon-svg::after {
  content: "";
  display: inline-block;
  background: #fff;
  mask-image: url(../images/icons/step-check.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  width: 20px;
  height: 20px;
  position: relative;
  transition: all ease-in-out 0.2s;
}

.step-marker.active .marker-icon-svg::after {
  background: #000;
}

.step-marker .marker-icon {
  background-color: var(--body-background);
  border: 2px solid rgba(255, 255, 255, 0.4196078431);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
}

.step-marker.active .marker-icon {
  background-color: #48EA9F;
  border: 2px solid #48EA9F;
  box-shadow: 0 0 54px 0px rgb(72, 234, 159), 0 0 18px 2px rgba(146, 239, 197, 0.3);
}

.step-marker.active span {
  color: #fff;
}

.marker-text {
  position: absolute;
  left: -78px;
  line-height: 1;
  top: 50%;
  transform: translateY(-35%);
  color: rgba(255, 255, 255, 0.5019607843);
}

.step-item.right .marker-text {
  left: -78px;
}

.step-item.left .marker-text {
  right: -78px;
}

.step-line {
  position: absolute;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.4196078431);
  height: 100%;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.step-item:first-child .step-line {
  height: 128px;
}

.step-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.step-line::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  max-height: 0;
  background-color: #48EA9F;
  border-radius: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease-in-out 0.3s;
}

.step-line.active::after {
  max-height: 400px;
  box-shadow: 0 0 54px 0px rgba(72, 234, 159, 0.8), 0 0 18px 2px rgba(146, 239, 197, 0.7);
}

@media screen and (max-width: 768px) {
  .step-item {
    flex-direction: column;
  }
  .step-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .step-line {
    display: none;
  }
}
.section--testimonials .row--testimonials {
  margin-bottom: 32px;
}
.section--testimonials .row--testimonials .col-auto {
  flex: 1;
}
.section--testimonials .row--testimonials .col-arrows {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.section--testimonials .row--testimonials .col-arrows .testimonials-arrows .slick-arrow {
  font-size: 0;
  width: 100px;
  height: 70px;
  border: none;
  border-radius: 40px;
  background-color: #f6faff;
  cursor: pointer;
  background: #f6faff url(../images/arrow.svg) no-repeat center center;
  background-size: 30px;
  transition: all ease-in-out 0.3s;
}
.section--testimonials .row--testimonials .col-arrows .testimonials-arrows .slick-arrow.slick-prev {
  margin-right: 10px;
  transform: rotate(-180deg);
}
.section--testimonials .row--testimonials .col-arrows .testimonials-arrows .slick-arrow.slick-prev:hover {
  background-color: #f6faff;
}
.section--testimonials .row--testimonials .col-arrows .testimonials-arrows .slick-arrow.slick-next:hover {
  background-color: #f6faff;
}
@media only screen and (max-width: 768px) {
  .section--testimonials .row--testimonials .col-arrows {
    flex: 0 0 100%;
  }
}
.section--testimonials .title {
  font-size: 68px;
  line-height: 0.98;
  text-align: left;
  max-width: 532px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  .section--testimonials .title {
    font-size: 42px;
    margin-bottom: 46px;
  }
}
.section--testimonials .description {
  font-size: 16px;
  text-align: left;
  color: #6F6F6F;
  max-width: 690px;
  margin: 0 auto 0 0;
}
.section--testimonials .testimonials-slider {
  display: flex;
}
.section--testimonials .testimonials-slider .slick-track {
  padding: 24px 0;
}
.section--testimonials .testimonials-slider .testimonial-item {
  background-color: #F9FBFE;
  border-radius: 32px;
  padding: 28px 32px 36px;
  margin: 0 12px;
  transition: all ease-in-out 0.4s;
}
.section--testimonials .testimonials-slider .testimonial-item__title {
  font-size: 26px;
  line-height: 1.2;
  margin: 4px 0 2px;
}
.section--testimonials .testimonials-slider .testimonial-item__description {
  margin-top: 16px;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}
.section--testimonials .testimonials-slider .testimonial-item__description svg {
  position: absolute;
  left: 0px;
  top: -12px;
  z-index: 0;
}
.section--testimonials .testimonials-slider .testimonial-item__description span {
  font-size: 16px;
  color: #323232;
  line-height: 1.3;
  position: relative;
}
.section--testimonials .testimonials-slider .testimonial-item__rating svg {
  max-width: 110px;
}
.section--testimonials .testimonials-slider .testimonial-item__location {
  font-size: 16px;
  color: #6479A3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section--testimonials .testimonials-slider .testimonial-item__location svg {
  margin-right: 4px;
}
.section--testimonials .testimonials-slider .testimonial-item:hover {
  transform: scale(1.02);
}
.section--testimonials .slick-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.section--testimonials .slick-dots li button {
  background: #e9e9e9;
  border: none;
  font-size: 0;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  border: none;
}
.section--testimonials .slick-dots li.slick-active button {
  background: #a0a0a0;
}

.testimonials {
  position: relative;
}
.testimonials__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -32px;
  margin-top: -32px;
}
.testimonials__col {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.testimonials .testimonial-item {
  padding-left: 32px;
  padding-top: 32px;
}
.testimonials .testimonial-item__separator {
  content: "";
  position: relative;
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 24px 0;
  transition: all ease-in-out 0.3s;
  opacity: 0.5;
}
.testimonials .testimonial-item__description {
  position: relative;
}
.testimonials .testimonial-item__description svg {
  position: absolute;
  opacity: 0.3;
  top: -12px;
  left: -18px;
}
.testimonials .testimonial-item__wrapper {
  padding: 42px 32px 32px 32px;
  border: 1px solid #ccc;
  transition: all ease-in-out 0.2s;
}
.testimonials .testimonial-item__title {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: -4px;
  font-weight: 500;
}
.testimonials .testimonial-item__company {
  color: var(--accent-color);
  font-size: 14px;
  line-height: 1.2;
}
.testimonials .testimonial-item__before-after {
  margin-bottom: 32px;
}
.testimonials .testimonial-item__before-after .before-after .before-after-wrapper {
  border-radius: 18px;
}
.testimonials .testimonial-item__before-after .before-after .before-after-wrapper .after-image-wrapper img {
  max-height: 210px;
}
.testimonials .testimonial-item__before-after .before-after .before-after-wrapper .before-image-wrapper .resize-overlay img {
  max-height: 210px;
}
.testimonials .testimonial-item__before-after .before-after .before-after-wrapper .slider-label {
  position: absolute;
  bottom: 20px;
  width: 42px;
  height: 42px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  padding: 8px 8px;
  border-radius: 12px;
  color: #000;
  user-select: none;
  display: flex;
  gap: 36px;
  transition: box-shadow ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
.testimonials .testimonial-item__before-after .before-after .before-after-wrapper .slider-label img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonials__slider .slick-list {
  margin-left: -12px;
  margin-right: -12px;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.testimonials__slider .testimonial-item {
  padding: 0 12px;
  transition: all ease-in-out 0.2s;
}
.testimonials__slider .testimonial-item .testimonial-item__wrapper {
  filter: blur(2px);
}
.testimonials__slider .testimonial-item.slick-center .testimonial-item__wrapper {
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 2px 20px -18px #000;
  filter: blur(0);
}
@media only screen and (max-width: 600px) {
  .testimonials__slider .testimonial-item {
    padding: 0 42px;
  }
}
.testimonials__slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 0;
  display: block;
  background-color: rgb(0, 0, 0);
  border: 1px solid #000;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.testimonials__slider .slick-arrow::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  background-color: #fff;
  mask-image: url(../images/icons/slick-next.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
.testimonials__slider .slick-arrow.slick-next {
  right: 24px;
}
.testimonials__slider .slick-arrow.slick-prev {
  left: 24px;
}
.testimonials__slider .slick-arrow.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.testimonials-arrows {
  max-width: 1024px;
  width: 100%;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% + 24px);
}
.testimonials-arrows .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 0;
  display: block;
  background-color: rgb(0, 0, 0);
  border: 1px solid #000;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.testimonials-arrows .slick-arrow::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  background-color: #fff;
  mask-image: url(../images/icons/slick-next.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
.testimonials-arrows .slick-arrow.slick-next {
  right: 24px;
}
.testimonials-arrows .slick-arrow.slick-prev {
  left: 24px;
}
.testimonials-arrows .slick-arrow.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.testimonials-arrows .slick-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}
@media only screen and (max-width: 600px) {
  .testimonials-arrows {
    top: 68px;
    max-width: 204px;
  }
}

.section--testimonials > .container {
  padding: 0;
}
.section--testimonials > .container > .testimonials {
  padding-top: 48px;
}
@media only screen and (max-width: 600px) {
  .section--testimonials > .container > .testimonials {
    padding-top: 120px !important;
  }
}

.list {
  display: inline-block;
  margin: 36px 0 0;
}
.list .list-item {
  font-size: var(--main-font-size) px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}
.list .list-item--center {
  align-items: center;
}
.list .list-item__label-mask {
  content: "";
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #000;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.list .list-item__label {
  width: 46px;
  height: 46px;
  font-size: var(--main-font-size) px;
  color: #000;
  background-color: var(--accent-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex: 0 0 46px;
}
.list .list-item__label > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list .list-item__label--check {
  background-color: transparent;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
}
.list .list-item__label--check .list-item__label-mask {
  width: 20px;
  height: 20px;
  background-color: #2CD7B4;
}
.list .list-item h3.list-item__title {
  font-size: 20px;
  line-height: 1.2;
}
.list .list-item__description {
  max-width: 440px;
  margin-top: 2px;
  font-size: 16px;
  color: #333333;
}
.list .list-item p {
  margin-top: 0 !important;
  display: inline-block;
  line-height: 1.2;
}
.list .list-item:last-child {
  margin-bottom: 0;
}

.selected-posts {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -24px;
}
.selected-posts > * {
  padding-left: 24px;
  padding-top: 24px;
}
.selected-posts .post-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.selected-posts .post-item__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  flex: 1;
}
.selected-posts .post-item__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.selected-posts .post-item__image {
  height: 260px;
  display: block;
  position: relative;
  overflow: hidden;
}
.selected-posts .post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.selected-posts .post-item__image:hover img {
  transform: scale(1.04);
}
@media only screen and (max-width: 1366px) {
  .selected-posts .post-item__image {
    height: 220px;
  }
}
.selected-posts .post-item__title {
  transition: all ease-in-out 0.1s;
}
.selected-posts .post-item__title > * {
  font-weight: 600;
  line-height: 1.3;
  font-size: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1366px) {
  .selected-posts .post-item__title > * {
    font-size: 18px;
  }
}
.selected-posts .post-item__title:hover {
  opacity: 0.5;
}
.selected-posts .post-item__excerpt {
  line-height: 1.4;
  color: #646464;
  font-size: 16px;
  margin-bottom: 24px;
  flex: 1;
}
@media only screen and (max-width: 1366px) {
  .selected-posts .post-item__excerpt {
    font-size: 14px;
  }
}
.selected-posts .post-item__link {
  font-size: 16px;
  position: relative;
  padding-right: 36px;
  color: var(--accent-color);
  transition: all ease-in-out 0.1s;
}
.selected-posts .post-item__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-42%);
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  mask-image: url(../images/icons/icon-right.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.selected-posts .post-item__link:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1366px) {
  .selected-posts .post-item__link {
    font-size: 14px;
  }
}
.selected-posts .post-item__date {
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 8px 12px;
  line-height: 1.3;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  bottom: 0;
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .selected-posts .post-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .selected-posts .post-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.recent-posts {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -24px;
}
.recent-posts > * {
  padding-left: 24px;
  padding-top: 24px;
}
.recent-posts .post-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.recent-posts .post-item__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  align-items: flex-start;
  flex: 1;
}
.recent-posts .post-item__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.recent-posts .post-item__image {
  height: 260px;
  display: block;
  position: relative;
}
.recent-posts .post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.recent-posts .post-item__image:hover img {
  transform: scale(1.04);
}
.recent-posts .post-item__title {
  transition: all ease-in-out 0.1s;
}
.recent-posts .post-item__title > * {
  font-weight: 600;
  line-height: 1.3;
  font-size: 20px;
  margin-bottom: 8px;
}
.recent-posts .post-item__title:hover {
  opacity: 0.5;
}
.recent-posts .post-item__excerpt {
  line-height: 1.4;
  color: #646464;
  font-size: 16px;
  margin-bottom: 24px;
  flex: 1;
}
.recent-posts .post-item__link {
  font-size: 16px;
  position: relative;
  padding-right: 36px;
  color: var(--accent-color);
  transition: all ease-in-out 0.1s;
}
.recent-posts .post-item__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-42%);
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  mask-image: url(../images/icons/icon-right.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.recent-posts .post-item__link:hover {
  opacity: 0.5;
}
.recent-posts .post-item__date {
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 8px 12px;
  line-height: 1.3;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  bottom: 0;
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .recent-posts .post-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .recent-posts .post-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.block-map iframe {
  width: 100% !important;
}
@media only screen and (max-width: 1366px) {
  .block-map iframe {
    max-height: 400px;
  }
}

.block-location .locations-list__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -36px;
  margin-top: -36px;
}
.block-location .locations-list__row > * {
  padding-left: 36px;
  padding-top: 36px;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .block-location .locations-list__row {
    margin-left: -24px;
    margin-top: -24px;
  }
  .block-location .locations-list__row > * {
    padding-left: 24px;
    padding-top: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .block-location .locations-list__row > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .block-location .location-item {
    display: flex;
    flex-direction: column;
  }
}
.block-location .location-item__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -32px;
  margin-top: -32px;
}
.block-location .location-item__wrapper > * {
  padding-left: 32px;
  padding-top: 32px;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .block-location .location-item__wrapper {
    margin-left: 0;
    margin-top: 0;
    flex-direction: column;
    flex: 1;
  }
  .block-location .location-item__wrapper > * {
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
  }
}
.block-location .location-item__content {
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .block-location .location-item__content {
    flex: 1;
  }
}
.block-location .location-item__content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  background-color: #fff;
  padding: 32px;
}
@media only screen and (max-width: 1024px) {
  .block-location .location-item__content-wrapper {
    padding: 24px 24px 30px 24px;
    justify-content: flex-start;
  }
}
.block-location .location-item__slick {
  position: relative;
}
.block-location .location-item__slick .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 0;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 0;
  background-color: #fff;
  transition: all ease-in-out 0.1s;
  opacity: 0;
  mask-image: url(../images/icons/slick-next.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  cursor: pointer;
}
.block-location .location-item__slick .slick-arrow.slick-prev {
  left: 0;
  transform: translateY(-50%) rotate(-180deg);
}
.block-location .location-item__slick .slick-arrow.slick-next {
  right: 0;
}
.block-location .location-item__image {
  height: 220px;
}
.block-location .location-item__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.block-location .location-item__title {
  font-weight: 600;
  font-size: var(--h3-size);
  line-height: 1.3;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1366px) {
  .block-location .location-item__title {
    margin-bottom: 0;
    font-size: 20px;
  }
}
.block-location .location-item__description {
  line-height: 1.4;
  color: #666;
}
@media only screen and (max-width: 1366px) {
  .block-location .location-item__description {
    font-size: 16px;
  }
}
.block-location .location-item:hover .location-item__slick .slick-arrow {
  opacity: 1;
}

.section--values {
  padding: 100px 0 100px;
  background-color: #F6F5F3;
}
.section--values .title {
  font-size: 58px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 52px;
  font-weight: 500;
}
.section--values .values-wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.section--values .values-item {
  width: 100%;
  max-width: 33%;
  flex: 0 0 33%;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.section--values .values-item__content {
  padding: 42px 52px 64px;
  max-width: 100%;
  margin: auto;
  transition: all ease-in-out 0.2s;
  height: 100%;
}
.section--values .values-item:hover {
  border-color: transparent;
}
.section--values .values-item:hover .values-item__content {
  background-color: #fff;
  box-shadow: 0 2px 20px -18px #000;
}
.section--values .values-item:hover .values-item__img {
  background: var(--accent-color);
}
.section--values .values-item__image {
  display: flex;
  justify-content: center;
}
.section--values .values-item__image img {
  height: 100px;
}
.section--values .values-item__title {
  font-size: 28px;
  text-align: center;
  color: #111;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 500;
}
.section--values .values-item__description {
  font-size: 16px;
  text-align: center;
  color: #808080;
  line-height: 1.4;
  margin: auto;
}
.section--values .values-item__image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.section--values .values-item__img {
  content: "";
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
  background: var(--main-font-color);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
}
.section--values .values-item__separator {
  width: 1px;
  background-color: #ccc;
}
@media only screen and (max-width: 1366px) {
  .section--values .title {
    font-size: 56px;
  }
  .section--values .values-item__content {
    padding: 34px 32px 42px;
  }
  .section--values .values-item__image img {
    height: 76px;
  }
  .section--values .values-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .section--values .title {
    font-size: 38px;
  }
  .section--values .values-item {
    max-width: 100%;
    flex: 0 0 100%;
    border-bottom: 1px solid #C2C2C2;
  }
  .section--values .values-item:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 500px) {
  .section--values .values-item {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 0 52px;
  }
}

.section--projects .row {
  margin-left: -64px;
  margin-top: -64px;
}
.section--projects .row > * {
  padding-left: 64px;
  padding-top: 64px;
}
.section--projects .projects__info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section--projects .projects__info-wrapper .title {
  font-size: var(--h2-size);
  line-height: 1;
  font-weight: 600;
}
.section--projects .projects__info-wrapper .description {
  font-size: var(--main-font-size) px;
  margin-top: 20px;
  color: var(--main-font-color);
}
.section--projects .projects__info-wrapper .btn {
  display: flex;
  justify-content: flex-start;
  margin-top: 72px;
}
.section--projects .projects__content {
  position: sticky;
  top: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section--projects .projects__list {
  display: flex;
  flex-direction: column;
}
.section--projects .project-item {
  position: sticky;
  top: 0;
}
.section--projects .project-item__image {
  height: 100svh;
  overflow: hidden;
}
.section--projects .project-item__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section--projects .project-item__card {
  position: absolute;
  bottom: 200px;
  left: 64px;
  max-width: 586px;
  width: 100%;
  padding: 22px 28px 32px;
  background-color: rgba(88, 85, 75, 0.6);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--accent-color);
}
.section--projects .project-item__location {
  color: var(--accent-color);
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.3);
}
.section--projects .project-item__title {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
  margin-top: 4px;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.3);
}
.section--projects .project-item__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.3);
}
.section--projects .projects-grid {
  display: grid;
  grid-template-columns: [left-side-start] 1fr [left-side-end] 0 [right-side-start] 1fr [right-side-end];
  grid-template-rows: auto;
}
.section--projects .projects-grid.projects-right .projects__info {
  grid-column: right-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: [content-start] var(--grid-container-split) [content-end] 1fr;
  grid-template-rows: auto;
}
.section--projects .projects-grid.projects-right .projects__info-wrapper {
  grid-column: content;
  padding: 200px var(--container-pad) 0 112px;
}
.section--projects .projects-grid.projects-right .projects__list {
  grid-column: left-side;
  grid-row: 1/2;
}
.section--projects .projects-grid.projects-left .projects__info {
  grid-column: left-side;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr [content-start] var(--grid-container-split) [content-end];
  grid-template-rows: auto;
}
.section--projects .projects-grid.projects-left .projects__info-wrapper {
  grid-column: content;
  padding: 200px 112px 0 var(--container-pad);
}
.section--projects .projects-grid.projects-left .projects__list {
  grid-column: right-side;
  grid-row: 1/2;
}
@media only screen and (max-width: 1366px) {
  .section--projects .projects-grid {
    display: flex;
  }
  .section--projects .projects-grid.projects-left {
    display: flex;
  }
  .section--projects .projects-grid.projects-left .projects__info {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section--projects .projects-grid.projects-left .projects__info-wrapper {
    padding: 0 var(--container-pad) 100px;
  }
  .section--projects .projects-grid.projects-left .projects__info-wrapper .btn {
    margin-top: 42px;
  }
}
@media only screen and (max-width: 1366px) and (max-width: 1024px) {
  .section--projects .projects-grid.projects-left .projects__info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1366px) {
  .section--projects .projects-grid.projects-left .projects__list {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 1366px) and (max-width: 1024px) {
  .section--projects .projects-grid.projects-left .projects__list {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1366px) {
  .section--projects .projects-grid.projects__list {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section--projects .project-item__title {
    font-size: 28px;
  }
  .section--projects .project-item__card {
    top: 84px;
    bottom: auto;
    left: 32px;
    padding-bottom: 38px;
    max-width: calc(100% - 64px);
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .section--projects {
    padding-bottom: 0;
  }
  .section--projects .projects-grid {
    flex-direction: column;
  }
  .section--projects .projects-grid.projects-left .projects__info {
    display: flex;
  }
  .section--projects .projects-grid.projects-left .projects__info-wrapper {
    padding: 0 var(--container-pad) 100px;
  }
  .section--projects .projects-grid.projects-left .projects__info-wrapper .btn {
    margin-top: 42px;
  }
  .section--projects .projects-grid.projects-left .projects__list {
    display: flex;
    flex-direction: column;
  }
  .section--projects .project-item__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .section--projects .project-item__title {
    font-size: 28px;
  }
  .section--projects .project-item__card {
    left: 20px;
    padding-bottom: 38px;
    max-width: calc(100% - 40px);
    width: 100%;
  }
}

.block--team > .flexy__row > .wrapper__col > .wrapper {
  background-color: var(--light-wrapper-background) !important;
  padding: 20px;
  position: relative;
  transition: all ease-in-out 0.3s;
}
.block--team > .flexy__row > .wrapper__col > .wrapper figure {
  max-width: 190px;
  margin: auto auto 12px;
}
.block--team > .flexy__row > .wrapper__col > .wrapper figure img {
  position: relative;
  transition: all ease-in-out 0.4s;
}
.block--team > .flexy__row > .wrapper__col > .wrapper h3 {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  font-weight: 600;
}
.block--team > .flexy__row > .wrapper__col > .wrapper p {
  font-size: 16px;
  margin-top: 0;
  text-align: center;
  color: var(--accent-color);
}
.block--team > .flexy__row > .wrapper__col > .wrapper:hover {
  position: relative;
  transform: scale(1.03);
}
.block--team > .flexy__row > .wrapper__col > .wrapper:hover figure img {
  transform: rotate(3deg);
}

.section--introduction.section--two-sides {
  padding-top: 0;
  padding-bottom: 0;
}
.section--introduction.section--two-sides .image {
  margin-top: -124px;
  border: 20px solid #fff;
}
@media only screen and (max-width: 1024px) {
  .section--introduction.section--two-sides .image {
    margin-top: 0;
  }
}
.section--introduction.section--two-sides .content {
  padding: 100px 0 128px;
  justify-content: flex-start;
}
@media only screen and (max-width: 1024px) {
  .section--introduction.section--two-sides .content {
    padding: 100px 0 0;
  }
}

@media only screen and (max-width: 1024px) {
  .section--block > .container > .flexy > .flexy__row > .wrapper__col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ==========================================================================
   SCSS Styles [PARTIALS:LIGHTBOX]
   ========================================================================== */
.header {
  padding: 16px 0;
}

.header-phone > a {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 8px;
  height: 32px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 14px;
  transition: all ease-in-out 0.2s;
}
.header-phone > a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-color: var(--accent-color);
  mask-image: url(../images/icons/telephone-icon.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.header-phone > a:hover {
  background-color: #f4f4f4;
}

.section--before-footer .contact-form {
  margin-top: 42px;
}

.section--two-sides.simple .content__wrapper h2,
.section--two-sides.simple .content__wrapper h3 {
  font-weight: 600;
}

.slider-item > .container > .row {
  margin-top: -64px;
  margin-left: -64px;
}
.slider-item > .container > .row > * {
  padding-top: 64px;
  padding-left: 64px;
}

/*# sourceMappingURL=bundle.css.map */
