/* Header
========================================================================== */

.b_header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 11px;
  background-color: var(--c-white);
}

@media (min-width: 700px) {
  .b_header {
    padding: 11px 32px;
  }
}

@media (min-width: 1200px) {
  .b_header {
    padding: 0 32px;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .b_header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-inline: auto;
    max-width: 1500px;
    position: relative;
  }
}

@media (min-width: 1280px) {
  .b_header {
    padding: 0 48px;
  }
}

@media (min-width: 1600px) {
  .b_header {
    padding: 0 7.25%;
  }
}

@media (min-width: 2300px) {
  .b_header .inner {
    max-width: 1900px;
  }
}



/* Nav
========================================================================== */

.b_nav .c_nav-toggler {
  position: fixed;
  z-index: 11;
  top: 11px;
  right: 11px;
}

@media (min-width: 700px) {
  .b_nav .c_nav-toggler {
    right: 32px;
  }
}



/* Nav List
========================================================================== */

.b_nav-list .c_btn-blue {
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .b_nav-list {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65em;
    width: 100%;
    height: 100%;
    padding: 0 2em;
    overflow: auto;
    opacity: 0;
    text-align: center;
    background-color: var(--c-white);
    transition-duration: .6s;
    transition-behavior: allow-discrete;
  }
  .c_nav-toggler[aria-expanded="true"] + .b_nav-list {
    display: flex;
    opacity: 1;

    @starting-style {
      opacity: 0;
    }
  }
  .b_nav-list > li:first-child {
    margin-top: 12em;
  }
  .b_nav-list > li:last-child {
    margin-top: 1.75em;
    margin-bottom: 3em;
  }
}

@media (min-width: 1200px) {
  .b_nav-list {
    display: flex;
    align-items: center;
    column-gap: 1.25em;
  }
}

@media (min-width: 1280px) {
  .b_nav-list {
    column-gap: 1.33em;
  }
}



/* Subnav
========================================================================== */

@media (max-width: 1199px) {
  .b_subnav {
    margin-top: 0.75em;
  }
  .c_nav-link--subnav[aria-expanded="true"] + .b_subnav {
    display: block;
  }

  .b_subnav .main {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }

  .b_subnav .aside,
  .b_subnav .row > p {
    display: none;
  }
}

@media (min-width: 1200px) {
  .b_subnav {
    position: absolute;
    z-index: 10;
    top: 99%;
    left: 0;
    padding: 10px;
    width: 100%;
    background-color: var(--c-astro);
    color: var(--c-white);
    padding: 36px 32px;
    border-radius: 0 0 26px 26px;
  }
  .c_nav-link--subnav:hover + .b_subnav,
  .b_subnav:hover {
    display: flex;
  }

  .b_subnav .aside {
    width: 26.25%;
    height: 100%;
  }
  .b_subnav .main {
    width: 73.75%;
    height: 100%;
  }

  .b_subnav .aside p {
    font-size: 2.5em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
  }
  .b_subnav .row > p {
    font-size: var(--fs-x-small);
    position: relative;
    background-color: var(--c-astro);
    font-weight: 400;
  }
  .b_subnav .row > p::after {
    content: "";
    display: block;
    left: 0;
    bottom: 50%;
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: var(--c-white);
  }
  .b_subnav .row > p span {
    position: relative;
    z-index: 1;
    background-color: var(--c-astro);
    padding-right: 1em;
  }
}

@media (min-width: 1600px) {
  .b_subnav {
    padding: 44px 38px;
    border-radius: 0 0 33px 33px;
  }
  .b_subnav .aside {
    width: 31.33%;
  }
  .b_subnav .main {
    width: 68.66%;
  }
}

@media (min-width: 2300px) {
  .b_subnav {
    padding: 50px 42px;
    border-radius: 0 0 39px 39px;
  }
  .b_subnav .aside {
    width: 38.5%;
  }
  .b_subnav .main {
    width: 59.5%;
  }
  .b_subnav .aside p {
    font-size: 2.75em;
  }
}


/* Subnav List
========================================================================== */

@media (max-width: 1199px) {
  .b_subnav-list {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }
  .b_subnav-list a {
    font-size: var(--fs-small);
  }
  .b_subnav-list p:last-child {
    display: none;
  }
}

