/* .dilate-template <css_selector> { ... } */
:root {
  --color1: #000;
  --color2: #FF914C;
  --maxWidth: 1920px;
  --serifFont: 'Cormorant SC', 'Times New Roman', Times, serif;
  --proximaFont: "proxima-nova", "Helvetica Neue", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  color: var(--color1);
  -webkit-font-smoothing: antialiased;
}
.dilate-template .headline-h1 {
  font-family: var(--serifFont);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.15;
}
.dilate-template .headline-h2 {
  position: relative;
  font-family: var(--serifFont);
  font-size: 45px;
  font-weight: 400;
  line-height: .9;
}
.dilate-template .headline-h2.bordered::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -23px;
  width: 30vw;
  height: 7px;
  background-color: #E4E4E4;
}
.dilate-template .headline-h2.bordered.border-centered::before {
  left: 50%;
  transform: translateX(-50%);
}

.dilate-template #main {
  max-width: 100% !important;
  padding-bottom: 0;
}
.dilate-template .site-content {
  padding: 0 !important;
}
.container {
  width: 100%;
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.btn-solid-black,
.btn-outline-white, 
.btn-outline-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  height: 50px;
  font-family: var(--proximaFont);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: .8em 1.2em;
}
.btn-solid-black {
  color: #FFF;
  background-color: var(--color1);
}
.btn-outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #FFF;
}
.btn-outline-black {
  background: transparent;
  border: 1px solid var(--color1);
  color: var(--color1);
}
.button-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dilate-template header#masthead.is-sticky .logo,
.dilate-template header#masthead.is-sticky .logo img {
  transition: all .3s ease-out;
}
.dilate-template .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0 !important;
}
.dilate-template .main-navigation .header-actions {
  display: flex;
  height: 60px;
  margin-left: 1em;
  margin-right: 5em;
  margin-top: 1em;
}
.dilate-template .main-navigation .btn-call {
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  width: 68px; 
  height: 100%;
}
.dilate-template .main-navigation .btn-enquire {
  display: none; 
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--color2);
  min-width: 0;
  height: 100%;
  font-family: var(--proximaFont);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: .5em 2em;
}
.dilate-template .main-navigation li a {
  font-family: var(--proximaFont);
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dilate-template .main-navigation li.menu-item-has-children > a:after {
  top: 50%;
}
.dilate-template footer#site-footer .wp-block-columns {
  max-width: var(--maxWidth) !important;
}
.dilate-template footer#site-footer .wp-block-group.has-background {
  background-color: var(--color1) !important;
}

.dilate-template .splide .splide__slide,
.dilate-template .splide__pagination li {
  padding-left: 0;
  margin: 0;
}
.dilate-template .splide .splide__slide::before,
.dilate-template .splide__pagination li::before {
  display: none;
}

@media (max-width: 959px) {
  /* .dilate-template .menu-toggle {
    right: 35px;
  } */
}
@media (max-width: 767px) {
  .dilate-template .hide-mobile {
    display: none;
  }
}
@media (min-width: 722px) { 
  .dilate-template header#masthead.is-sticky .logo img {
    width: 91px;
  } 
  .dilate-template header#masthead.is-sticky .site-header .logo {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .dilate-template .hide-desktop {
    display: none !important;
  }
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .dilate-template .button-wrap {
    flex-direction: row;
  }
  .btn-solid-black, .btn-outline-white, .btn-outline-black {
    height: 65px;
    font-size: 14px;
    letter-spacing: 7px;
  }
  .dilate-template .main-navigation .btn-enquire {
    display: inline-flex;
  }
}
@media (min-width: 959px) { 
  .dilate-template .site-header .logo {
    padding-top: 5px;
  }
}
@media (min-width: 960px) { 
  .dilate-template .main-navigation .header-actions {
    margin-right: -24px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .dilate-template .main-navigation .header-actions {
    height: 60px;
  }
  .dilate-template .headline-h1 {
    font-size: 110px;
  }
  .dilate-template .headline-h2 {
    font-size: 65px;
  }
  .dilate-template .button-wrap {
    gap: 20px;
  }
  .dilate-template .headline-h2.bordered::before {
    bottom: -26px;
  }
}
@media (min-width: 1200px) { 
  .dilate-template .main-navigation .header-actions {
    height: 70px;
  }
}
@media (min-width: 1350px) {
  .dilate-template .headline-h1 {
    font-size: 130px;
  }
  .dilate-template .main-navigation .btn-call {
    width: 88px; 
  }
  .dilate-template .main-navigation .btn-enquire {
    min-width: 278px;
  }
  .dilate-template .main-navigation li a {
    letter-spacing: 3.2px;
  }
}
@media (min-width: 1600px) {
  .dilate-template .main-navigation .header-actions {
    height: 88px;
  }
  .dilate-template .headline-h1 {
    font-size: 165px;
  }
  .dilate-template .headline-h2 {
    font-size: 85px;
    line-height: .8;
  }
  .dilate-template .headline-h2.bordered::before {
    bottom: -35px;
    width: 412px;
  }
  .btn-solid-black, .btn-outline-white, .btn-outline-black {
    min-width: 313px;
    height: 80px;
  }
  .dilate-template .main-navigation li a {
    font-size: 14px;
    letter-spacing: 4.2px;
  }
}