@charset "UTF-8";
/*! Slick Design CSS */
.width-xl {
  max-width: 1920px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.width-large {
  max-width: 1440px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.width-medium {
  max-width: 1366px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.width-tablet {
  max-width: 1024px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.width-mobile {
  max-width: 768px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.width-small {
  max-width: 400px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px auto;
}

.has-black-color {
  color: #000000;
}

.has-black-background-color {
  background: #000000;
}

.has-grey-dark-color {
  color: #666666;
}

.has-grey-dark-background-color {
  background: #666666;
}

.has-grey-color {
  color: #aaaaaa;
}

.has-grey-background-color {
  background: #aaaaaa;
}

.has-grey-light-color {
  color: #dddddd;
}

.has-grey-light-background-color {
  background: #dddddd;
}

.has-font-color {
  color: #373737;
}

.has-font-background-color {
  background: #373737;
}

.has-light-color {
  color: #eeeeee;
}

.has-light-background-color {
  background: #eeeeee;
}

.has-white-color {
  color: #FFFFFF;
}

.has-white-background-color {
  background: #FFFFFF;
}

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

*:focus {
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Heebo", sans-serif;
  font-size: 1.2rem;
  color: #373737;
  line-height: 1.4;
  margin: 0px;
}

/*********************************** DOM ELEMENTS ************************************/
h1, h2, h3 {
  font-weight: 700;
}

h1 {
  color: #cf046b;
  font-size: 1.8em;
  text-transform: uppercase;
}

@media screen and (min-width: 767px) {
  h1 {
    font-size: 2.5em;
  }
}

h2 {
  font-size: 1.6em;
  text-transform: capitalize;
  margin: 7px 0px;
}

h3 {
  font-size: 1.2em;
  color: #cf046b;
}

strong, b {
  font-weight: 800;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #cf046b;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

a:hover, a:focus {
  color: #840344;
}

svg.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/*********************************** COMMON CLASSES ************************************/
.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

@media screen and (min-width: 767px) {
  .mobile-only,
  .mobileonly {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .desktop-only,
  .desktoponly {
    display: none;
  }
}

.nodisplay {
  display: none;
}

.nomargin {
  margin: 0px !important;
}

.nopadding {
  padding: 0px !important;
}

ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px !important;
}

.accordion div {
  position: relative;
}

.accordion div label {
  color: #373737;
  font-weight: bold;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #373737;
  cursor: pointer;
}

.accordion div label:after {
  content: '\e90f';
  font-family: 'Icomoon';
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  color: inherit;
  float: right;
  font-size: 20px;
}

.accordion div input {
  -webkit-appearance: none;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  cursor: pointer;
}

.accordion div input:checked + label + .content {
  max-height: 100vh;
  overflow-y: auto;
  padding: 16px 0;
  opacity: 1;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear;
}

.accordion div input:checked + label:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion div .content {
  overflow: hidden;
  max-height: 0px;
  padding: 0;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, padding 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, padding 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

.accordion.arrows div label:after {
  content: '\e905';
}

.accordion.arrows div input:checked + label:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion.plus-minus div label:after {
  content: '\e90f';
}

.accordion.plus-minus div input:checked + label:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.tabs-group {
  margin-bottom: 24px;
}

.tabs-group .tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabs-group .tabs ul > li {
  float: left;
}

.tabs-group .tabs ul > li > a {
  display: block;
  padding: 16px 24px;
  background: #cf046b;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.tabs-group .tabs ul > li > a.is-active {
  background: #04cf68;
}

.tabs-group .tabs ul > li > a:hover, .tabs-group .tabs ul > li > a:focus {
  background: #04cf68;
}

.tabs-group .tab-content {
  display: none;
  padding: 32px 0;
}

.tabs-group .tab-content.is-active {
  display: block;
  -webkit-animation-name: activate;
          animation-name: activate;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.tabs-group .tab-content *:first-child {
  margin-top: 0;
}

.tabs-group .tab-content *:last-child {
  margin-bottom: 0;
}

main {
  margin-top: 90px;
}

@media screen and (min-width: 767px) {
  main {
    margin-top: 125px;
  }
}

header {
  position: fixed;
  width: 100%;
  height: 125px;
  background: #FFFFFF;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #cf046b;
  padding: 10px;
}

header #logo > img {
  height: 74px;
  width: auto;
  margin: 10px 0px;
}

header #logo .img-only {
  border-radius: 100%;
  border: 3px solid #cf046b;
  overflow: hidden;
  width: 100px;
  height: 100px;
  padding: 6px 7px 0px 2px;
  float: left;
  margin-right: 10px;
  position: relative;
  z-index: 100000;
  background: #fff;
}

@media screen and (max-width: 768px) {
  header {
    height: 90px;
  }
  header > div {
    padding-left: 0px !important;
  }
  header #logo > img {
    height: 50px;
  }
  header #logo .img-only {
    width: 70px;
    height: 70px;
  }
}

@media screen and (min-width: 767px) {
  header > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header > div #logo {
    float: left;
  }
  header > div .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header > div .menu li {
    display: inline-block;
    padding: 10px;
  }
  header > div .menu li a {
    text-transform: uppercase;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  header .menu-container {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 0;
    top: 0;
    -webkit-transition: all 0s .3s;
    transition: all 0s .3s;
  }
  header .menu-container .corner {
    background-color: #cf046b;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  header .menu-container nav {
    position: absolute;
    left: 0px;
    top: 20vh;
    z-index: 3;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .3s 0s;
    transition: all .3s 0s;
    pointer-events: none;
  }
  header .menu-container nav a {
    display: block;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    margin: 2.4rem;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: all .3s .3s;
    transition: all .3s .3s;
  }
  header #hamburger,
  header label,
  header .corner {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0px;
    right: 0px;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    border-radius: 100%;
  }
  header label[for="hamburger"] {
    z-index: 2;
    cursor: pointer;
    tap-highlight-color: transparent;
  }
  header label[for="hamburger"]:before {
    content: "";
    position: absolute;
    top: 65%;
    right: 65%;
    width: 0.85em;
    height: 0.15em;
    background: white;
    -webkit-box-shadow: 0 0.25em 0 0 white, 0 0.5em 0 0 white;
            box-shadow: 0 0.25em 0 0 white, 0 0.5em 0 0 white;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  header #hamburger {
    display: none;
  }
  header #hamburger:checked ~ .menu-container {
    width: 100%;
    height: 120vh;
    -webkit-transition: all 0s 0s;
    transition: all 0s 0s;
  }
  header #hamburger:checked ~ .menu-container .corner {
    width: 275vh;
    height: 275vh;
  }
  header #hamburger:checked ~ .menu-container nav {
    opacity: 1;
    -webkit-transition: all .3s .2s;
    transition: all .3s .2s;
    pointer-events: all;
  }
  header #hamburger:checked ~ .menu-container nav a {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all .3s .2s;
    transition: all .3s .2s;
  }
}