@media (min-width: 1200px) {
  .b_subnav-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.1em;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .b_subnav-list.b_subnav-list--last {
    padding-bottom: 0;
  }
  .b_subnav-list a {
    color: var(--c-white);
    font-weight: 500;
    width: 33.33%;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .b_subnav-list a:hover {
    color: var(--c-anzac);
  }
  .b_subnav-list a:nth-child(3n){
    padding-right: 0;
  }
  .b_subnav-list a:nth-child(1),
  .b_subnav-list a:nth-child(4),
  .b_subnav-list a:nth-child(7),
  .b_subnav-list a:nth-child(10) {
    padding-left: 0;
  }

  .b_subnav-list p:first-child {
    font-size: var(--fs-x-large);
    font-weight: 500;
  }
  .b_subnav-list p:last-child {
    font-size: var(--fs-x-small);
    margin-top: 0.2em;
    font-weight: 400;
  }
}



/* Main
========================================================================== */

.b_main {
  max-width: 1500px;
  margin-inline: auto;
  margin-top: 64px;
}

@media (min-width: 1200px) {
  .b_main {
    margin-top: 72px;
  }
}

@media (min-width: 1600px) {
  .b_main {
    margin-top: 82px;
  }
}

@media (min-width: 2300px) {
  .b_main {
    max-width: 1900px;
    margin-top: 89px;
  }
}



/* Footer
========================================================================== */

.b_footer {
  background-color: var(--c-hawkes);
  border-radius: 0 24px 0 24px;
  max-width: 1500px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.b_footer .main {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.b_footer .main-item {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.b_footer .h2 {
  font-size: 2.6em;
  line-height: 1.15;
}

.b_footer .aside {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  color: var(--c-bahama);
}

.b_footer .aside a {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .b_footer .aside {
    padding: 0;
  }
  .b_footer .b_icon-list.b_icon-list--right {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .b_footer {
    border-radius: 0 26px 0 26px;
  }
  .b_footer .aside {
    background-color: var(--c-white);
    border-radius: 26px 0 26px 0;
  }
}

@media (min-width: 1280px) {
  .b_footer .main {
    flex-direction: row;
  }
  .b_footer .main-item:first-child {
    width: 50%;
    padding-right: 64px;
  }
  .b_footer .main-item:last-child {
    width: 50%;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .b_footer .main-item:first-child img {
    margin-bottom: 2em;
  }
  .b_footer .b_col-list--3 > * {
    width: 31%;
  }
  .b_footer .h2 {
    font-size: 4em;
  }
}

@media (min-width: 1600px) {
  .b_footer{
    border-radius: 0 33px 0 33px;
    row-gap: 40px;
  }
  .b_footer .main-item:first-child {
    padding-right: 100px;
  }
  .b_footer .main-item:last-child {
    padding-left: 40px;
  }
  .b_footer .aside {
    border-radius: 33px 0 33px 0;
  }
}

@media (min-width: 2300px) {
  .b_footer{
    border-radius: 0 39px 0 39px;
    max-width: 1900px;
    row-gap: 47px;
  }
  .b_footer .main-item:first-child {
    padding-right: 150px;
  }
  .b_footer .main-item:last-child {
    padding-left: 60px;
  }
  .b_footer .aside {
    border-radius: 39px 0 39px 0;
  }
}


/* Promo List
========================================================================== */

.b_promo-list {
  display: flex;
  row-gap: 0.75em;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .b_promo-list {
    flex-direction: row;
    column-gap: 2.5em;
  }
}

@media (min-width: 1280px) {
  .b_promo-list {
    column-gap: 2.75em;
    justify-content: flex-end;
  }
}

@media (min-width: 1600px) {
  .b_promo-list {
    column-gap: 3em;
  }
}


/* Intro
========================================================================== */

.b_intro {
  position: relative;
}

.b_intro .main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--c-white);
}

.b_intro .c_liquid-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.b_intro .h2 {
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 120px;
}

@media (min-width: 700px) {
  .b_intro .h2 {
    margin-bottom: 160px;
  }
}

@media (min-width: 1024px) {
  .b_intro {
    height: 560px;
  }
  .b_intro .main {
    justify-content: space-between;
    height: 100%;
  }
  .b_intro .h2 {
    margin-bottom: auto;
  }
  .b_intro .c_btn-orange:hover {
    color: var(--c-white);
  }
}

@media (min-width: 1280px) {
  .b_intro {
    height: 590px;
  }
}

@media (min-width: 1600px) {
  .b_intro {
    height: 700px;
  }
}

@media (min-width: 2300px) {
  .b_intro {
    height: 900px;
  }
}



/* Card with Image
========================================================================== */

.b_cwi {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

.b_cwi .main {
  border-radius: 24px;
}

@media (min-width: 1024px) {
  .b_cwi {
    flex-direction: row;
    column-gap: 8px;
  }
  .b_cwi .main {
    width: 40%;
    border-radius: 26px 0 0 26px;
  }
  .b_cwi .aside {
    width: 60%;
  }
}

@media (min-width: 1600px) {
  .b_cwi {
    column-gap: 10px;
  }
  .b_cwi .main {
    border-radius: 33px 0 0 33px;
  }
}

@media (min-width: 2300px) {
  .b_cwi {
    column-gap: 12px;
  }
  .b_cwi .main {
    border-radius: 39px 0 0 39px;
  }
}



/* Btn List
========================================================================== */

.b_btn-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.875em;
  row-gap: 1em;
}



/* Icon List
========================================================================== */

.b_icon-list {
  display: flex;
  column-gap: 0.75em;
}
.b_icon-list.b_icon-list--right {
  justify-content: flex-end;
}

.b_icon-list a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.b_icon-list svg {
  width: 26px;
  height: 26px;
  fill: var(--c-bahama);
  transition: fill 0.5s cubic-bezier(.61,.31,0,1);
}

@media (min-width: 1024px) {
  .b_icon-list a:hover svg {
    fill: var(--c-anzac);
  }
}

@media (min-width: 1600px) {
  .b_icon-list svg {
    width: 29px;
    height: 29px;
  }
}

@media (min-width: 2300px) {
  .b_icon-list svg {
    width: 33px;
    height: 33px;
  }
}



/* Heading
========================================================================== */

.b_heading {
  text-align: center;
}
.b_heading div {
  margin-inline: auto;
}
.b_heading .h2,
.b_heading h2 {
  text-transform: uppercase;
}



/* Swiper
========================================================================== */

/* General */

.swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
}
.swiper .swiper-button,
.swiper .swiper-pagination {
  z-index: 1;
}

@media (min-width: 1280px) {
  .swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 1600px) {
  .swiper .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 2300px) {
  .swiper .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}


/* Mobile Only Reset */

@media (min-width: 1024px) {
  body main .swiper.swiper--mobile-only .swiper-pagination,
  body main .swiper.swiper--mobile-only .swiper-button {
    display: none;
  }

  body main .swiper--mobile-only .swiper,
  body main .swiper.swiper--mobile-only {
    margin-left: 0;
    margin-right: 0;
    position: static;
    overflow: visible;
    list-style: none;
    padding: 0;
    z-index: auto;
    display: block;
  }

  body main .swiper--mobile-only .swiper-wrapper {
    transform: none;
    position: static;
    width: auto;
    height: auto;
    z-index: auto;
    display: block;
    transition-timing-function: initial;
    box-sizing: border-box;
  }

  body main .swiper--mobile-only .swiper-slide,
  body main .swiper.swiper--mobile-only .swiper-slide {
    transform: none;
    flex-shrink: 1;
    width: auto;
    height: auto;
    position: static;
    display: block;
  }

  body main .swiper--mobile-only.swiper-android .swiper-slide,
  body main .swiper--mobile-only.swiper-ios .swiper-slide {
    transform: none;
  }
}


@media (max-width: 1023px) {
  body main .swiper.swiper--desktop-only .swiper-pagination,
  body main .swiper.swiper--desktop-only .swiper-button {
    display: none;
  }

  body main .swiper--desktop-only .swiper,
  body main .swiper.swiper--desktop-only {
    margin-left: 0;
    margin-right: 0;
    position: static;
    overflow: visible;
    list-style: none;
    padding: 0;
    z-index: auto;
    display: block;
  }

  body main .swiper--desktop-only .swiper-wrapper {
    transform: none;
    position: static;
    width: auto;
    height: auto;
    z-index: auto;
    display: block;
    transition: none;
    box-sizing: border-box;
  }

  body main .swiper--desktop-only .swiper-slide,
  body main .swiper.swiper--desktop-only .swiper-slide {
    transform: none;
    flex-shrink: 1;
    width: auto;
    height: auto;
    position: static;
    display: block;
  }

  body main .swiper--desktop-only.swiper-android .swiper-slide,
  body main .swiper--desktop-only.swiper-ios .swiper-slide {
    transform: none;
  }
}


/* Services Slider */

.swiper--services .swiper-wrapper .swiper-slide {
  height: auto;
  width: 85%;
  display: block;
  font-weight: 500;
}
.swiper--services .swiper-wrapper .swiper-slide:hover {
  text-decoration: none;
}
.swiper--services .swiper-wrapper .swiper-content {
  height: 100%;
}

.swiper--services .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 1;
  bottom: 37px;
  right: calc(15% + 23px);
  left: auto;
  top: auto;
  width: auto;
}
.swiper--services .swiper-pagination-bullet {
  background: var(--c-anzac);
}
.swiper--services .swiper-pagination-bullet-active {
  background: var(--c-anzac);
}

.swiper--services .swiper-button {
  position: absolute;
  z-index: 1;
  bottom: 23px;
  top: auto;
  right: auto;
  width: 55px;
  height: 55px;
  background-color: var(--c-anzac);
  border-radius: 50%;
}
.swiper--services .swiper-button-prev {
  left: 25px;
}
.swiper--services .swiper-button-next {
  left: 86px;
}
.swiper--services .swiper-button:after {
  font-size: 18px;
  color: var(--c-janna);
}

@media (min-width: 1024px) {
  body main .swiper.swiper--services .swiper-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 2.5em;
  }
}


/* Tabs Slider */

.swiper--tabs .swiper-wrapper .swiper-slide {
  height: auto;
  display: block;
}

.swiper--tabs .swiper-wrapper .swiper-content {
  height: 100%;
}

.swiper--tabs .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 1;
  bottom: 37px;
  right: 23px;
  left: auto;
  top: auto;
  width: auto;
}
.swiper--tabs .swiper-pagination-bullet {
  background: var(--c-anzac);
}
.swiper--tabs .swiper-pagination-bullet-active {
  background: var(--c-anzac);
}

.swiper--tabs .swiper-button {
  position: absolute;
  z-index: 1;
  bottom: 23px;
  top: auto;
  right: auto;
  width: 55px;
  height: 55px;
  background-color: var(--c-anzac);
  border-radius: 50%;
}
.swiper--tabs .swiper-button-prev {
  left: 25px;
}
.swiper--tabs .swiper-button-next {
  left: 86px;
}
.swiper--tabs .swiper-button:after {
  font-size: 18px;
  color: var(--c-janna);
}

@media (min-width: 1024px) {
  .swiper--tabs .swiper-button,
  .swiper--tabs .swiper-pagination {
    display: none;
  }
}


/* Process Slider */

.swiper--process .swiper-wrapper .swiper-slide {
  height: auto;
}
.swiper--process .swiper-wrapper .swiper-content {
  height: 100%;
}

body main .swiper--process .swiper-pagination {
  position: static;
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  column-gap: 11px;
}
body main div.swiper--process div.swiper-pagination--process span.swiper-pagination-bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 17px 10px;
  background-color: var(--c-hawkes);
  color: var(--c-astro);
  border-radius: 20px 0 20px 0;
  margin: 0;
  opacity: 1;
  transition: color 0.5s cubic-bezier(.61,.31,0,1), background-color 0.5s cubic-bezier(.61,.31,0,1);
}
body main div.swiper--process div.swiper-pagination--process span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--c-astro);
  color: var(--c-janna);
}


/* Portfolio Slider */

.swiper--portfolio .swiper-wrapper .swiper-slide {
  display: block;
}

.swiper--portfolio .swiper-nav {
  background-color: var(--c-anzac);
  position: relative;
  height: 80px;
  margin-top: 11px;
  border-radius: 0 24px 0 24px;
}

body main .swiper.swiper--portfolio .swiper-pagination {
  bottom: 27px;
}
.swiper--portfolio .swiper-pagination-bullet {
  background: var(--c-janna);
}
.swiper--portfolio .swiper-pagination-bullet-active {
  background: var(--c-janna);
}

