/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  /* Typography */
  --fs-h1: clamp(32px, 4vw, 40px);
  --fs-h2: clamp(26px, 4vw, 40px);
  --fs-h3: clamp(26px, 3.25vw, 30px);
  --fs-h4: clamp(24px, 2.5vw, 25px);
  --fs-h5: clamp(18px, 2vw, 20px);
  --fs-h6: clamp(16px, 1.8vw, 20px);
  --fs-p: clamp(16px, 1.8vw, 20px);
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 700;
  --fw-bold: 800;
  --ff-primary: "Raleway", sans-serif;
  --ff-secondary: "Poppins", sans-serif;

  /* Colors */
  --color-primary: #d60e14;
  --color-accent: #d60e14;
  --color-text: #000;
  --color-light-gray: #f4f4f4;
  --color-light-blue: #f3f6f9;
  --color-white: #fff;
  --color-overlay: rgba(80 80 80 / 70%);
}

/* ==========================================================================
   AlpineJS load fix
   ========================================================================== */
[x-cloak] {
  display: none !important;
}

/* ==========================================================================
   Editor style fixes
   ========================================================================== */
.acf-block-preview > section {
  z-index: 0;
  display: flex;
}
section img {
  height: 100%;
}

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE6/7/8/9 & FF3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/*
 * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
 * Known issue: no IE6 support.
 */
[hidden] {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* 1 */

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: var(--ff-primary);
}
/*
 * Addresses margins handled incorrectly in IE6/7.
 */
body {
  margin: 0;
  font-size: var(--fs-p);
}
/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a {
  color: var(--color-accent);
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}
/*
 * Improves readability when focused and also mouse hovered in all browsers.
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:active,
a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE6/7.
 * Addresses font sizes within `section` and `article` in FF4+, Chrome, S5.
 */

h1 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  margin-bottom: 0.67em;
  margin-top: 0;
}
h2 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: 0.83em;
  margin-top: 0;
}
h3 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: 1em;
  margin-top: 0;
}
h4 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 0.5rem;
  margin-top: 0;
}
h5 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  margin-bottom: 1.67em;
  margin-top: 0;
}
h6 {
  font-family: var(--ff-primary);
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  margin-bottom: 2.33em;
  margin-top: 0;
}
p {
  font-family: var(--ff-primary);
  font-size: var(--fs-p);
  font-weight: var(--fw-normal);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  margin-top: 0;
}

.font-light {
  font-family: var(--ff-primary);
  font-weight: var(--fw-light);
}
.font-medium {
  font-family: var(--ff-primary);
  font-weight: var(--fw-medium);
}
.font-semibold {
  font-family: var(--ff-primary);
  font-weight: var(--fw-semibold);
}
.font-semibol {
  font-family: var(--ff-primary);
  font-weight: var(--fw-semibold);
}
.font-bold {
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
}
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
 */
b,
strong {
  font-weight: var(--fw-bold);
}
blockquote {
  margin: 1em 40px;
}
/*
 * Addresses styling not present in S5, Chrome.
 */
dfn {
  font-style: italic;
}
/*
 * Addresses styling not present in IE6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/*
 * Addresses margins set differently in IE6/7.
 */
/* p,
pre {
  margin: 1em 0;
} */
/*
 * Corrects font family set oddly in IE6, S4/5, Chrome.
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}
/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
 * Addresses CSS quotes not supported in IE6/7.
 */
q {
  quotes: none;
}
/*
 * Addresses `quotes` property not supported in S4.
 */
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 75%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1em;
}
dd {
  margin: 0 0 0 40px;
}
/*
 * Addresses paddings set differently in IE6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  font-family: var(--ff-primary);
}

section ul {
  list-style-type: none;
  padding-left: 2px;
}
section li {
  --bullet-size: 12px;
  display: flex;
  align-items: center;
  padding-left: calc(var(--bullet-size) + 10px);
  position: relative;
}

section li:not(:last-child) {
  margin-bottom: 1rem;
}

section li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-color: var(--color-primary);
  height: var(--bullet-size);
  width: var(--bullet-size);
  border-radius: 50px;
}

section p + ul {
  margin-top: -1.25rem;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
 * 2. Improves image quality when scaled in IE7.
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */

  -ms-interpolation-mode: bicubic;
  /* 2 */
}
/*
 * Corrects overflow displayed oddly in IE9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7.
 */
form {
  margin: 0;
}
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/*
 * 1. Corrects color not being inherited in IE6/7/8/9.
 * 2. Corrects text not wrapping in FF3.
 * 3. Corrects alignment displayed oddly in IE6/7.
 */
legend {
  border: 0;
  /* 1 */

  padding: 0;
  white-space: normal;
  /* 2 */

  *margin-left: -7px;
  /* 3 */
}
/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */

  margin: 0;
  /* 2 */

  vertical-align: baseline;
  *vertical-align: middle;
  /* 3 */
}
/*
 * Addresses FF3/4 setting `line-height` on `input` using `!important` in the
 * UA stylesheet.
 */