div#footer {
  background-color: #eeeeee;
  border-bottom: 1px solid #ccc;
  padding: 20px 0px 0px;
  color: #444;
  font-size: 0.9rem;
  position: relative;
}

div#footer div.grid {
  display: grid;
  grid-template-columns: 4fr 3fr 2fr 2fr;
  grid-gap: 10px;
}

div#footer .logo {
  display: block;
  max-width: 50vw;
  max-height: 87px;
}

div#footer abbr[title], div#footer acronym[title] {
  text-decoration: none;
}

div#footer p.title {
  text-transform: uppercase;
  font-size: 20px;
}

div#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

div#footer ul li {
  padding: 5px 0px;
}

div#footer .icon {
  font-size: 20px;
  margin: 10px 12px;
}

@media screen and (max-width: 768px) {
  div#footer div.grid {
    display: block;
  }
  div#footer div.grid .cleaner {
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-width: 200px;
  }
}

div#copyright {
  text-align: center;
  background: #ddd;
  padding: 30px 0px;
  margin: 0px;
  border-top: 1px solid #fff;
  font-size: 0.8em;
}

div#copyright a {
  color: #840344;
}

div#copyright a:hover, div#copyright a:focus {
  color: #cf046b;
}

button,
a.wp-block-button__link,
input[type="submit"] {
  font-size: 16px;
  padding: 16px;
  border: 0px;
  outline: none;
  cursor: pointer;
  background: #cf046b;
  color: #FFFFFF;
  border: 0px;
  padding: 15px 30px;
  margin: 10px auto;
  display: inline-block;
  border-radius: 4px;
  -webkit-box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

button.cta, .cta button,
a.wp-block-button__link.cta, .cta
a.wp-block-button__link,
input[type="submit"].cta, .cta
input[type="submit"] {
  font-size: 20px;
}

button:active, button:hover, button:focus,
a.wp-block-button__link:active,
a.wp-block-button__link:hover,
a.wp-block-button__link:focus,
input[type="submit"]:active,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #840344;
  color: #FFFFFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select, textarea {
  font-size: 16px;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  font-family: arial, san-serif;
  width: 100%;
  margin: 5px auto;
  -webkit-box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
}

.contact {
  background: #eee url(../images/shinytiles.jpg) center 70% no-repeat;
  padding: 50px 0px;
  margin-top: 120px;
  background-size: cover;
  -webkit-box-shadow: inset 0px 0px 23px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 0px 23px rgba(0, 0, 0, 0.5);
}

.contact h3 {
  font-size: 2em;
  margin: 0px auto 10px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

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

.contact label {
  font-size: 0px;
}

@media screen and (min-width: 767px) {
  .contact p:nth-child(2),
  .contact p:nth-child(3),
  .contact p:nth-child(4),
  .contact p:nth-child(5) {
    width: 49%;
    display: inline-block;
    float: left;
  }
  .contact p:nth-child(2),
  .contact p:nth-child(3) {
    margin-bottom: 0px;
  }
  .contact p:nth-child(2),
  .contact p:nth-child(4) {
    margin-right: 2%;
  }
  .contact p:nth-child(6) {
    clear: both;
  }
}

.contact input[type="submit"] {
  margin: 20px auto;
  display: block;
}

div.wpcf7-response-output {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  -webkit-box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 1px rgba(0, 0, 0, 0.1);
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #cf046b;
  border-color: #cf046b;
}

.card-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin: 30px 0px;
}