.swiper--portfolio .swiper-button::after {
  display: none;
}
.swiper--portfolio .swiper-button div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper--portfolio .swiper-button svg {
  width: 20px;
  height: 37px;
  color: var(--c-janna);
}

@media (min-width: 1024px) {
  body main .swiper--portfolio {
    padding-left: 5.2%;
    padding-right: 5.2%;
  }
  .swiper--portfolio .swiper-nav {
    background-color: transparent;
    position: static;
    height: 0;
    margin: 0;
  }

  body main .swiper.swiper--portfolio .swiper-pagination {
    width: auto;
    bottom: 23px;
    right: calc(5.2% + 23px);
    top: auto;
    left: auto;
  }

  .swiper--portfolio .swiper-button {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 5.2%;
    z-index: 1;
    background-color: var(--c-white);
    display: flex;
  }
  .swiper--portfolio .swiper-button-prev {
    left: 0;
    justify-content: flex-start;
  }
  .swiper--portfolio .swiper-button-next {
    right: 0;
    justify-content: flex-end;
  }

  .swiper--portfolio .swiper-button div {
    height: 100%;
    width: calc(100% - 8px);
    display: flex;
    align-items: center;
    background-color: var(--c-anzac);
    border: 2px solid var(--c-anzac);
    transition: background-color 0.5s cubic-bezier(.61,.31,0,1);
  }
  .swiper--portfolio .swiper-button:hover div {
    background-color: var(--c-white);
  }
  .swiper--portfolio .swiper-button:hover svg {
    color: var(--c-anzac);
  }
  .swiper--portfolio .swiper-button-prev div {
    border-radius: 26px 0 0 26px;
  }
  .swiper--portfolio .swiper-button-next div {
    border-radius: 0 26px 26px 0;
  }
}

@media (min-width: 1280px) {
  body main .swiper.swiper--portfolio .swiper-pagination {
    right: calc(5.2% + 32px);
    bottom: 32px;
  }
}

@media (min-width: 1600px) {
  body main .swiper.swiper--portfolio .swiper-pagination {
    right: calc(5.2% + 38px);
    bottom: 38px;
  }
  .swiper--portfolio .swiper-button svg {
    width: 25px;
    height: 46px;
  }
  .swiper--portfolio .swiper-button div {
    width: calc(100% - 10px);
  }
  .swiper--portfolio .swiper-button-prev div {
    border-radius: 33px 0 0 33px;
  }
  .swiper--portfolio .swiper-button-next div {
    border-radius: 0 33px 33px 0;
  }
}

@media (min-width: 2300px) {
  body main .swiper.swiper--portfolio .swiper-pagination {
    right: calc(5.2% + 42px);
    bottom: 42px;
  }
  .swiper--portfolio .swiper-button svg {
    width: 30px;
    height: 55px;
  }
  .swiper--portfolio .swiper-button div {
    width: calc(100% - 12px);
  }
  .swiper--portfolio .swiper-button-prev div {
    border-radius: 39px 0 0 39px;
  }
  .swiper--portfolio .swiper-button-next div {
    border-radius: 0 39px 39px 0;
  }
}


/* Review Slider */

.swiper.swiper--reviews {
  position: static;
}

.swiper--reviews .swiper-wrapper .swiper-slide {
  height: auto;
}
.swiper--reviews .swiper-wrapper .swiper-content {
  height: 100%;
}

.swiper--reviews .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 36px;
  right: 23px;
  left: auto;
  top: auto;
  width: auto;
}
.swiper--reviews .swiper-pagination-bullet {
  background: var(--c-anzac);
}
.swiper--reviews .swiper-pagination-bullet-active {
  background: var(--c-anzac);
}
.swiper--reviews .swiper-button {
  position: absolute;
  width: 55px;
  height: 55px;
  background-color: var(--c-anzac);
  border: 2px solid var(--c-anzac);
  border-radius: 50%;
}
.swiper--reviews .swiper-button-prev {
  bottom: 23px;
  left: 23px;
  top: auto;
  right: auto;
}
.swiper--reviews .swiper-button-next {
  bottom: 23px;
  left: 86px;
  top: auto;
  right: auto;
}

.swiper--reviews .swiper-button-next:after,
.swiper--reviews .swiper-button-prev:after {
  font-size: 18px;
  color: var(--c-janna);
}

@media (min-width: 1024px) {
  .swiper--reviews .swiper-pagination-bullets.swiper-pagination-horizontal {
    right: 0;
    bottom: 16px;
  }
  .swiper--reviews .swiper-button {
    transition: background-color 0.5s cubic-bezier(.61,.31,0,1);
  }
  .swiper--reviews .swiper-button:hover {
    background-color: var(--c-white);
  }
  body main .swiper.swiper--reviews .swiper-button::after {
    transition: color 0.5s cubic-bezier(.61,.31,0,1);
  }
  .swiper--reviews .swiper-button:hover::after {
    color: var(--c-anzac);
  }
  .swiper--reviews .swiper-button-prev {
    left: 0;
    bottom: 0;
  }
  .swiper--reviews .swiper-button-next {
    left: 61px;
    bottom: 0;
  }
}

@media (min-width: 1600px) {
  .swiper--reviews .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 18px;
  }
  .swiper--reviews .swiper-button-prev {
    width: 59px;
    height: 59px;
  }
  .swiper--reviews .swiper-button-next {
    left: 66px;
    width: 59px;
    height: 59px;
  }
  .swiper--reviews .swiper-button-next:after,
  .swiper--reviews .swiper-button-prev:after {
    font-size: 20px;
  }
}

@media (min-width: 2300px) {
  .swiper--reviews .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 21px;
  }
  .swiper--reviews .swiper-button-prev {
    width: 63px;
    height: 63px;
  }
  .swiper--reviews .swiper-button-next {
    left: 70px;
    width: 63px;
    height: 63px;
  }
  .swiper--reviews .swiper-button-next:after,
  .swiper--reviews .swiper-button-prev:after {
    font-size: 22px;
  }
}


/* Hover Courusel Slider */

.swiper--hover-carousel .swiper-slide {
  width: 45%;
}

.swiper--hover-carousel img {
  border-radius: 0 24px 0 24px;
  aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
  .swiper--hover-carousel img {
    border-radius: 0 26px 0 26px;
  }
}

@media (min-width: 1600px) {
  .swiper--hover-carousel img {
    border-radius: 0 33px 0 33px;
  }
}

@media (min-width: 2300px) {
  .swiper--hover-carousel img {
    border-radius: 0 39px 0 39px;
  }
}



/* Hover Carousel
========================================================================== */

.b_hover-carousel {
  margin-top: 11px;
}

@media (min-width: 1024px) {
  .b_hover-carousel {
    margin-top: 8px;
  }
}

@media (min-width: 1600px) {
  .b_hover-carousel {
    margin-top: 10px;
  }
}

@media (min-width: 2300px) {
  .b_hover-carousel {
    margin-top: 12px;
  }
}




/* Reviews
========================================================================== */

.b_reviews {
  background-color: var(--c-citrine);
  border-radius: 24px 0 24px 0;
  position: relative;
}

.b_reviews > header {
  padding: 28px 23px;
}

.b_reviews > .main {
  padding: 0 0 108px 23px;
}

.b_reviews .c_google-rate {
  margin-top: 23px;
}

@media (min-width: 1024px) {
  .b_reviews {
    background-color: transparent;
    border-radius: 0;
  }

  .b_reviews > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--c-citrine);
    border-radius: 26px 0 26px 0;
    padding: 28px 23px 250px 23px;
  }
  .b_reviews > .main {
    padding: 0 0 85px 23px;
    margin-top: -223px;
  }

  .b_reviews .c_google-rate {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .b_reviews > header {
    padding: 36px 32px 250px 32px;
  }
  .b_reviews > .main {
    padding: 0 0 85px 32px;
    margin-top: -214px;
  }
}

@media (min-width: 1600px) {
  .b_reviews > header {
    padding: 44px 38px 250px 38px;
    border-radius: 33px 0 33px 0;
  }
  .b_reviews > .main {
    padding: 0 0 90px 38px;
    margin-top: -208px;
  }
}

@media (min-width: 2300px) {
  .b_reviews > header {
    padding: 50px 42px 250px 42px;
    border-radius: 39px 0 39px 0;
  }
  .b_reviews > .main {
    padding: 0 0 100px 42px;
    margin-top: -204px;
  }
}


/* Inline List
========================================================================== */

.b_inline-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.4em;
}

