@font-face {
  font-family: "Mier A";
  src: url("/fonts/MierA-Demi.woff2") format("woff2"), url("/fonts/MierA-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EK Roumald Roman";
  src: url("/fonts/EKRoumald-Roman.woff2") format("woff2"), url("/fonts/EKRoumald-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-font: 'Mier A';
  --heading-font: 'EK Roumald Roman';
  --light: #e3eef4;
  --white: #ffffff;
  --gap:28px;
  --header-height: 88px;
  --grey:#791C45;
  --dark:#171717 ;
  --xs:21px;
  --s:38px;
  --m:65px;
  --l:82px;
  --xl:165px;
  --xxl:190px;
  --xxxl:clamp(100px,248px,29vh);
}

body {
  font-size: 16px;
  font-family: var(--main-font);
  background: var(--light);
  color: var(--dark);
  margin: 0;
  padding: 0;
  line-height: 1.29;
  text-align: center;
  font-weight: 400;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: calc(33.33% - var(--gap) * 0.67);
}

.grid_5 {
  width: 40.9%;
}

.grid_6 {
  width: calc(50% - 11px);
}

.grid_7 {
  width: 57.9%;
}

.w63 {
  width: 63%;
}

.grid_8 {
  width: 70.33%;
}

.grid_9 {
  width: 79.1%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
  display: block;
}

.para {
  overflow: hidden;
}

.white {
  color: #fff !important;
}

.abs-obj, .inner-para {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

img {
  border: none;
  max-width: 100%;
  display: block;
}

a, img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

textarea:focus, input:focus, select:focus {
  outline: none;
}

/* General */
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.reserve {
  flex-direction: row-reverse;
}

.col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

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

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

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

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

.s-a {
  justify-content: space-around;
}

.s-e {
  justify-content: space-evenly;
}

.a-c {
  align-items: center;
}

.a-s {
  align-items: flex-start;
}

.a-e {
  align-items: flex-end;
}

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

.relative {
  position: relative;
  z-index: 1;
}

.absolute {
  position: absolute;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.grey {
  color: var(--grey);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 21.5px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  font-size: 17px;
  line-height: 1;
  background-color: #3C0B12;
  color: var(--light);
  transition: background-color 250ms, color 250ms, opacity 1s, transform 1s !important;
  border: 1px solid #3C0B12;
  font-weight: 400;
}
.btn:hover {
  background: var(--light);
  color: var(--grey);
  border: 1px solid var(--grey);
}
.btn.light {
  background-color: var(--light);
  color: var(--grey);
  border: 1px solid var(--light);
}
.btn.light:hover {
  background: var(--grey);
  color: var(--light);
  border: 1px solid var(--grey);
}

.ptxxxl {
  padding-top: var(--xxxl);
}

.pbxxxl {
  padding-bottom: calc(var(--xxxl) + 52px);
}

.ptxxl {
  padding-top: var(--xxl);
}

.pbxxl {
  padding-bottom: var(--xxl);
}

.ptxl {
  padding-top: var(--xl);
}

.pbxl {
  padding-bottom: var(--xl);
}

.ptl {
  padding-top: var(--l);
}

.pbl {
  padding-bottom: var(--l);
}

.ptm {
  padding-top: var(--m);
}

.pbm {
  padding-bottom: var(--m);
}

.pts {
  padding-top: var(--s);
}

.pbs {
  padding-bottom: var(--s);
}

.ptxs {
  padding-top: var(--xs);
}

.pbxs {
  padding-bottom: var(--xs);
}

.pb130 {
  padding-bottom: 133px;
}

.pt300 {
  padding-top: 300px;
}

.pb150 {
  padding-bottom: 151px;
}

.pb50 {
  padding-bottom: 50px;
}

.pad-r-t1 {
  padding: 101px 0 0 8vw;
}

.pt290 {
  padding-top: 290px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mw485 {
  width: 100%;
  max-width: 485px;
}

.container {
  width: calc(100% - var(--gap) * 2);
  margin: 0 auto;
  position: relative;
}

.img {
  width: 100%;
}

.gap {
  gap: var(--gap);
}

.absolute {
  position: absolute;
}

.full-height {
  height: 100vh;
  height: 100svh;
  padding: 36px var(--gap);
  overflow: hidden;
  color: var(--white);
}

.copy-holder {
  min-height: 100vh;
  padding: 30px 30px clamp(67px, 150px, 19vh) 37px;
  text-align: left;
}
.copy-holder h4 {
  font-size: clamp(27.84px, 61.06px, 4vw);
  text-transform: none;
  line-height: 1;
}
.copy-holder .abs-p {
  position: absolute;
  left: 36px;
  bottom: 37px;
  max-width: 403px;
  z-index: 2;
}

.quate-holder {
  aspect-ratio: 1.5;
  min-height: 100vh;
  text-align: left;
  padding: 89px;
  font-size: 14px;
  gap: 54px;
}
.quate-holder span {
  text-transform: uppercase;
  font-size: 12px;
}

section {
  position: relative;
  background-color: var(--light);
}

.middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

/* Headings */
h1, h2, h3, .title, h4, h5 {
  color: var(--grey);
  font-family: var(--heading-font);
  font-weight: 400;
  text-transform: uppercase;
}

h1, .f77 {
  font-size: clamp(40px, 77.38px, 7vw);
  line-height: 1;
}

h2 {
  font-size: clamp(40px, 116px, 8vw);
  line-height: 0.86em;
}

h3 {
  font-size: 47px;
  line-height: 1;
}

h5 {
  font-size: clamp(21px, 32.9px, 5vw);
  text-transform: none;
  max-width: 877px;
}

.title {
  font-size: clamp(40px, 157px, 10.5dvw);
  line-height: 1;
}

.fadeIn {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.fadeIn.animated {
  opacity: 1;
  transform: translateY(0);
}

.justFade {
  transition: opacity 1s;
  opacity: 0;
  will-change: opacity;
}
.justFade.animated {
  opacity: 1;
}

.delay {
  transition-delay: 0.7s;
}

.line {
  width: 0;
  transition: width 1s;
  background-color: var(--grey);
  position: absolute;
  display: block;
  height: 1px;
}
.line.animated {
  width: 100%;
}

.dark-layer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.semi {
  height: 58%;
  display: flex;
  gap: clamp(30px, 81px, 11vh);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.caption {
  padding-top: 14px;
  font-size: 14px;
  gap: 24px;
  padding-bottom: 4px;
  text-align: left;
}
.caption span {
  display: inline-block;
  min-width: 54px;
}

.coming {
  padding-top: clamp(100px, 239px, 29vh);
  padding-bottom: clamp(100px, 272px, 33vh);
}

.logos {
  padding-top: 71px;
  gap: clamp(15px, 62px, 7vw);
}
.logos .Alceon {
  transform: translate(0, -8px);
}
.logos .highland {
  transform: translate(6px, 0);
}
.logos .raywhite {
  transform: translate(11px, 0);
}
.logos .wyerandco {
  transform: translate(9px, 0);
}
.logos .richardstanisich {
  transform: translate(5px, 0);
}

footer {
  font-size: 18px;
  color: var(--grey);
  padding-bottom: 30px;
}

.w-text {
  width: 230px;
}

.w-logo {
  width: calc(100% - 285px);
  max-width: 1500px;
}

.w-text .flex {
  gap: 33px;
}

.odea {
  font-size: 13px;
}

.mob {
  display: none;
}

#information {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(227, 238, 244, 0.95);
  color: var(--grey);
  font-size: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s;
  padding: 30px 0;
}
#information.active {
  opacity: 1;
  pointer-events: initial;
}
#information .container {
  max-width: 980px;
}
#information .close {
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
  margin: auto;
}

#page-register .coming {
  display: none;
}
#page-register .enq {
  display: none !important;
}

#enquire {
  padding-top: calc(var(--header-height) + 104px);
}