button,
input {
  line-height: normal;
}
/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */

  cursor: pointer;
  /* 3 */

  *overflow: visible;
  /* 4 */
}
/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * 1. Addresses box sizing set to content-box in IE8/9.
 * 2. Removes excess padding in IE8/9.
 * 3. Removes excess padding in IE7.
 *    Known issue: excess padding remains in IE6.
 */
input[type="checkbox"],
input[type="checkbox"] {
  box-sizing: border-box;
  /* 1 */

  padding: 0;
  /* 2 */

  *height: 13px;
  *width: 13px;
  /* 3 */
}
/*
 * 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in S5, Chrome (include `-moz`
 *    to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */

  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */

  box-sizing: content-box;
}
/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes inner padding and border in FF3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */

  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Contact form 7
   ========================================================================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  width: 100%;
  background: var(--color-light-blue);
  padding: 20px 15px 8px;
  border: none;
  max-width: none;
  display: block;
  font-size: 15px;
  color: #6d6161;
  min-height: 58px;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.wpcf7 br {
  display: none;
}

.wpcf7 {
  margin: 0;
}

.wpcf7 label {
  z-index: 1;
  position: absolute;
  top: calc(50% - 10px);
  left: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  color: #6d6161;
  pointer-events: none;
}

.wpcf7 label.focus {
  top: 5px;
  font-size: 10px;
  font-weight: var(--fw-bold);
}

.wpcf7 .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-form-control.wpcf7-acceptance label.focus {
  font-size: initial;
  font-weight: initial;
  position: relative;
  pointer-events: inherit;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 0;
  position: absolute;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wpcf7-submit {
  margin-top: 2rem;
}

.wpcf7-spinner {
  position: absolute;
}

/* checkbox buttons */
.wpcf7 .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1rem;
}

.wpcf7 input[type="checkbox"] {
  display: none !important;
}