@media (min-width: 414px) {
  .b_inline-list {
    flex-direction: row;
    column-gap: 1em;
  }
}

@media (min-width: 700px) {
  .b_inline-list {
    column-gap: 1.2em;
  }
}

@media (min-width: 1600px) {
  .b_inline-list {
    column-gap: 1.33em;
  }
}



/* Columns List
========================================================================== */

/* 3 */

.b_col-list--3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4em;
}
.b_col-list--3 > * {
  width: 47%;
}

@media (min-width: 700px) {
  .b_col-list--3 > * {
    width: 31%;
  }
}

@media (min-width: 1024px) {
  .b_col-list--3 > * {
    width: 23.5%;
  }
}

@media (min-width: 1600px) {
  .b_col-list--3 > * {
    width: 19%;
  }
}




/* FAQ Card
========================================================================== */

.c_faq-card {
  border-bottom: 2px solid var(--c-janna);
}
.c_faq-card:first-child {
  border-top: 2px solid var(--c-janna);
}

.c_faq-card button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 0;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.c_faq-card .main {
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.75em;
  transition: max-height 0.5s cubic-bezier(.61,.31,0,1), padding 0.5s cubic-bezier(.61,.31,0,1);
}
.c_faq-card .main[aria-hidden="false"] {
  padding: 0.75em 0 1em;
}

.c_faq-card .h6 {
  color: var(--c-astro);
  font-weight: 500;
  transition: color 0.5s cubic-bezier(.61,.31,0,1);
}

.c_faq-card .icon {
  color: var(--c-bahama);
  font-size: 1.6em;
  font-weight: 400;
  transition: transform 0.5s cubic-bezier(.61,.31,0,1), color 0.5s cubic-bezier(.61,.31,0,1);
}
.c_faq-card button[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

@media (min-width: 1024px) {
  .c_faq-card button {
    transition: padding 0.5s cubic-bezier(.61,.31,0,1);
  }
  .c_faq-card button:hover {
    padding: 0.75em 1em 0.75em 23px;
  }
  .c_faq-card button:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -2rem;
    top: -1rem;
    left: 0;
    right: 0;
    transform: scaleY(0) skewY(10deg);
    transform-origin: center top;
    background-color: var(--c-bahama);
    transition: transform .5s cubic-bezier(.215,.61,.355,1);
  }
  .c_faq-card button:hover::after {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  .c_faq-card button:hover .h6 {
    color: var(--c-white);
  }
  .c_faq-card button:hover .icon {
    color: var(--c-anzac);
  }
}

@media (min-width: 1280px) {
  .c_faq-card .icon {
    font-size: 1.75em;
  }
  .c_faq-card button:hover {
    padding: 0.75em 1em 0.75em 32px;
  }
}

@media (min-width: 1600px) {
  .c_faq-card .icon {
    font-size: 1.866em;
  }
  .c_faq-card button:hover {
    padding: 0.75em 1em 0.75em 38px;
  }
}

@media (min-width: 2300px) {
  .c_faq-card button:hover {
    padding: 0.75em 1em 0.75em 42px;
  }
}



/* Blue Intro
========================================================================== */

.b_blue-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--c-hawkes);
  border-radius: 24px 24px 0 0;
}
.b_blue-intro.b_blue-intro--yellow {
  background-color: var(--c-anzac);
  color: var(--c-white);
}
.b_blue-intro.b_blue-intro--yellow h1,
.b_blue-intro.b_blue-intro--yellow .h2 {
  color: var(--c-white);
}
.b_blue-intro.b_blue-intro--yellow .h1 {
  color: var(--c-bahama);
}

.b_blue-intro h1 {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-large);
}

.b_blue-intro p {
  text-transform: uppercase;
}
.b_blue-intro p:first-of-type {
  font-weight: 700;
}

@media (min-width: 1024px) {
  .b_blue-intro {
    border-radius: 26px 26px 0 0;
  }
}

@media (min-width: 1280px) {
  .b_blue-intro {
    border-radius: 26px 26px 0 0;
  }
}

@media (min-width: 1600px) {
  .b_blue-intro {
    border-radius: 33px 33px 0 0;
  }
}

@media (min-width: 2300px) {
  .b_blue-intro {
    border-radius: 39px 39px 0 0;
  }
}



/* White Intro
========================================================================== */

.b_white-intro {
  text-align: center;
}
.b_white-intro.p_card--xg {
  padding-bottom: 0;
}

.b_white-intro h1 {
  text-transform: uppercase;
}


/* Tab Nav
========================================================================== */

.b_tab-nav {
  display: none;
}

@media (min-width: 1024px) {
  .b_tab-nav {
    display: flex;
    justify-content: space-between;
    column-gap: 8px;
  }

  .b_tab-nav button {
    background-color: var(--c-bahama);
    color: var(--c-white);
    width: 100%;
    border-radius: 26px 26px 0 0;
    font-size: 1.15em;
    font-weight: 500;
    transition: color 0.5s cubic-bezier(.61,.31,0,1), background-color 0.5s cubic-bezier(.61,.31,0,1);
  }
  .b_tab-nav button:hover {
    background-color: var(--c-astro);
  }
  .b_tab-nav button.active {
    background-color: var(--c-citrine);
    color: var(--c-bahama);
  }
}

@media (min-width: 1600px) {
  .b_tab-nav {
    column-gap: 10px;
  }
  .b_tab-nav button {
    border-radius: 33px 33px 0 0;
  }
}

@media (min-width: 2300px) {
  .b_tab-nav {
    column-gap: 12px;
  }
  .b_tab-nav button {
    border-radius: 39px 39px 0 0;
  }
}



/* Price List
========================================================================== */