.register {
  max-width: 718px;
  margin: auto;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  appearance: none;
  background-color: transparent;
  color: #171717;
  border: none;
  font-family: inherit;
  font-size: 14px;
  padding: 40px 0 12px;
  line-height: 1;
  resize: none;
  display: block;
  border-radius: 0;
  font-weight: 300;
  text-align: left;
  width: 100% !important;
  border-bottom: 0.4px solid #171717;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #171717 !important;
}

.thx {
  height: 100%;
  width: 100;
  justify-content: center;
  align-items: center;
  display: flex;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

option {
  color: var(--dark);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

.b_submit {
  margin: 74px auto 0 auto;
  width: 141px !important;
}

select option {
  padding: 5px 10px;
  background: var(--light);
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: left;
}

.privacy {
  font-size: 11px;
  color: #8B8B8B;
  padding: 140px 20px 29px 20px;
  max-width: 1164px;
  margin: auto;
}

/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
}

ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

#thank {
  background-color: var(--dark);
  aspect-ratio: 1;
  padding: 30px;
  width: 536px;
  max-width: 100%;
  margin: auto;
  color: var(--light);
  position: relative;
  gap: 40px;
}
#thank img {
  position: absolute;
  left: 14px;
  top: 14px;
  aspect-ratio: 1;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(100% - 28px);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[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;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-arrow {
  position: absolute;
}

.slick-arrow {
  position: absolute;
  top: 0;
  z-index: 99;
  transform: translateY(-100%);
  padding: 13px 0;
  font-size: 14px;
  cursor: pointer;
}

.slick-next {
  right: 0;
}

.slick-prev {
  left: 0;
}

/* Dots styling */
.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex !important; /* Force display */
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1; /* Ensure dots are above slider */
}
.slick-dots li {
  margin: 0 6px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  position: relative;
  border-radius: 100%;
}
.slick-dots li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.slick-dots li.slick-active {
  background-color: var(--white);
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  position: relative;
  background: transparent;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  border: none;
}