.card-holder .card {
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-holder .card:hover, .card-holder .card:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.card-holder .card .img {
  padding-top: 40%;
  overflow: hidden;
  border-radius: 4px 4px 0px 0px;
  background-position: center bottom !important;
}

.card-holder .card h3, .card-holder .card p {
  padding: 10px 20px;
  margin: 0px;
}

.card-holder.reviews .card {
  position: relative;
  padding: 10px 20px;
}

.card-holder.reviews .card > * {
  position: relative;
  z-index: 1;
}

.card-holder.reviews .card p {
  padding: 10px 0px;
}

.card-holder.reviews .card p.date {
  font-size: 12px;
}

.card-holder.reviews .card p.client {
  font-style: italic;
}

.card-holder.reviews .card:after {
  content: '”';
  position: absolute;
  top: -80px;
  font-size: 500px;
  color: #ddd;
  z-index: -1;
  right: 0px;
  line-height: 1;
  font-family: arial, serif;
}

.card-holder.contact-us .card {
  padding: 0px;
}

.card-holder.contact-us .card h3 {
  padding: 20px;
  color: #FFFFFF;
  background: #cf046b;
  overflow: hidden;
  border-radius: 4px 4px 0px 0px;
  white-space: nowrap;
}

.card-holder.contact-us .card p {
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .card-holder {
    grid-gap: 20px;
  }
  .card-holder.services, .card-holder.reviews {
    grid-template-columns: 1fr 1fr;
  }
  .card-holder.services .img, .card-holder.reviews .img {
    padding-top: 50%;
  }
  .card-holder.services .card:after, .card-holder.reviews .card:after {
    top: -65px;
    font-size: 475px;
  }
  .card-holder.contact-us {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 400px) {
  .card-holder {
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
  .card-holder.services, .card-holder.reviews {
    grid-template-columns: 1fr;
  }
  .card-holder.services .img, .card-holder.reviews .img {
    padding-top: 60%;
  }
  .card-holder.services .card:after, .card-holder.reviews .card:after {
    font-size: 450px;
  }
}

.wp-block-gallery {
  margin-bottom: 60px;
}

.wp-block-gallery li.blocks-gallery-item {
  max-height: 18vw;
}

.wp-block-gallery li.blocks-gallery-item img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wp-block-gallery li.blocks-gallery-item a {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wp-block-gallery li.blocks-gallery-item a:hover, .wp-block-gallery li.blocks-gallery-item a:focus, .wp-block-gallery li.blocks-gallery-item a:active {
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

h1 {
  padding-top: 60px;
}

.page-content .search-form form {
  margin-bottom: 20px;
}

.page-content .search-form form label {
  font-size: 0px;
}

.page-content .search-form form input[type="text"] {
  width: calc(100% - 180px) !important;
  display: inline-block;
}

.page-content .search-form form input[type="submit"] {
  width: 150px;
  margin-left: 25px;
  background: #cf046b;
  border-radius: 0px;
  display: inline-block;
  height: 50px;
  border: 0px;
  cursor: pointer;
}

.page-content .search-form form input[type="submit"]:hover {
  background: #04cf68;
}

.page-content .search-form .count {
  margin-bottom: 40px;
}

.page-content .search-form .result {
  margin: 40px 0px;
}

.page-content .search-form .result h4 {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.page-content .search-form .result h4 .type {
  font-size: 0.9em;
}

.home .wp-block-cover {
  width: calc(100vw + 10px);
  height: 65vh;
  margin-left: calc(-10px - 30px);
  margin-bottom: 40px;
  -webkit-box-shadow: inset 0px 0px 23px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 0px 23px rgba(0, 0, 0, 0.5);
  background-position: center center;
}

.home .wp-block-cover > div {
  width: 100%;
  max-width: 1366px;
  padding: 0px 30px;
}

@media screen and (min-width: 1023px) {
  .home .wp-block-cover > div h3 {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 1365px) {
  .home .wp-block-cover {
    margin-left: calc(-50vw + 683px - 15px - 10px);
  }
}

@media screen and (max-width: 768px) {
  .home .wp-block-cover {
    text-align: center;
  }
  .home .wp-block-cover h1 {
    padding-top: 0px;
  }
  .home .wp-block-cover h2, .home .wp-block-cover h3 {
    font-size: 1em;
  }
}

.full-width {
  position: relative;
  padding: 60px 0px;
  margin: 60px 0px;
}

.full-width:before {
  content: '';
  background: inherit;
  width: 300%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: calc(0px - 30px);
  z-index: -1;
}

@media screen and (min-width: 1365px) {
  .full-width:before {
    width: 100vw;
    margin-left: calc(-50vw + 683px - 15px);
  }
}