.b_price-list {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

@media (min-width: 700px) {
  .b_price-list {
    flex-direction: row;
    column-gap: 8px;
    justify-content: space-between;
  }
  .b_price-list .item {
    width: 33.33%;
  }
  .b_price-list.b_price-list--big {
    flex-direction: column;
  }
  .b_price-list.b_price-list--big .item {
    width: 100%;
  }
  .b_price-list.b_price-list--small .item {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .b_price-list.b_price-list--big {
    flex-direction: row;
  }
  .b_price-list.b_price-list--big .item {
    width: 25%;
  }
}

@media (min-width: 1600px) {
  .b_price-list {
    column-gap: 10px;
  }
}

@media (min-width: 2300px) {
  .b_price-list {
    column-gap: 12px;
  }
}


/* Check List
========================================================================== */

.b_check-list li {
  position: relative;
  padding: 10px 0 10px 23px;
  border-bottom: 1px solid var(--c-boder);
}

.b_check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('/_assets/svg/check.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1280px) {
  .b_check-list li {
    padding: 12px 0 12px 26px;
  }
  .b_check-list li::before {
    top: 12px;
    width: 21px;
    height: 21px;
  }
}

@media (min-width: 1600px) {
  .b_check-list li {
    padding: 15px 0 15px 29px;
  }
  .b_check-list li::before {
    top: 16px;
    width: 23px;
    height: 23px;
  }
}

@media (min-width: 2300px) {
  .b_check-list li {
    padding: 18px 0 18px 35px;
  }
  .b_check-list li::before {
    top: 19px;
    width: 26px;
    height: 26px;
  }
}



/* Filter Nav
========================================================================== */

.b_filter-nav {
  background-color: var(--c-citrine);
  border-radius: 24px 0 24px 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.25em;
}

@media (min-width: 700px) {
  .b_filter-nav {
    flex-direction: row;
    column-gap: 0.25em;
  }
}

@media (min-width: 1024px) {
  .b_filter-nav {
    border-radius: 26px 0 26px 0;
    transition: border-radius 0.5s cubic-bezier(.61,.31,0,1);
  }
  .filter-sticky .b_filter-nav {
    position: fixed;
    z-index: 9;
    width: calc(100% - 64px);
    top: 64px;
    left: 32px;
    border-radius: 0 0 26px 26px;
  }
}

@media (min-width: 1280px) {
  .filter-sticky .b_filter-nav {
    top: 72px;
    width: calc(100% - 96px);
    left: 48px;
  }
}

@media (min-width: 1600px) {
  .b_filter-nav {
    border-radius: 33px 0 33px 0;
  }
  .filter-sticky .b_filter-nav {
    top: 82px;
    width: 85.5%;
    max-width: 1500px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 33px 33px;
  }
}

@media (min-width: 2300px) {
  .b_filter-nav {
    border-radius: 39px 0 39px 0;
  }
  .filter-sticky .b_filter-nav {
    top: 89px;
    width: 1900px;
    max-width: 1900px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 39px 39px;
  }
}



/* Filter
========================================================================== */

.b_filter {
  display: flex;
  flex-direction: column;
  row-gap: 1.381em;
}
.b_filter--js {
  margin-top: 11px;
}
.b_filter.b_filter--blog {
  row-gap: 1.381em;
}

.b_filter .item {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
}

.b_filter.kitchen .c_filter-card:not(.kitchen),
.b_filter.bath .c_filter-card:not(.bath),
.b_filter.full-home .c_filter-card:not(.full-home) {
  display: none;
}

@media (min-width: 700px) {
  .b_filter {
    flex-direction: row;
    column-gap: 11px;
    justify-content: space-between;
  }
  .b_filter .item {
    width: 50%;
  }
  .b_filter.b_filter--blog {
    flex-wrap: wrap;
    column-gap: 0;
  }
  .b_filter .c_blog-card {
    width: calc(50% - 5px);
  }
}

@media (min-width: 1024px) {
  .b_filter {
    column-gap: 8px;
  }
  .b_filter--js {
    margin-top: 8px;
  }
  .filter-sticky .b_filter--js {
    padding-top: 87px;
  }
  .b_filter .item {
    row-gap: 8px;
  }
  .b_filter .c_blog-card {
    width: calc(50% - 4px);
  }
}

@media (min-width: 1280px) {
  .b_filter.b_filter--blog {
    row-gap: 1.5em;
  }
  .filter-sticky .b_filter--js {
    padding-top: 90px;
  }
}

@media (min-width: 1600px) {
  .b_filter {
    column-gap: 10px;
  }
  .b_filter--js {
    margin-top: 10px;
  }
  .filter-sticky .b_filter--js {
    padding-top: 107px;
  }
  .b_filter .item {
    row-gap: 10px;
  }
  .b_filter .c_blog-card {
    width: calc(50% - 5px);
  }
}

@media (min-width: 2300px) {
  .b_filter {
    margin-top: 12px;
    column-gap: 12px;
  }
  .b_filter--js {
    margin-top: 12px;
  }
  .filter-sticky .b_filter--js {
    padding-top: 123px;
  }
  .b_filter .item {
    row-gap: 12px;
  }
  .b_filter .c_blog-card {
    width: calc(50% - 6px);
  }
}




/* Tree
========================================================================== */

.b_tree {
  display: flex;
  flex-direction: column;
  row-gap: 1.381em;
  justify-content: space-between;
}

@media (min-width: 700px) {
  .b_tree {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .b_tree > * {
    width: calc(50% - 5px);
  }
}

@media (min-width: 1024px) {
  .b_tree > * {
    width: calc(50% - 4px);
  }
}

@media (min-width: 1280px) {
  .b_tree {
    row-gap: 1.5em;
  }
  .b_tree > * {
    width: calc(33.333% - 6px);
  }
}

@media (min-width: 1600px) {
  .b_tree > * {
    width: calc(33.333% - 7px);
  }
}

@media (min-width: 2300px) {
  .b_tree > * {
    width: calc(33.333% - 8px);
  }
}



/* Twil
========================================================================== */

.b_twil {
  display: flex;
  flex-direction: column;
}

.b_twil .main {
  order: 2;
}

.b_twil .aside {
  order: 1;
}

.b_twil .decor {
  order: 3;
  height: 40px;
  background-color: var(--c-anzac);
  border-radius: 24px 0 24px 0;
}

.b_twil img {
  border-radius: 24px 0 24px 0;
  aspect-ratio: 4/3;
}

@media (max-width: 1023px) {
  .b_twil .main {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 700px) {
  .b_twil img {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1024px) {
  .b_twil {
    flex-direction: row;
    justify-content: space-between;
  }
  .b_twil .main {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .b_twil--loc .main {
    justify-content: flex-end;
  }
  .b_twil .aside {
    width: 50%;
  }
  .b_twil .decor {
    height: auto;
    width: 42px;
    border-radius: 0 26px 26px 0;
  }
  .b_twil h1 {
    margin-bottom: auto;
  }
  .b_twil img {
    aspect-ratio: 4/3;
    border-radius: 0 26px 0 26px;
  }
}

@media (min-width: 1280px) {
  .b_twil .decor {
    width: 58px;
  }
}

@media (min-width: 1600px) {
  .b_twil .decor {
    width: 68px;
    border-radius: 0 33px 33px 0;
  }
  .b_twil img {
    border-radius: 0 33px 0 33px;
  }
}

@media (min-width: 2300px) {
  .b_twil .decor {
    width: 87px;
    border-radius: 0 39px 39px 0;
  }
  .b_twil img {
    border-radius: 0 39px 0 39px;
  }
}



/* Full Page Review
========================================================================== */

.b_fp-review {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

.b_fp-review .main {
  background-color: var(--c-citrine);
  border-radius: 0 24px 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--c-astro);
}

.b_fp-review img {
  aspect-ratio: 4/3;
  border-radius: 0 0 0 24px;
}

.b_fp-review .c_google-rate {
  margin-top: 28px;
}

@media (min-width: 700px) {
  .b_fp-review {
    flex-direction: row;
    column-gap: 11px;
  }
  .b_fp-review .main {
    width: 66.66%;
  }
  .b_fp-review .aside {
    width: 33.33%;
  }
}

@media (min-width: 1024px) {
  .b_fp-review {
    column-gap: 8px;
  }
  .b_fp-review .main {
    border-radius: 0 26px 0 26px;
    width: 70%;
  }
  .b_fp-review .aside {
    width: 30%;
  }
  .b_fp-review img {
    border-radius: 0 0 0 26px;
  }
}

@media (min-width: 1280px) {
  .b_fp-review p:not(:last-of-type) {
    font-size: var(--fs-large);
  }
  .b_fp-review .c_google-rate {
    margin-top: 36px;
  }
}

@media (min-width: 1600px) {
  .b_fp-review {
    column-gap: 10px;
  }
  .b_fp-review .main {
    border-radius: 0 33px 0 33px;
  }
  .b_fp-review img {
    border-radius: 0 0 0 33px;
  }
}

@media (min-width: 2300px) {
  .b_fp-review {
    column-gap: 12px;
  }
  .b_fp-review .main {
    border-radius: 0 39px 0 39px;
  }
  .b_fp-review img {
    border-radius: 0 0 0 39px;
  }
}



/* Gallery
========================================================================== */

.b_gallery {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

.b_gallery .item {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

.b_gallery img {
  border-radius: 24px 0 24px 0;
  aspect-ratio: 4/3;
}

@media (min-width: 700px) {
  .b_gallery {
    flex-direction: row;
    column-gap: 11px;
  }
  .b_gallery .item {
    width: 50%;
  }
  .b_gallery .item:first-child img:nth-child(even) {
    aspect-ratio: 16/9;
  }
  .b_gallery .item:last-child img:nth-child(odd) {
    aspect-ratio: 16/9;
  }
  .b_gallery img {
    border-radius: 0 24px 0 24px;
  }
}

@media (min-width: 1024px) {
  .b_gallery {
    column-gap: 8px;
  }
  .b_gallery .item {
    row-gap: 8px;
  }
  .b_gallery img {
    border-radius: 0 26px 0 26px;
  }
}

@media (min-width: 1600px) {
  .b_gallery {
    column-gap: 10px;
  }
  .b_gallery .item {
    row-gap: 10px;
  }
  .b_gallery img {
    border-radius: 0 33px 0 33px;
  }
}

@media (min-width: 2300px) {
  .b_gallery {
    column-gap: 12px;
  }
  .b_gallery .item {
    row-gap: 12px;
  }
  .b_gallery img {
    border-radius: 0 39px 0 39px;
  }
}



/* Asim
========================================================================== */

.b_asim .main {
  text-align: center;
  margin-bottom: 3em;
}

@media (min-width: 1024px) {
  .b_asim {
    display: flex;
  }
  .b_asim .main {
    width: 30%;
    margin: 0;
    text-align: left;
    padding-right: 23px;
  }
  .b_asim .aside {
    width: 70%;
  }
}

@media (min-width: 1280px) {
  .b_asim .main {
    padding-right: 32px;
  }
}

@media (min-width: 1600px) {
  .b_asim .main {
    padding-right: 38px;
  }
}

@media (min-width: 2300px) {
  .b_asim .main {
    padding-right: 42px;
  }
}



/* Call to Action
========================================================================== */

.b_cta {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  margin-bottom: 11px;
  max-width: 1500px;
  margin-inline: auto;
}

.b_cta .main {
  background-color: var(--c-bahama);
  color: var(--c-white);
  border-radius: 0 24px 0 24px;
}

.b_cta .main a {
  color: var(--c-anzac);
}
.b_cta .main a:hover {
  color: var(--c-white);
}

.b_cta h2 {
  color: var(--c-white);
  text-transform: uppercase;
}

.b_cta p {
  margin-top: 1.25em;
  font-weight: 400;
}

.b_cta > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background-color: var(--c-astro);
  border: 2px solid var(--c-astro);
  color: var(--c-white);
  border-radius: 24px 0 24px 0;
}

.b_cta svg {
  display: block;
  width: 88px;
  height: 88px;
}

@media (min-width: 700px) {
  .b_cta {
    flex-direction: row;
    column-gap: 11px;
  }
  .b_cta .main {
    width: 80%;
  }
  .b_cta > a {
    width: 20%;
  }
}

@media (min-width: 1024px) {
  .b_cta .main {
    border-radius: 0 26px 0 26px;
  }
  .b_cta > a {
    border-radius: 26px 0 26px 0;
    transition: color 0.5s cubic-bezier(.61,.31,0,1), background-color 0.5s cubic-bezier(.61,.31,0,1);
  }
  .b_cta > a:hover {
    background-color: var(--c-white);
    color: var(--c-astro);
  }
}

@media (min-width: 1280px) {
  .b_cta {
    margin-bottom: 8px;
    column-gap: 8px;
  }
  .b_cta > a {
    border: 3px solid var(--c-astro);
  }
  .b_cta svg {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1600px) {
  .b_cta {
    margin-bottom: 10px;
    column-gap: 10px;
  }
  .b_cta .main {
    border-radius: 0 33px 0 33px;
  }
  .b_cta > a {
    border-radius: 33px 0 33px 0;
  }
  .b_cta svg {
    width: 115px;
    height: 115px;
  }
}

@media (min-width: 2300px) {
  .b_cta {
    max-width: 1900px;
    margin-bottom: 12px;
    column-gap: 12px;
  }
  .b_cta .main {
    border-radius: 0 39px 0 39px;
  }
  .b_cta > a {
    border-radius: 39px 0 39px 0;
    border: 4px solid var(--c-astro);
  }
  .b_cta svg {
    width: 140px;
    height: 140px;
  }
}



/* Timeline
========================================================================== */

.b_timeline {
  counter-reset: timeline-counter;
  border-left: 3px solid var(--c-anzac);
  padding-left: 34px;
  margin-left: 19px;
}

@media (min-width: 700px) {
  .b_timeline {
    padding-left: 50px;
  }
}

@media (min-width: 1024px) {
  .b_timeline {
    border-left: none;
    padding-left: 0px;
    margin-left: 0px;
  }
}



/* Full Page Card
========================================================================== */

.b_fp-card .aside {
  position: relative;
}

.b_fp-card .aside::after {
  content: "";
  display: block;
  height: 40px;
  width: 100%;
  margin-top: 11px;
  background-color: var(--c-anzac);
  border-radius: 0 24px 0 24px;
}

.b_fp-card .main {
  padding-top: 23px;
}

.b_fp-card .main p:first-child {
  font-weight: 600;
}

.b_fp-card img {
  border-radius: 0 24px 0 24px;
  aspect-ratio: 4/3;
}

.b_fp-card .c_tag {
  position: absolute;
  bottom: 74px;
  left: 23px;
}

/* --card */

.b_fp-card.b_fp-card--card {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
.b_fp-card.b_fp-card--card .main {
  background-color: var(--c-hawkes);
  padding: 28px 23px;
  border-radius: 0 24px 0 24px;
}
.b_fp-card.b_fp-card--card .divider {
  margin-top: 2.75em;
}
.b_fp-card.b_fp-card--card .main p:first-child {
  color: var(--c-bahama);
}

@media (min-width: 700px) {
  .b_fp-card .aside {
    position: relative;
    padding-left: 53px;
  }
  .b_fp-card .aside::after {
    width: 42px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
  }
  .b_fp-card .c_tag {
    left: auto;
    bottom: auto;
    top: 23px;
    right: 23px;
  }
}

@media (min-width: 1024px) {
  .b_fp-card {
    display: flex;
  }
  .b_fp-card .aside {
    padding-left: 50px;
    width: 60%;
  }
  .b_fp-card .aside::after {
    border-radius: 0 26px 0 26px;
  }
  .b_fp-card .main {
    width: 40%;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .b_fp-card img {
    border-radius: 0 26px 0 26px;
    aspect-ratio: 4/3;
    height: 100%;
  }
  /* --card */
  .b_fp-card.b_fp-card--card {
    flex-direction: row;
    column-gap: 8px;
  }
  .b_fp-card.b_fp-card--card .main {
    border-radius: 0 26px 0 26px;
  }
  .b_fp-card.b_fp-card--card h1 {
    margin-bottom: 1.25em;
  }
  .b_fp-card.b_fp-card--card .divider {
    margin-top: auto;
  }
}

@media (min-width: 1280px) {
  .b_fp-card .aside {
    padding-left: 66px;
    width: 50%;
  }
  .b_fp-card .aside::after {
    width: 58px;
  }
  .b_fp-card .main {
    padding: 0 32px;
    width: 50%;
  }
  .b_fp-card .c_tag {
    top: 32px;
    right: 32px;
  }
  /* --card */
  .b_fp-card.b_fp-card--card .main {
    padding: 36px 32px;
  }
}

@media (min-width: 1600px) {
  .b_fp-card .aside {
    padding-left: 78px;
  }
  .b_fp-card .aside::after {
    width: 68px;
    border-radius: 0 33px 0 33px;
  }
  .b_fp-card .main {
    padding: 0 38px;
  }
  .b_fp-card img {
    border-radius: 0 33px 0 33px;
  }
  .b_fp-card .c_tag {
    top: 38px;
    right: 38px;
  }
  /* --card */
  .b_fp-card.b_fp-card--card {
    column-gap: 10px;
  }
  .b_fp-card.b_fp-card--card .main {
    border-radius: 0 33px 0 33px;
    padding: 44px 38px;
  }
}

@media (min-width: 2300px) {
  .b_fp-card .aside {
    padding-left: 99px;
  }
  .b_fp-card .aside::after {
    width: 87px;
    border-radius: 0 39px 0 39px;
  }
  .b_fp-card .main {
    padding: 0 42px;
  }
  .b_fp-card img {
    border-radius: 0 39px 0 39px;
  }
  .b_fp-card .c_tag {
    top: 42px;
    right: 42px;
  }
  /* --card */
  .b_fp-card.b_fp-card--card {
    column-gap: 10px;
  }
  .b_fp-card.b_fp-card--card .main {
    border-radius: 0 39px 0 39px;
    padding: 50px 42px;
  }
}



/* Full Page Card
========================================================================== */

.b_recent {
  display: flex;
  flex-direction: column;
  row-gap: 1.75em;
}

@media (min-width: 700px) {
  .b_recent {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .b_recent .c_blog-card:first-child {
    width: 50%;
    padding-right: 5px;
  }
  .b_recent .c_blog-card:last-child {
    width: 50%;
    padding-left: 5px;
  }
}

@media (min-width: 1024px) {
  .b_recent .c_blog-card:first-child {
    padding-right: 4px;
  }
  .b_recent .c_blog-card:last-child {
    padding-left: 4px;
  }
}

@media (min-width: 1600px) {
  .b_recent .c_blog-card:first-child {
    padding-right: 5px;
  }
  .b_recent .c_blog-card:last-child {
    padding-left: 5px;
  }
}

@media (min-width: 2300px) {
  .b_recent .c_blog-card:first-child {
    padding-right: 6px;
  }
  .b_recent .c_blog-card:last-child {
    padding-left: 6px;
  }
}



/* Post
========================================================================== */

.b_post {
  max-width: 768px;
  margin-inline: auto;
}

@media (min-width: 1280px) {
  .b_post {
    max-width: 880px;
    margin-inline: auto;
  }
}

@media (min-width: 1600px) {
  .b_post {
    max-width: 1024px;
    margin-inline: auto;
  }
}

@media (min-width: 2300px) {
  .b_post {
    max-width: 1177px;
    margin-inline: auto;
  }
}


/* Post Footer
========================================================================== */

.b_post-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 2em;
}



/* Full Page List
========================================================================== */

.b_fp-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
}
.b_fp-list li {
  width: 50%;
}

@media (min-width: 700px) {
  .b_fp-list li {
    width: 25%;
  }
}

@media (min-width: 1024px) {
  .b_fp-list li {
    width: 20%;
  }
}

@media (min-width: 1024px) {
  .b_fp-list li {
    width: 20%;
  }
}

@media (min-width: 1280px) {
  .b_fp-list li {
    width: 14.285%;
  }
}

@media (min-width: 2300px) {
  .b_fp-list li {
    width: 12.5%;
  }
}



/* Loan Calculator
========================================================================== */

@media (min-width: 1280px) {
  .b_loan-calculator {
    position: relative;
    padding-left: 66px;
    max-width: 1306px;
    margin-inline: auto;
  }
  .b_loan-calculator::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    height: 100%;
    width: 58px;
    background: linear-gradient(0deg,rgba(6, 102, 162, 1) 0%, rgba(227, 167, 63, 1) 100%);
    border-radius: 0 26px 0 26px;
  }
}

@media (min-width: 1416px) {
  .b_loan-calculator::before {
    height: calc(100% - 5px);
  }
}

@media (min-width: 1600px) {
  .b_loan-calculator {
    padding-left: 78px;
    max-width: 1318px;
  }
  .b_loan-calculator::before {
    width: 68px;
    border-radius: 0 33px 0 33px;
  }
}

@media (min-width: 2300px) {
  .b_loan-calculator {
    padding-left: 99px;
    max-width: 1339px;
  }
  .b_loan-calculator::before {
    width: 87px;
    border-radius: 0 39px 0 39px;
  }
}



/* Seo Text
========================================================================== */

.b_seo-text {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}

@media (min-width: 700px) {
  .b_seo-text .aside {
    padding-left: 63px;
    position: relative;
  }
  .b_seo-text .aside::after {
    content: "";
    display: block;
    width: 52px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--c-anzac);
    opacity: 0.25;
    border-radius: 26px 0 26px 0;
  }
  .b_seo-text--invert .aside {
    padding-right: 63px;
    padding-left: 0;
  }
  .b_seo-text--invert .aside::after {
    left: auto;
    right: 0;
    background-color: var(--c-bahama);
    opacity: 0.25;
  }
}

@media (min-width: 1024px) {
  .b_seo-text {
    flex-direction: row;
    justify-content: space-between;
  }

  .b_seo-text .main {
    width: calc(42% - 12px);
  }

  .b_seo-text .main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .b_seo-text .aside {
    width: calc(58% - 12px);
    padding-left: 50px;
  }
  .b_seo-text .aside::after {
    width: 42px;
  }

  .b_seo-text--invert .aside {
    order: 2;
    padding-left: 0;
    padding-right: 50px;
  }
  .b_seo-text--invert .aside::after {
    width: 42px;
  }

  .b_seo-text--invert .main {
    order: 1;
  }
}

@media (min-width: 1280px) {
  .b_seo-text .aside {
    width: calc(58% - 16px);
    padding-left: 66px;
  }
  .b_seo-text .aside::after {
    width: 58px;
  }
  .b_seo-text--invert .aside {
    padding-right: 66px;
    padding-left: 0;
  }
  .b_seo-text--invert .aside::after {
    width: 58px;
  }
  .b_seo-text .main {
    width: calc(42% - 16px);
  }
}

@media (min-width: 1600px) {
  .b_seo-text .aside {
    width: calc(58% - 19px);
    padding-left: 78px;
  }
  .b_seo-text .aside::after {
    width: 68px;
    border-radius: 33px 0 33px 0;
  }
  .b_seo-text--invert .aside {
    padding-right: 78px;
    padding-left: 0;
  }
  .b_seo-text--invert .aside::after {
    width: 68px;
  }
  .b_seo-text .main {
    width: calc(42% - 19px);
  }
}

@media (min-width: 2300px) {
  .b_seo-text .aside {
    width: calc(58% - 21px);
    padding-left: 99px;
  }
  .b_seo-text .aside::after {
    width: 87px;
    border-radius: 39px 0 39px 0;
  }
  .b_seo-text--invert .aside {
    padding-right: 99px;
    padding-left: 0;
  }
  .b_seo-text--invert .aside::after {
    width: 87px;
  }
  .b_seo-text .main {
    width: calc(42% - 21px);
  }
}



/* Steps
========================================================================== */

.b_steps .aside {
  text-align: center;
  margin-bottom: 3em;
  text-transform: uppercase;
}

.b_steps .main {
  counter-reset: timeline-counter;
  border-left: 3px solid var(--c-anzac);
  padding-left: 34px;
  margin-left: 19px;
  display: flex;
  flex-direction: column;
  row-gap: 1.25em;
}

.b_steps article {
  position: relative;
}

.b_steps article::before {
  counter-increment: timeline-counter;
  content: counter(timeline-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -56px;
  width: 42px;
  height: 42px;
  background-color: var(--c-bahama);
  color: var(--c-white);
  border-radius: 50%;
  font-size: var(--fs-large);
}

@media (min-width: 700px) {
  .b_steps .main {
    padding-left: 50px;
  }
  .b_steps article::before {
    left: -72px;
  }
}

@media (min-width: 1024px) {
  .b_steps {
    display: flex;
    justify-content: space-between;
  }
  .b_steps .aside {
    width: calc(42% - 12px);
    text-align: left;
    margin-bottom: 0;
  }
  .b_steps .main {
    width: calc(58% - 12px);
    padding-left: 55px;
  }
  .b_steps article::before {
    left: -78px;
    top: -4px;
  }
}

@media (min-width: 1280px) {
  .b_steps .aside {
    width: calc(42% - 20px);
    text-align: left;
  }
  .b_steps .main {
    width: calc(58% - 20px);
  }
  .b_steps article::before {
    width: 50px;
    height: 50px;
    left: -82px;
    top: -9px;
  }
}

@media (min-width: 1600px) {
  .b_steps .aside {
    width: calc(42% - 25px);
    text-align: left;
  }
  .b_steps .main {
    width: calc(58% - 25px);
    padding-left: 70px;
  }
  .b_steps article::before {
    width: 54px;
    height: 54px;
    left: -99px;
    top: -9px;
  }
}

@media (min-width: 2300px) {
  .b_steps .aside {
    width: calc(42% - 40px);
    text-align: left;
  }
  .b_steps .main {
    width: calc(58% - 40px);
    padding-left: 100px;
  }
  .b_steps article::before {
    width: 65px;
    height: 65px;
    left: -133px;
    top: -10px;
  }
}



/* Bg with image
========================================================================== */

.b_bgwi {
  border-radius: 24px 0 24px 0;
  overflow: hidden;
}

.b_bgwi--citrine {
  background-color: var(--c-citrine);
}

.b_bgwi .aside {
  aspect-ratio: 4/3;
  border-radius: 24px 0 24px 0;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #e5e3df;
}

.b_bgwi .aside iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 414px) {
  .b_bgwi .c_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .b_bgwi .c_list li {
    width: 45%;
  }
}

@media (min-width: 700px) {
  .b_bgwi .c_list li {
    width: 31%;
  }
}

@media (min-width: 1024px) {
 .b_bgwi {
  display: flex;
  column-gap: 8px;
  justify-content: space-between;
  border-radius: 0;
  position: relative;
  padding-right: 50px;
 }
 .b_bgwi::after {
  content: "";
  display: block;
  width: 42px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--c-anzac);
  border-radius: 26px 0 26px 0;
 }
 .b_bgwi--citrine {
  background-color: transparent;
  }
 .b_bgwi .aside {
  width: 40%;
  border-radius: 0 26px 0 26px;
 }
 .b_bgwi .main {
  width: 60%;
  border-radius: 0 26px 0 26px;
 }
 .b_bgwi--citrine .main {
  background-color: var(--c-citrine);
 }
}

@media (min-width: 1280px) {
  .b_bgwi {
    padding-right: 66px;
  }
  .b_bgwi::after {
    width: 58px;
  }
}

@media (min-width: 1600px) {
 .b_bgwi {
  column-gap: 10px;
  padding-right: 78px;
 }
 .b_bgwi::after {
    width: 68px;
    border-radius: 33px 0 33px 0;
  }
 .b_bgwi .aside {
  border-radius: 0 33px 0 33px;
 }
 .b_bgwi .main {
  border-radius: 0 33px 0 33px;
 }
}

@media (min-width: 2300px) {
 .b_bgwi {
  column-gap: 12px;
  padding-right: 99px;
 }
 .b_bgwi::after {
    width: 87px;
    border-radius: 39px 0 39px 0;
  }
 .b_bgwi .aside {
  border-radius: 0 39px 0 39px;
 }
 .b_bgwi .main {
  border-radius: 0 39px 0 39px;
 }
}



/* Full page iframe
========================================================================== */

.b_fpi {
  aspect-ratio: 3/4;
}
.b_fpi::after {
  content: "";
  display: block;
  height: 40px;
  margin-top: 11px;
  border-radius: 24px 0 24px 0;
  background-color: var(--c-anzac);
}
.b_fpi.b_fpi--kitchen-visualizer {
  aspect-ratio: auto;
  height: 600px;
}
.b_fpi.b_fpi--bathoom-visualizer {
  aspect-ratio: auto;
  height: 600px;
}

.b_fpi iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px 0 24px 0;
}

@media (min-width: 500px) {
  .b_fpi {
    aspect-ratio: 1/1;
  }
}

@media (min-width: 700px) {
  .b_fpi {
    aspect-ratio: 4/3;
  }
  .b_fpi.b_fpi--kitchen-visualizer {
    height: 800px;
  }
  .b_fpi.b_fpi--bathoom-visualizer {
    height: 800px;
  }
}

@media (min-width: 1024px) {
  .b_fpi {
    aspect-ratio: 16/9;
    position: relative;
    padding-left: 50px;
  }
  .b_fpi::after {
    width: 42px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin: 0;
    border-radius: 0 26px 0 26px;
  }
  .b_fpi iframe {
    border-radius: 26px 0 26px 0;
  }
}

@media (min-width: 1280px) {
  .b_fpi {
    padding-left: 68px;
  }
  .b_fpi::after {
    width: 58px;
  }
  .b_fpi.b_fpi--kitchen-visualizer {
    height: 650px;
  }
  .b_fpi.b_fpi--bathoom-visualizer {
    height: 650px;
  }
}

@media (min-width: 1600px) {
  .b_fpi {
    padding-left: 78px;
  }
  .b_fpi::after {
    width: 68px;
    border-radius: 0 33px 0 33px;
  }
  .b_fpi iframe {
    border-radius: 33px 0 33px 0;
  }
  .b_fpi.b_fpi--kitchen-visualizer {
    height: 940px;
  }
  .b_fpi.b_fpi--bathoom-visualizer {
    height: 860px;
  }
}

@media (min-width: 2300px) {
  .b_fpi {
    padding-left: 99px;
  }
  .b_fpi::after {
    width: 87px;
    border-radius: 0 39px 0 39px;
  }
  .b_fpi iframe {
    border-radius: 39px 0 39px 0;
  }
  .b_fpi.b_fpi--kitchen-visualizer {
    height: 1170px;
  }
  .b_fpi.b_fpi--bathoom-visualizer {
    height: 1070px;
  }
}



/* Careers
========================================================================== */

.b_careers {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}

@media (min-width: 1024px) {
  .b_careers {
    row-gap: 8px;
  }
}

@media (min-width: 1600px) {
  .b_careers {
    row-gap: 10px;
  }
}

@media (min-width: 2300px) {
  .b_careers {
    row-gap: 12px;
  }
}



/* Labels
========================================================================== */

.b_labels {
  color: var(--c-bahama);
  display: flex;
  column-gap: 1.5em;
}

.b_labels .item {
  display: flex;
  align-items: center;
}

.b_labels svg {
  margin-top: -1px;
  width: 32px;
  height: 32px;
  fill: var(--c-bahama);
  color: var(--c-bahama);
}

.b_labels span {
  display: flex;
  align-items: center;
  height: 32px;
  margin-left: 5px;
}

@media (min-width: 1600px) {
  .b_labels svg {
    width: 35px;
    height: 35px;
    margin-top: -2px;
  }
  .b_labels span {
    height: 35px;
  }
}

@media (min-width: 2300px) {
  .b_labels svg {
    width: 38px;
    height: 38px;
    margin-top: -3px;
  }
  .b_labels span {
    height: 38px;
  }
}




/* Train
========================================================================== */

.b_train {
  display: grid;
  row-gap: 11px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: 
    "🏠"
    "🍖"
    "🍳"
    "🍌";
}

.b_train .item--1 {
  grid-area: 🏠;
}

.b_train .item--2 {
  grid-area: 🍖;
}

.b_train .item--3 {
  grid-area: 🍳;
}

.b_train .item--4 {
  grid-area: 🍌;
}

.b_train .item--1,
.b_train .item--1 .l_subtitle,
.b_train .item--1 .c_icon-link {
  color: var(--c-white);
  font-weight: 400;
}

.b_train .item--1 {
  border-radius: 0 24px 0 24px;
}

.b_train article {
  display: flex;
  flex-direction: column;
  border-radius: 0 24px 0 24px;
}

.b_train article svg {
  width: 48px;
  height: 48px;
  fill: var(--c-bahama);
  color: var(--c-bahama);
}


@media (min-width: 700px) {
  .b_train {
    column-gap: 11px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
    "🏠 🏠 🏠"
    "🍖 🍳 🍌";
  }
}

@media (min-width: 1024px) {
  .b_train {
    row-gap: 8px;
    column-gap: 8px;
  }
  .b_train .item--1 {
    border-radius: 0 26px 0 26px;
  }
  .b_train article {
    border-radius: 0 26px 0 26px;
  }
  .b_train .item--1 .c_icon-link:hover {
    color: var(--c-anzac);
  }
}

@media (min-width: 1280px) {
  .b_train {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-areas: "🏠 🍖 🍳 🍌";
  }
  .b_train article  .c_btn-blue {
    margin-top: auto;
  }
}

@media (min-width: 1600px) {
  .b_train {
    row-gap: 10px;
    column-gap: 10px;
  }
  .b_train .item--1 {
    border-radius: 0 33px 0 33px;
  }
  .b_train article {
    border-radius: 0 33px 0 33px;
  }
  .b_train article svg {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 2300px) {
  .b_train {
    row-gap: 12px;
    column-gap: 12px;
  }
  .b_train .item--1 {
    border-radius: 0 39px 0 39px;
  }
  .b_train article {
    border-radius: 0 39px 0 39px;
  }
  .b_train article svg {
    width: 56px;
    height: 56px;
  }
}



/* Icon Links
========================================================================== */

.b_icon-links {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}



/* Included Table
========================================================================== */

.b_incl article {
  padding: 0.75em 0;
  border-bottom: 2px solid var(--c-janna);
  display: flex;
  flex-direction: column;
  row-gap: 0.75em;
}
.b_incl article:first-child {
  border-top: 2px solid var(--c-janna);
}

@media (min-width: 700px) {
  .b_incl article {
    flex-direction: row;
    align-items: center;
  }
  .b_incl article .item:first-child {
    width: 40%;
    padding-right: 0.75em;
  }
  .b_incl article .item:last-child {
    width: 60%;
  }
}



/* Calendly
========================================================================== */

.b_calendly {
  margin-top: 1em;
  margin-bottom: 0.25em;
}

.b_calendly .calendly-inline-widget {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 248%;
}
.b_calendly.b_calendly--inhome .calendly-inline-widget {
  padding-top: 288%;
}

.b_calendly iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 700px) {
  .b_calendly .calendly-inline-widget {
    padding-top: 138%;
  }
  .b_calendly.b_calendly--inhome .calendly-inline-widget {
    padding-top: 151%;
  }
}

@media (min-width: 1024px) {
  .b_calendly {
    margin-top: 0;
    margin-bottom: 0;
  }
}


@media (min-width: 1180px) {
  .b_calendly .calendly-inline-widget {
    padding-top: 67%;
  }
  .b_calendly.b_calendly--inhome .calendly-inline-widget {
    padding-top: 71%;
  }
}

@media (min-width: 1600px) {
  .b_calendly .calendly-inline-widget {
    padding-top: 58%;
  }
  .b_calendly.b_calendly--inhome .calendly-inline-widget {
    padding-top: 61%;
  }
}

@media (min-width: 2300px) {
  .b_calendly .calendly-inline-widget {
    padding-top: 46%;
  }
  .b_calendly.b_calendly--inhome .calendly-inline-widget {
    padding-top: 49%;
  }
}