.w-slider .slick-slide {
  margin: 0 10px;
}

.w-slider .slick-list {
  margin: 0 -10px;
}

.counter-holder {
  aspect-ratio: 0.8625;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  padding: 12px;
  color: var(--grey);
}
.counter-holder .counter {
  width: 48px;
  background-color: rgb(241, 238, 235);
  padding: 7px 0;
  font-size: 14px;
}

.hero-slider {
  position: absolute !important;
}

.hero-slider .slick-slide {
  height: 100vh;
  height: 100svh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  z-index: 100;
  color: var(--white);
  padding: 0 var(--gap);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 17px;
}
header.bg {
  color: var(--grey);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
header.bg .btn {
  background-color: var(--grey);
  color: var(--light);
  border: 1px solid var(--grey);
}
header.bg .btn:hover {
  background-color: transparent;
  color: var(--grey);
  border: 1px solid var(--grey);
}

.logo {
  width: 192px;
  max-width: 30%;
  z-index: 6;
}
.logo svg {
  width: 100%;
  height: auto;
}
.logo svg path {
  fill: currentColor;
  transition: fill 0.5s;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: fixed;
  width: 33.33%;
  min-width: 400px;
  max-width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(227, 238, 244, 0.95);
  color: var(--grey);
  padding: 20px var(--gap) 40px var(--gap);
  height: 100vh;
  height: 100svh;
  font-weight: 400;
  z-index: 5;
  transform: translateX(-100%);
  font-family: var(--heading-font);
  line-height: 1;
  text-align: center;
  font-size: 55px;
  box-shadow: 0 0 19px -6px rgba(0, 0, 0, 0.2);
  transition: transform 1s ease-in-out;
}
nav.active {
  transform: translateX(0);
}
nav .close {
  position: absolute;
  left: var(--gap);
  top: 30px;
  font-family: var(--main-font);
  font-size: 20px;
}

.g10 {
  gap: 15px;
}

@media screen and (max-width: 768px) {
  :root {
    --xxl: 100px;
    --xl: 75px;
    --m: 26px;
    --l: 36px;
    --header-height: 60px;
    --gap:12px;
    --xxxl: 93px;
  }
  body {
    font-size: 14px;
  }
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }
  .enq {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 57px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #3C0B12 !important;
    color: #C7D3DA !important;
    font-size: 12.9px;
    z-index: 12;
  }
  #nav {
    justify-content: center;
    align-items: center;
    font-size: 50px;
    width: 100%;
    min-width: 200px;
  }
  #nav .close {
    left: 0;
    right: 0;
    margin: auto;
    top: auto;
    bottom: 33px;
    font-size: 16px;
  }
  .btn {
    font-size: 12.9px;
    padding: 0 12px;
    height: 37.93px;
  }
  header {
    font-size: 11.5px;
    padding: 0 12px;
  }
  .full-height {
    height: calc(100vh - 57px);
    height: calc(100svh - 57px);
    padding: 23px var(--gap);
  }
  .full-m {
    max-width: 100%;
  }
  .asp126-m {
    aspect-ratio: 1.26 !important;
  }
  .semi {
    height: 56%;
    gap: 23px;
  }
  .l-a {
    text-align: center;
  }
  .pad-rl-m {
    padding-left: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
  }
  .pb150 {
    padding-bottom: 96px;
  }
  .caption {
    font-size: 9px;
    padding-top: 11px;
  }
  .caption span {
    min-width: 34px;
  }
  .pt25m {
    padding-top: 25px;
  }
  .asp15-m {
    aspect-ratio: 1.5 !important;
  }
  .grid_6, .w63, .grid_7, .grid_8, .grid_9, .grid_5 {
    width: 100%;
  }
  .pad-tb-m {
    padding: 100px 0;
  }
  .pbxxxl {
    padding-bottom: 100px;
  }
  .pt290, .pt300 {
    padding-top: 100px;
  }
  .pt-0m {
    padding-top: 0;
  }
  .pb50 {
    padding-bottom: 30x;
  }
  .pt30-m {
    padding-top: 30px !important;
  }
  .pb30-m {
    padding-bottom: 30px !important;
  }
  .pb130 {
    padding-bottom: 50px;
  }
  .coming {
    padding-top: 95px;
    padding-bottom: 99px;
  }
  .logos {
    padding: 35px 0 33px 0;
    gap: 11px 0;
    justify-content: space-between;
  }
  .logos a {
    max-width: 32%;
  }
  .logos .richardstanisich {
    transform: none;
  }
  .logos .richardstanisich img {
    max-height: 25px;
  }
  .logos .wtmalouf {
    transform: translate(6px, 0);
    max-width: 32%;
  }
  .logos .wyerandco {
    transform: none;
    max-width: 25%;
  }
  .logos .richardstanisich {
    transform: translate(-7px, -4px);
    max-height: 30px;
  }
  .logos .tzg {
    max-width: 38%;
  }
  .logos .raywhite {
    transform: translate(3px, 0px);
    max-width: 21%;
  }
  .logos .highland {
    transform: translate(3px, 0);
    max-width: 22%;
  }
  .logos .Alceon {
    transform: translate(0, -9px);
    max-width: 17%;
  }
  .br {
    width: 100%;
  }
  footer {
    padding-bottom: 80px;
  }
  .w-logo, .w-text {
    width: 100%;
  }
  .w-text {
    display: flex;
    padding-top: 25px;
    font-size: 12px;
    justify-content: space-between;
    flex-direction: row;
  }
  .w-text .flex {
    width: -moz-max-content;
    width: max-content;
  }
  .odea {
    font-size: 12px;
  }
  .g10 {
    text-align: center;
    align-items: center;
  }
  #information {
    padding: 35px;
    font-size: 15px;
  }
  #information .close {
    bottom: 35px;
  }
  #enquire {
    padding-top: calc(var(--header-height) + 62px);
  }
  .max263 {
    max-width: 263px !important;
  }
  .register {
    padding: 0 var(--gap);
  }
  input, select {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
    padding: 20px 0 10px 0;
  }
  .b_submit {
    margin: 30px auto 0 auto;
  }
  .privacy {
    font-size: 9px;
    padding: 70px 20px 21px 20px;
  }
  h3 {
    font-size: 40px;
  }
  #page-register footer {
    padding-bottom: 30px;
  }
  .quate-holder {
    padding: 25px 12px;
    aspect-ratio: 0.864;
    min-height: 400px;
    width: 100%;
    gap: 30px;
  }
  .max-8m {
    max-width: 8em !important;
  }
  .w-352-m {
    max-width: 352px !important;
  }
  .copy-holder {
    width: 100%;
    aspect-ratio: 0.88;
    padding: 12px 12px 67px 12px;
    min-height: 400px;
    justify-content: flex-start;
  }
  h5 {
    max-width: 17em;
  }
  .abs-p {
    display: none;
  }
  .pad-r-t1 {
    padding: 30px 0 0 0;
  }
  #thank {
    font-size: 12px;
    gap: 25px;
  }
  #thank h3 {
    font-size: 20px;
  }
  .counter-holder {
    padding: 5px;
  }
  .counter-holder .counter {
    width: 29.5px;
    font-size: 9px;
  }
}/*# sourceMappingURL=style.css.map */