.wpcf7 input[type="checkbox"] + span {
  display: flex !important;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.wpcf7 input[type="checkbox"] + span:before {
  content: "";
  --checkbox-size: 1.4rem;
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  background-color: var(--color-light-blue);
  margin-top: -3px;
  border: 1px solid rgba(0 0 0 / 0.5);
  border-radius: 0.25rem;
}

.wpcf7 input[type="checkbox"]:checked + span:before {
  background-color: var(--color-primary);
}

/* Messages */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: var(--color-light-blue);
  border: none;
  padding: 1rem 2rem;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

*:focus {
  outline: none !important;
}

section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

/* Make Gutenberg Editor Fill Width */
.wp-block {
  max-width: 100%;
}

/* Dropdown toggle activate on hover */
.nav-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
  display: block;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
header * {
  color: inherit;
}

header {
  --dropdown-spacing: 1rem;
  transition: all;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: var(--wp-admin--admin-bar--height);
}

header ul {
  margin: 0;
  padding: 0;
}

header .dropdown-parent {
  padding: var(--dropdown-spacing) 0;
}

.nav-container {
  --spacer: 1rem;
  --spacer-height: 1rem;
}

@media (min-width: 1024px) {
  header .dropdown-child {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 2rem;
    margin-top: var(--dropdown-spacing);
    min-width: 250px;
    box-shadow: 0 10px 40px -10px rgba(0 0 0 / 25%);
  }
  header .dropdown-child > li {
    transform: translateX(0);
    transition: all 0.3s ease;
  }
  header .dropdown-child > li:hover {
    transform: translateX(15px);
    color: var(--color-primary);
  }
}
header .dropdown-parent:hover .dropdown-child {
  display: flex;
}

.nav-actions__container {
  display: flex;
  align-items: center;
  gap: var(--spacer);
  margin-left: var(--spacer);
}
.nav-actions__container:before {
  content: "";
  width: 2px;
  height: var(--spacer-height);
  background-color: var(--color-white);
  transition-duration: 600ms;
}

header.fixed .nav-actions__container:before {
  background-color: var(--color-text);
}

.header-cta__container {
  background-color: var(--color-white);
}

header.fixed .header-cta__container {
  background-color: var(--color-primary);
}

.header-cta__container div:not(:last-child) {
  display: flex;
  align-items: center;
  gap: var(--spacer);
  margin-right: var(--spacer);
}
.header-cta__container div:not(:last-child):after {
  content: "";
  width: 2px;
  height: var(--spacer-height);
  background-color: var(--color-primary);
  display: block;
}

header.fixed .header-cta__container div:not(:last-child):after {
  background-color: var(--color-white);
}

@media (max-width: 1024px) {
  .header-cta__container {
    background-color: var(--color-primary);
  }
  .header-cta__container div:not(:last-child):after {
    background-color: var(--color-white);
  }
}

.mobile-nav__content .header-cta__container a {
  color: var(--color-white);
}

.mobile-nav__content .header-cta__container a:after {
  background-color: var(--color-white);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

/* Container */
.container-outer {
  padding-left: 1rem;
  padding-right: 1rem;
}
.max-w-container {
  max-width: 1396px;
}
.max-w-outer {
  max-width: 1640px;
}

.text-w-xs {
  max-width: 20rem; /* 320px */
}
.text-w-s {
  max-width: 32rem; /* 512px */
}
.text-w-m {
  max-width: 48rem; /* 768px */
}
.text-w-l {
  max-width: 56rem; /* 896px */
}
.text-w-xl {
  max-width: 64rem; /* 1024px */
}

/* Text color */
.color-primary {
  color: var(--color-primary);
}
.color-light-gray {
  color: var(--color-light-gray);
}
.color-light-blue {
  color: var(--color-light-blue);
}
.color-text {
  color: var(--color-text);
}
.color-white {
  color: var(--color-white);
}

/* Background color */
.bg-none {
  background-color: transparent;
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-light-gray {
  background-color: var(--color-light-gray);
}
.bg-light-blue {
  background-color: var(--color-light-blue);
}
.bg-text {
  background-color: var(--color-text);
}
.bg-white {
  background-color: var(--color-white);
}

/* Coloumn background */
.col-bg-none {
  background-color: transparent;
}
.col-bg-primary {
  background-color: var(--color-primary);
}
.col-bg-light-gray {
  background-color: var(--color-light-gray);
}
.col-bg-light-blue {
  background-color: var(--color-light-blue);
}
.col-bg-text {
  background-color: var(--color-text);
}
.col-bg-white {
  background-color: var(--color-white);
}

@media (max-width: 767px) {
  .mobile-col-reverse {
    flex-direction: column-reverse;
  }
}

.section-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  z-index: 0;
}
.section-overlay * {
  z-index: 0;
}
.overlay-red:before {
  background-color: rgba(202 0 6 / 80%);
}

svg.fill-primary {
  fill: var(--color-primary);
}
/* ==========================================================================
   Responsive display
   ========================================================================== */

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

/* ==========================================================================
   Custom CSS
   ========================================================================== */
body > section:nth-of-type(2):not(.column_content_block) {
  padding-top: 0 !important;
}

section div {
  max-width: 100%;
	width: 100%;
}

/* Buttons */
.btn,
.wpcf7-submit {
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: 16px 31px 16px 25px;
  font-weight: var(--fw-semibold);
  border-radius: 0;
  gap: 8px;
  border: 1px solid;
}

@media (max-width: 767px) {
  .btn,
  .wpcf7-submit {
    width: 100%;
    max-width: 350px;
  }
}

.btn:after {
  content: "";
  display: block;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24.877" height="12.248" viewBox="0 0 24.877 12.248"><path id="Icon_metro-arrow-right" data-name="Icon metro-arrow-right" d="M3.973,17.733l5.1-5.1a1.021,1.021,0,0,0,0-1.443l-5.1-5.1A1.021,1.021,0,0,0,2.53,7.526l3.361,3.361H-14.481A1.021,1.021,0,0,0-15.5,11.908a1.021,1.021,0,0,0,1.021,1.021H5.891L2.53,16.29a1.021,1.021,0,0,0,1.443,1.443Z" transform="translate(15.501 -5.784)" fill="%23fff"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 24px;
  height: auto;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.btn:hover:after {
  transform: translateX(8px);
}

.btn-primary,
.btn-primary:hover,
.wpcf7-submit {
  color: var(--color-white);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary,
.btn-secondary:hover {
  color: var(--color-white);
  background-color: transparent;
  border-color: var(--color-white);
}

/* Page header */
.hero-homepage {
  height: 1011px;
  max-height: 85vh;
}

.hero-subpage {
  height: 720px;
  max-height: 85vh;
}

@media (max-width: 767px) {
  .hero-homepage {
    height: unset;
    max-height: unset;
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-subpage {
    height: unset;
    max-height: unset;
    padding-top: 100px;
    padding-bottom: 64px;
  }
}

.hero_background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  z-index: -1;
}

.hero-shape-divider {
  position: absolute;
  display: flex;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  fill: #fff;
  z-index: -1;
}
.hero-shape-divider svg {
  width: 100%;
}

/* Heading divider */
.heading-divider {
  --spacing: 44px;
  height: auto;
  width: auto;
  /* padding-top: var(--spacing); */
  padding-bottom: var(--spacing);
}

/* Service boxes */
@media (max-width: 767px) {
  .services-boxes {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }

  .service-box {
    scroll-snap-align: center;
    min-width: 60%;
  }
}

/* Swiper styles */
.swiper-button__group {
  --swiper-navigation-sides-offset: -40px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--color-text);
}

/* Bullet list */
.bullet__number {
  font-family: var(--ff-secondary);
}

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

@media (max-width: 767px) {
  .swiper-button__group {
    --swiper-navigation-sides-offset: 0;
    position: absolute;
    bottom: -3rem;
    width: 110px;
  }
}


