/* CSS Document */
/*

Reboot

Normalization of HTML elements, manually forked from Normalize.css to remove styles targeting irrelevant browsers while applying new styles.

Normalize is licensed MIT. https://github.com/necolas/normalize.css

* Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

*/
/*

Document

1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.

2. Change the default font family in all browsers.

3. Correct the line height in all browsers.

4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.

5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract.

6. Change the default tap highlight to be completely transparent in iOS.

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

html {
  font-family: sans-serif;
  /* 2 */
  line-height: 1.15;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: transparent;
  /* 6 */ }

/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
@-ms-viewport {
  width: device-width; }

/* Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

/*
Body

1. Remove the margin in all browsers.
2. As a best practice, apply a default `background-color`.
3. Set an explicit initial text-align value so that we can later use the `inherit` value on things like `<th>` elements.
*/
body {
  margin: 0;
  /* 1 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  /* 3 */
  background-color: #fff;
  /* 2 */ }

/*
Suppress the focus outline on elements that cannot be accessed via keyboard.
This prevents an unwanted focus outline from appearing around elements that might still respond to pointer events.

Credit: https://github.com/suitcss/base
*/
[tabindex="-1"]:focus {
  outline: none !important; }

/* 
Content grouping

1. Add the correct box sizing in Firefox.
2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* 
Typography
*/
/* 
Remove top margins from headings
By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top margin for easier control within type scales as it avoids margin collapsing.
*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

/*
Reset margins on paragraphs

Similarly, the top margin on `<p>`s get reset. However, we also reset the bottom margin to use `rem` units instead of `em`.
*/
p {
  margin-top: 0;
  margin-bottom: 1rem; }

/*
Abbreviations

1. Remove the bottom border in Firefox 39-.
2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
3. Add explicit cursor to indicate changed behavior.
4. Duplicate behavior to the data-* attribute for our tooltip plugin
*/
abbr[title],
abbr[data-original-title] {
  /* 4 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
  cursor: help;
  /* 3 */
  border-bottom: 0;
  /* 1 */ }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0;
  /* Undo browser default */ }

blockquote {
  margin: 0 0 1rem; }

dfn {
  font-style: italic;
  /* Add the correct font style in Android 4.3- */ }

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */ }

small {
  font-size: 80%;
  /* Add the correct font size in all browsers */ }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

/*

Links

*/
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+. */ }

a:hover {
  color: #0056b3;
  text-decoration: underline; }

/*
And undo these styles for placeholder links/named anchors (without href) which have not been made explicitly keyboard-focusable (without tabindex). It would be more straightforward to just use a[href] in previous block, but that causes specificity issues in many other styles that are too complex to fix.

See https://github.com/twbs/bootstrap/issues/19402
*/
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus {
  outline: 0; }

/*

Code

*/
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* Correct the inheritance and scaling of font size in all browsers. */
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers. */ }

pre {
  /* Remove browser default top margin */
  margin-top: 0;
  /* Reset browser default of `1em` to use `rem`s */
  margin-bottom: 1rem;
  /* Don't allow content to break outside */
  overflow: auto;
  /* We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract. */
  -ms-overflow-style: scrollbar; }

/*

Figures

*/
figure {
  /* Apply a consistent margin strategy (matches our type styles). */
  margin: 0 0 1rem; }

/*

Images and content

*/
img {
  vertical-align: middle;
  border-style: none;
  /* Remove the border on images inside links in IE 10-. */ }

svg:not(:root) {
  overflow: hidden;
  /* Hide the overflow in IE */ }

/*
Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.

In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present. However, they DO support removing the click delay via `touch-action: manipulation`.

See:

* https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch

* https://caniuse.com/#feat=css-touch-action

*  https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
*/
a,
area,
button,
[role="button"],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* 

Tables 

*/
table {
  border-collapse: collapse;
  /* Prevent double borders */ }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom; }

th {
  /* Matches default `<td>` alignment by inheriting from the `<body>`, or the closest parent with a set `text-align`. */
  text-align: inherit; }

/* 

Forms

*/
label {
  /* Allow labels to use `margin` for spacing. */
  display: inline-block;
  margin-bottom: .5rem; }

/*
Remove the default `border-radius` that macOS Chrome adds.

Details at https://github.com/twbs/bootstrap/issues/24093
*/
button {
  border-radius: 0; }

/*
Work around a Firefox/IE bug where the transparent `button` background results in a loss of the default `button` focus styles.

Credit: https://github.com/suitcss/base/
*/
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  /* Remove the margin in Firefox and Safari */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible;
  /* Show the overflow in Edge */ }

button,
select {
  text-transform: none;
  /* Remove the inheritance of text transform in Firefox */ }

/*
1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4.
2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/*
Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  /* 1. Add the correct box sizing in IE 10- */
  padding: 0;
  /* 2. Remove the padding in IE 10- */ }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  /* 
  Remove the default appearance of temporal inputs to avoid a Mobile Safari bug where setting a custom line-height prevents text from being vertically centered within the input.
  
  See https://bugs.webkit.org/show_bug.cgi?id=139848
  and https://github.com/twbs/bootstrap/issues/11266
  */
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  /* Remove the default vertical scrollbar in IE. */
  /* Textareas should really only resize vertically so they don't break their (horizontal) containers. */
  resize: vertical; }

fieldset {
  /* 
  Browsers set a default `min-width: min-content;` on fieldsets, unlike e.g. `<div>`s, which have `min-width: 0;` by default. So we reset that to ensure fieldsets behave more like a standard block element.
  
  See https://github.com/twbs/bootstrap/issues/12359
  and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements  
  */
  min-width: 0;
  /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
  padding: 0;
  margin: 0;
  border: 0; }

/*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
*/
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  /* 1 */
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

progress {
  vertical-align: baseline;
  /* Add the correct vertical alignment in Chrome, Firefox, and Opera. */ }

/* 
Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  /* 
  This overrides the extra rounded corners on search inputs in iOS so that our `.form-control` class can properly style them. Note that this cannot simply be added to `.form-control` as it's not specific enough. 
  
  For details, see https://github.com/twbs/bootstrap/issues/11586.
  */
  outline-offset: -2px;
  -webkit-appearance: none; }

/*
Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

/*
Correct element displays
*/
output {
  display: inline-block; }

summary {
  display: list-item;
  /* Add the correct display in all browsers */ }

template {
  display: none;
  /* Add the correct display in IE */ }

/* 
Always hide an element with the `hidden` HTML attribute (from PureCSS).
Needed for proper display in IE 10-.
*/
[hidden] {
  display: none !important; }

/**/
/**/
/**/
/*--------------------------------------------------------------
# Mobile Sizes
iPhone5 mobile : 320 * 568
iPhone5 mobile(landscape) : 568 * 320
iPhone6s mobile : 375 * 667
iPhone6s mobile(landscape) : 667 * 375
iPhone8Plus mobile : 414 * 736
iPhone8Plus mobile(landscape) : 736 * 414
iPad : 768 * 1024
iPad(landscape) : 1024 * 768
iPad Pro : 1024 * 1366
iPad Pro(landscape) : 1366 * 1024
--------------------------------------------------------------*/
/**/
.services .header a,
.services .header .nav li a,
.services .header .phone-icon svg,
.contact .header a,
.contact .header .phone-icon svg,
.contact .header .nav li a,
.terms .header a,
.terms .header .phone-icon svg,
.terms .header .nav li a {
  color: #1d1d1b;
  border-color: #1d1d1b; }

.services .header.visible,
.contact .header.visible,
.terms .header.visible {
  background-color: white; }

.services .header,
.services .header .tel-num,
.contact .header,
.contact .header .tel-num,
.terms .header .tel-num {
  font-weight: 500; }

.header {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  align-items: center;
  z-index: 900;
  transition: all 0.2s linear;
  font-family: "Ubuntu", sans-serif; }
  @media screen and (max-width: 760px) {
    .header {
      height: 85px; } }
  @media screen and (min-width: 760px) {
    .header {
      justify-content: space-between; } }
  @media screen and (min-width: 1020px) {
    .header {
      letter-spacing: 0.1em; } }
  .header .logo {
    margin-top: 10px;
    width: 90px; }
    @media screen and (max-width: 760px) {
      .header .logo {
        position: fixed; } }
    @media screen and (min-width: 760px) {
      .header .logo {
        margin: 30px 0 30px 10%;
        width: 100px; } }
    @media screen and (min-width: 1020px) {
      .header .logo {
        margin: 20px 0 20px 10%;
        width: 120px; } }
    @media screen and (min-width: 1280px) {
      .header .logo {
        width: 130px; } }
  .header .nav {
    display: none;
    justify-content: space-between; }
    @media screen and (min-width: 760px) {
      .header .nav {
        display: flex; } }
  .header .tel-num {
    display: none;
    color: #ffffff;
    text-decoration: none;
    margin-right: 10%;
    border: 1.5px solid white;
    padding: 5px 8px;
    font-weight: 300;
    font-size: 14px; }
    @media screen and (min-width: 1020px) {
      .header .tel-num {
        display: block; } }
    @media screen and (min-width: 1020px) {
      .header .tel-num {
        font-size: 16px;
        padding: 5px 13px; } }
  .header.visible {
    background-color: #262520;
    transition: all 0.5s linear;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04); }
    @media screen and (min-width: 760px) {
      .header.visible .logo {
        margin: 4px 0 4px 10%;
        width: 100px; } }

.nav {
  list-style: none;
  margin: 0;
  padding: 0; }
  .nav li {
    margin: auto 20px; }
    @media screen and (min-width: 1020px) {
      .nav li {
        margin: auto 30px; } }
    .nav li a {
      text-transform: uppercase;
      color: #ffffff; }
    .nav li a:hover {
      opacity: 0.8; }

/* Position and sizing of burger button */
.bm-burger-button {
  position: fixed;
  width: 22px;
  height: 20px;
  left: 36px;
  top: 36px; }
  @media screen and (min-width: 760px) {
    .bm-burger-button {
      display: none; } }

.phone-icon {
  color: #d5d6da;
  position: fixed;
  width: 22px;
  right: 36px;
  top: 36px; }
  @media screen and (min-width: 760px) {
    .phone-icon {
      position: initial;
      margin-right: 10%; } }
  @media screen and (min-width: 1020px) {
    .phone-icon {
      display: none; } }
  .phone-icon a {
    color: #d5d6da; }

/* Color/shape of burger icon bars */
.bm-burger-bars {
  background: #d5d6da; }
  .bm-burger-bars span {
    height: 2px; }

.services .bm-burger-bars,
.contact .bm-burger-bars,
.terms .bm-burger-bars {
  background: #1d1d1b; }

/* Position and sizing of clickable cross button */
.bm-cross-button {
  height: 24px;
  width: 24px; }

/* Color/shape of close button cross */
.bm-cross {
  background: #bdc3c7; }

.bm-menu-wrap {
  position: fixed;
  height: 100%; }
  .bm-menu-wrap .bm-menu {
    background: #424240;
    padding: 2em 1.5em 0;
    font-size: 16px; }
  .bm-menu-wrap .bm-item-list {
    color: #b8b7ad;
    padding: 0.8em; }
    .bm-menu-wrap .bm-item-list .bm-item {
      display: inline-block; }
      .bm-menu-wrap .bm-item-list .bm-item li {
        padding: 10px 0;
        margin: 0;
        border-bottom: 2px solid; }
        .bm-menu-wrap .bm-item-list .bm-item li a {
          font-family: "Ubuntu", sans-serif;
          letter-spacing: 0.1em; }
      .bm-menu-wrap .bm-item-list .bm-item .logo-container {
        display: flex;
        justify-content: center; }
        .bm-menu-wrap .bm-item-list .bm-item .logo-container .mobile-menu-logo svg {
          width: 100px; }

.bm-overlay {
  background: rgba(0, 0, 0, 0.3); }

.mobile-nav:focus {
  outline: none; }

.icon__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 20px;
  background-color: #f4f4f4;
  height: 100vw;
  max-width: 1800px;
  margin: 0 auto; }
  @media screen and (min-width: 360px) {
    .icon__wrapper {
      justify-content: space-around; } }
  @media screen and (min-width: 560px) {
    .icon__wrapper {
      height: auto; } }
  @media screen and (min-width: 760px) {
    .icon__wrapper {
      padding: 60px 30px; } }
  @media screen and (min-width: 1020px) {
    .icon__wrapper {
      padding: 60px 70px; } }
  @media screen and (min-width: 1280px) {
    .icon__wrapper {
      padding: 80px 15%; } }
  .icon__wrapper .icon {
    text-align: center;
    margin-bottom: 10px;
    color: #404040; }
    .icon__wrapper .icon svg {
      width: 50px;
      height: 50px; }
      @media screen and (min-width: 760px) {
        .icon__wrapper .icon svg {
          width: 60px;
          height: 60px; } }
    .icon__wrapper .icon .caption {
      font-family: "Rubik", sans-serif;
      width: 130px;
      font-size: 14px;
      letter-spacing: 0.02em;
      margin: 10px auto 0 auto; }
      @media screen and (max-width: 360px) {
        .icon__wrapper .icon .caption {
          font-size: 12px; } }
      @media screen and (min-width: 560px) {
        .icon__wrapper .icon .caption {
          width: 80px;
          font-size: 11px; } }
      @media screen and (min-width: 760px) {
        .icon__wrapper .icon .caption {
          width: 120px;
          font-size: 0.75rem; } }
      @media screen and (min-width: 1020px) {
        .icon__wrapper .icon .caption {
          width: 130px;
          font-size: 0.85rem; } }
      @media screen and (min-width: 1280px) {
        .icon__wrapper .icon .caption {
          font-size: 0.95rem;
          width: 140px; } }
  .icon__wrapper .renovation__mobile {
    display: none; }
    @media screen and (min-width: 560px) {
      .icon__wrapper .renovation__mobile {
        display: block; } }

.services .pages-hero h1,
.terms .pages-hero h1,
.privacy-policy .pages-hero h1 {
  color: #1d1d1b; }

.pages-hero {
  height: 450px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .pages-hero h1 {
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.1em;
    color: #ffffff;
    padding-top: 220px;
    text-transform: uppercase; }
  .pages-hero.about {
    background-image: url("/static/assets/about-hero.jpg"); }
  .pages-hero.services {
    background-image: url("/static/assets/services-hero.jpg"); }
  .pages-hero.faq {
    background-image: url("/static/assets/faq-hero.jpg"); }
  .pages-hero.contact {
    background-image: url("/static/assets/contact-hero.jpg"); }
  .pages-hero.privacy {
    background-image: url("/static/assets/privacy.jpg"); }
  .pages-hero.terms {
    background-image: url("/static/assets/terms.jpg"); }

.service-areas {
  margin: 0 10%; }
  .service-areas .service-areas__wrapper {
    display: grid;
    max-width: 1200px;
    margin: 0 auto; }
    @media screen and (min-width: 1020px) {
      .service-areas .service-areas__wrapper {
        grid-template-columns: 50% 50%; } }
    .service-areas .service-areas__wrapper .areas {
      columns: 2;
      margin-bottom: 50px;
      letter-spacing: 0.06em; }
      .service-areas .service-areas__wrapper .areas p {
        display: inline-block;
        width: 100%; }
    .service-areas .service-areas__wrapper .service-map {
      display: block;
      text-align: center;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); }

.u-position-absolute {
  position: absolute; }

.u-position-relative {
  position: relative; }

.accordion {
  border-radius: 2px;
  background-color: #f4f4f4; }
  .accordion .faq-accordion-wrapper {
    max-width: 1600px;
    margin: 0 auto; }
  .accordion .faq-titles {
    font-family: "Ubuntu", sans-serif; }

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.accordion__item--has-icon {
  position: relative; }

.accordion__title {
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none; }
  .accordion__title h3 {
    font-weight: 500; }

.accordion__title:hover {
  background-color: #ddd; }

.accordion__title:focus {
  outline: none; }

.accordion__body {
  padding: 20px;
  display: block;
  animation: fadein 0.35s ease-in; }

.accordion__body--hidden {
  display: none;
  opacity: 0;
  animation: fadein 0.35s ease-in; }

.accordion__title > *:last-child,
.accordion__body > *:last-child {
  margin-bottom: 0; }

.accordion__arrow {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px; }

.accordion__arrow::after,
.accordion__arrow::before {
  display: block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: currentColor;
  content: ""; }

.accordion__arrow::before {
  left: 4px;
  transform: rotate(45deg); }

[aria-expanded="true"] .accordion__arrow::before,
[aria-selected="true"] .accordion__arrow::before {
  transform: rotate(-45deg); }

.accordion__arrow::after {
  right: 4px;
  transform: rotate(-45deg); }

[aria-expanded="true"] .accordion__arrow::after,
[aria-selected="true"] .accordion__arrow::after {
  transform: rotate(45deg); }

.accordion__arrow::before,
.accordion__arrow::after {
  transition: transform 0.25s ease, -webkit-transform 0.25s ease; }

/* -------------------------------------------------- */
/* ---------------- Animation part ------------------ */
/* -------------------------------------------------- */
@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes move-down {
  0% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(5px); }
  30% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

@keyframes move-up {
  0% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(-5px); }
  30% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

.accordion__title--animated:hover .accordion__arrow {
  animation-name: move-down;
  animation-duration: 1.5s; }

.accordion__title--animated[aria-expanded="true"]:hover .accordion__arrow {
  animation-name: move-up;
  animation-duration: 1.5s; }

.testimonial-wrapper {
  padding: 60px 0; }
  .testimonial-wrapper .slick-slider {
    max-width: 700px;
    text-align: center;
    margin: 60px 9%;
    font-family: "Cairo", sans-serif;
    letter-spacing: 0.06em; }
    @media screen and (min-width: 760px) {
      .testimonial-wrapper .slick-slider {
        margin: 60px auto; } }
    .testimonial-wrapper .slick-slider .slick-arrow {
      width: 0; }
    .testimonial-wrapper .slick-slider .slick-next::before,
    .testimonial-wrapper .slick-slider .slick-prev::before {
      display: none; }
    .testimonial-wrapper .slick-slider .slick-list .slick-track {
      padding-bottom: 30px; }
      .testimonial-wrapper .slick-slider .slick-list .slick-track .testimonial-text {
        font-size: 16px; }
        @media screen and (min-width: 760px) {
          .testimonial-wrapper .slick-slider .slick-list .slick-track .testimonial-text {
            font-size: 20px; } }
      .testimonial-wrapper .slick-slider .slick-list .slick-track .testimonial-name {
        margin-top: 10px; }
    .testimonial-wrapper .slick-slider .slick-dots {
      padding-bottom: 30px; }

.instagram__wrapper {
  display: grid;
  grid-template-areas: "follow-us" "newest";
  align-items: center;
  background-color: #f8f8f8; }
  @media screen and (min-width: 760px) {
    .instagram__wrapper {
      grid-template-columns: repeat(3, 33.333%);
      grid-template-areas: "newest follow-us oldest"; } }
  .instagram__wrapper .gallery .instagram {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    grid-auto-rows: 1fr; }
    .instagram__wrapper .gallery .instagram a {
      position: relative;
      display: grid;
      align-items: center; }
      .instagram__wrapper .gallery .instagram a .square-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-size: cover !important;
        border: 1px solid #f8f8f8; }
      .instagram__wrapper .gallery .instagram a .square-image__overlay {
        color: #ffffff;
        background: #00a1ac40;
        position: absolute;
        display: grid;
        justify-items: center;
        align-items: center;
        transition: 0.4s;
        overflow: hidden;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0; }
        @media screen and (max-width: 1020px) {
          .instagram__wrapper .gallery .instagram a .square-image__overlay {
            display: none; } }
        .instagram__wrapper .gallery .instagram a .square-image__overlay .insta-icon {
          text-align: center; }
          .instagram__wrapper .gallery .instagram a .square-image__overlay .insta-icon svg {
            width: 25px; }
          .instagram__wrapper .gallery .instagram a .square-image__overlay .insta-icon span {
            font-size: 0.8rem; }
    .instagram__wrapper .gallery .instagram a:hover .square-image__overlay {
      top: 0; }
  .instagram__wrapper .gallery .instagram::before {
    content: "";
    width: 0;
    padding-bottom: 100%;
    grid-row: 1 / 1;
    grid-column: 1 / 1; }
  .instagram__wrapper .gallery .instagram > *:first-child {
    grid-row: 1 / 1;
    grid-column: 1 / 1; }
  .instagram__wrapper .newest-gallery {
    grid-area: newest; }
  .instagram__wrapper .follow-us-gallery {
    grid-area: follow-us;
    height: 100vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media screen and (min-width: 760px) {
      .instagram__wrapper .follow-us-gallery {
        height: auto; } }
    .instagram__wrapper .follow-us-gallery .insta-button {
      width: 190px;
      padding: 7px 5px; }
      .instagram__wrapper .follow-us-gallery .insta-button a {
        color: #1d1d1b;
        text-decoration: none; }
        .instagram__wrapper .follow-us-gallery .insta-button a p {
          margin: 0;
          font-size: 0.6rem; }
      .instagram__wrapper .follow-us-gallery .insta-button a:hover {
        opacity: 0.7; }
  .instagram__wrapper .oldest-gallery {
    display: none; }
    @media screen and (min-width: 760px) {
      .instagram__wrapper .oldest-gallery {
        grid-area: oldest;
        display: block; } }

.form__wrapper {
  margin: 0 10%;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px;
  max-width: 1100px; }
  @media screen and (min-width: 1020px) {
    .form__wrapper {
      display: grid;
      margin: 0 auto; } }
  .form__wrapper img {
    width: 100%;
    margin-bottom: 50px; }
  .form__wrapper .contact-form .form__subtitle {
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: "Rubik", sans-serif; }
  .form__wrapper .contact-form form {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 1020px) {
      .form__wrapper .contact-form form {
        display: grid; } }
    .form__wrapper .contact-form form span {
      color: #bfbfbf; }
    .form__wrapper .contact-form form input,
    .form__wrapper .contact-form form textarea,
    .form__wrapper .contact-form form button {
      width: 100%;
      padding: 3px 10px;
      border: 1px solid #bfbfbf;
      border-radius: 5px; }
    .form__wrapper .contact-form form textarea {
      height: 150px;
      resize: none; }
    .form__wrapper .contact-form form .inquiry,
    .form__wrapper .contact-form form .agreement-wrapper {
      grid-column: 1 / -1; }
    .form__wrapper .contact-form form .agreement-wrapper {
      display: grid;
      grid-auto-flow: column;
      align-items: center; }
      .form__wrapper .contact-form form .agreement-wrapper .agreement-checkbox {
        width: 20px;
        margin-right: 10px; }
      .form__wrapper .contact-form form .agreement-wrapper p {
        margin-left: 10px;
        margin-bottom: 0; }
    .form__wrapper .contact-form form .submit-btn {
      cursor: pointer;
      grid-column: 2 / 3;
      justify-self: end;
      margin-top: 30px; }
      @media screen and (min-width: 1020px) {
        .form__wrapper .contact-form form .submit-btn {
          width: 70%; } }
    .form__wrapper .contact-form form .submit-btn:hover {
      color: #fff;
      background: #424240; }

.footer {
  font-family: "Ubuntu", sans-serif;
  color: #ffffff;
  background-color: #262521;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 0.06em;
  line-height: 1; }
  .footer .footer-wrapper {
    padding-top: 70px;
    margin: 0 10%; }
    @media screen and (min-width: 760px) {
      .footer .footer-wrapper {
        display: flex;
        justify-content: space-between; } }
    .footer .footer-wrapper .footer-services {
      padding-right: 10px; }
    .footer .footer-wrapper .partner {
      color: #00a1ac; }
      .footer .footer-wrapper .partner a {
        color: #ffffff; }
        .footer .footer-wrapper .partner a p:hover {
          opacity: 0.6; }
      .footer .footer-wrapper .partner a:hover {
        opacity: 0.6; }
    .footer .footer-wrapper .footer-areas {
      padding-right: 10px; }
      .footer .footer-wrapper .footer-areas .area-wrapper {
        columns: 2; }
        @media screen and (min-width: 360px) {
          .footer .footer-wrapper .footer-areas .area-wrapper {
            padding-bottom: 15px; } }
    .footer .footer-wrapper .footer-contact .tel-num {
      text-decoration: none;
      color: #ffffff; }
    .footer .footer-wrapper .footer-contact a {
      color: #ffffff;
      text-decoration: none; }
      .footer .footer-wrapper .footer-contact a p:hover {
        opacity: 0.6; }
    .footer .footer-wrapper .footer-contact a:hover {
      opacity: 0.6; }
    .footer .footer-wrapper .footer-contact .social-icon__title {
      cursor: initial; }
    .footer .footer-wrapper .footer-contact .social-icon__title:hover {
      opacity: 1; }
    .footer .footer-wrapper .footer-contact .social-icon-wrapper .social-icons {
      display: flex; }
      .footer .footer-wrapper .footer-contact .social-icon-wrapper .social-icons a {
        color: #ffffff; }
        .footer .footer-wrapper .footer-contact .social-icon-wrapper .social-icons a .facebook-icon {
          margin-right: 30px; }
        .footer .footer-wrapper .footer-contact .social-icon-wrapper .social-icons a svg {
          width: 30px; }
      .footer .footer-wrapper .footer-contact .social-icon-wrapper .social-icons a:hover {
        opacity: 0.6; }
    .footer .footer-wrapper h4 {
      padding-bottom: 20px;
      padding-top: 20px;
      text-transform: uppercase;
      color: #00a1ac;
      cursor: pointer; }
    .footer .footer-wrapper h4:hover {
      opacity: 0.6; }
  .footer .copyright {
    padding: 40px 10%; }
    @media screen and (min-width: 760px) {
      .footer .copyright {
        display: flex;
        justify-content: space-between; } }
    .footer .copyright .builder {
      font-size: 0.68rem; }
      .footer .copyright .builder a {
        color: #ffffff; }
      .footer .copyright .builder a:hover {
        opacity: 0.6; }

.main-hero {
  font-family: "Rubik", sans-serif;
  background-image: url("/static/assets/sink.jpg");
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1rem;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .main-hero .title {
    padding-top: 26vh;
    margin: 0 5%; }
    @media screen and (max-width: 350px) {
      .main-hero .title {
        padding-top: 26vh; } }
    @media screen and (max-width: 360px) {
      .main-hero .title {
        padding-top: 40%; } }
    .main-hero .title h1 {
      letter-spacing: 0.1em;
      font-weight: 300;
      font-size: 26px;
      margin: 10px auto; }
      @media screen and (min-width: 560px) {
        .main-hero .title h1 {
          max-width: 350px; } }
      @media screen and (min-width: 760px) {
        .main-hero .title h1 {
          font-size: 33px;
          max-width: 500px; } }
      @media screen and (min-width: 1020px) {
        .main-hero .title h1 {
          max-width: 100%; } }
    .main-hero .title a {
      text-decoration: none;
      color: #ffffff; }
    .main-hero .title h2 {
      font-size: 30px;
      letter-spacing: 0.1em;
      font-weight: 300;
      max-width: 300px;
      margin: 10px auto; }
      @media screen and (min-width: 760px) {
        .main-hero .title h2 {
          font-size: 37px;
          max-width: 500px; } }
    .main-hero .title p {
      font-size: 15px;
      font-weight: 100; }

.professional-service__wrapper .professional-service {
  font-family: "Cairo", sans-serif;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  max-width: 1600px; }
  @media screen and (min-width: 760px) {
    .professional-service__wrapper .professional-service {
      margin: 0 auto; } }
  @media screen and (min-width: 1020px) {
    .professional-service__wrapper .professional-service {
      padding: 40px 0;
      flex-wrap: nowrap; } }
  .professional-service__wrapper .professional-service .professional-service__img {
    max-width: 800px;
    max-height: 400px;
    display: block; }
    @media screen and (min-width: 1020px) {
      .professional-service__wrapper .professional-service .professional-service__img {
        max-width: 600px;
        height: 400px;
        display: grid; } }
    .professional-service__wrapper .professional-service .professional-service__img img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
  .professional-service__wrapper .professional-service .professional-service__content {
    margin: 30px 7% 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media screen and (min-width: 1020px) {
      .professional-service__wrapper .professional-service .professional-service__content {
        padding-left: 50px;
        margin-right: 9%;
        flex-basis: 40%; } }
    .professional-service__wrapper .professional-service .professional-service__content h3 {
      font-size: 1.4rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-weight: 500; }
      @media screen and (min-width: 1280px) {
        .professional-service__wrapper .professional-service .professional-service__content h3 {
          font-size: 1.4rem; } }
    .professional-service__wrapper .professional-service .professional-service__content p {
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0.06rem; }
      @media screen and (min-width: 1280px) {
        .professional-service__wrapper .professional-service .professional-service__content p {
          font-size: 1.1rem; } }

@media screen and (min-width: 1020px) {
  .professional-service__wrapper .commercial__rightside .professional-service .professional-service__img {
    order: 2; } }

.services__intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  @media screen and (max-width: 1020px) {
    .services__intro {
      grid-template-columns: 50% 50%; } }
  .services__intro .service {
    text-align: center;
    padding: 35px 7%;
    height: 400px;
    grid-column: 1 / -1; }
    @media screen and (min-width: 560px) {
      .services__intro .service {
        grid-column: auto;
        padding: 45px 7%; } }
    @media screen and (min-width: 1280px) {
      .services__intro .service {
        margin: 15px;
        padding: 0; } }
    .services__intro .service img {
      height: 100%;
      object-fit: cover;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
      width: 100%;
      margin-bottom: 20px;
      transition: transform 400ms Cubic-bezier(0.3, 0, 0.3, 1); }
    .services__intro .service img:hover {
      transform: scale(1.08, 1.08);
      transition: 500ms Cubic-bezier(0.3, 0, 0.3, 1), opacity 500ms Cubic-bezier(1, 0, 0.43, 1) 0ms; }
    .services__intro .service p {
      display: inline-block;
      letter-spacing: 0.05rem; }

/* General Style */
html {
  background-color: #262521; }

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

a:hover {
  text-decoration: none; }

h2,
h3 {
  letter-spacing: 0.1rem; }

.botton {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  border: 1px solid black;
  padding: 8px 10px;
  font-weight: 300;
  letter-spacing: 0.1rem;
  cursor: pointer;
  line-height: 1.6rem;
  margin: 0 auto;
  text-align: center; }
  @media screen and (min-width: 1020px) {
    .botton {
      border: 1.5px solid black; } }
  .botton h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 300; }

.component__header {
  font-family: "Ubuntu", sans-serif;
  padding: 90px 10%;
  text-align: center;
  line-height: 2;
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  font-weight: 400; }
  .component__header h5 {
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #00a1ac; }
  .component__header h2 {
    font-weight: 500;
    font-size: 1.7rem; }
  .component__header p {
    max-width: 650px;
    margin: auto;
    font-size: 1rem; }

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

/**/
.homepage .homepage__icon {
  background: #f4f4f4; }

.homepage .services-view-botton {
  margin: 120px auto 70px;
  width: 180px; }

.homepage .services-view-botton:hover {
  color: #fff;
  background: #424240; }

.about .about__intro p {
  max-width: 1000px;
  font-size: 1.1rem; }

.about .about__infographic {
  padding: 0 10% 50px;
  text-align: center;
  background-color: #fcfcfc; }
  @media screen and (min-width: 1280px) {
    .about .about__infographic {
      padding: 0 10% 80px; } }
  .about .about__infographic svg {
    width: 100%;
    height: auto;
    max-width: 900px;
    max-height: 600px; }

.about .infographic__header {
  background-color: #fcfcfc; }

.featured-work {
  background-color: #f4f4f4; }
  .featured-work .icons__header {
    padding-bottom: 30px; }
  @media screen and (min-width: 1280px) {
    .featured-work .services__icon svg {
      width: 70px;
      height: 70px; } }
  .featured-work .services__icon .caption {
    letter-spacing: 0.04em;
    font-size: 0.9rem; }
    @media screen and (min-width: 1280px) {
      .featured-work .services__icon .caption {
        font-size: 1rem; } }

.service-img1 {
  grid-area: image1;
  grid-column: 1/3; }

.service-detail1 {
  grid-area: detail1;
  grid-column: 3/6; }

.service-img2 {
  grid-area: image2;
  grid-column: 4/6; }

.service-detail2 {
  grid-area: detail2;
  grid-column: 1/4;
  background-color: #fafdfd; }

.service-img3 {
  grid-area: image3;
  grid-column: 1/3; }

.service-detail3 {
  grid-area: detail3;
  grid-column: 3/6; }

.service-img4 {
  grid-area: image4;
  grid-column: 4/6; }

.service-detail4 {
  grid-area: detail4;
  grid-column: 1/4;
  background-color: #fafdfd; }

.service-detail-wrapper {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 450px);
  grid-template-areas: "image1 detail1" "detail2 image2" "image3 detail3" "detail4 image4";
  justify-content: center;
  font-family: "Cairo", sans-serif;
  max-width: 1800px; }
  @media screen and (min-width: 1020px) {
    .service-detail-wrapper {
      display: grid;
      margin: 0 auto; } }
  .service-detail-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 1020px) {
      .service-detail-wrapper img {
        padding: 30px 10%; } }
    @media screen and (min-width: 1020px) {
      .service-detail-wrapper img {
        margin: 0; } }
  .service-detail-wrapper .service-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 10%; }
    @media screen and (min-width: 1020px) {
      .service-detail-wrapper .service-detail {
        padding: 0 7% 0 90px; } }
    .service-detail-wrapper .service-detail h3 {
      margin-bottom: 30px;
      text-align: center; }
    .service-detail-wrapper .service-detail ul {
      margin: 0;
      padding: 0; }
      .service-detail-wrapper .service-detail ul li {
        list-style-type: none;
        display: flex;
        align-items: center;
        line-height: 2; }
      .service-detail-wrapper .service-detail ul li::before {
        content: "";
        background: #00a1ac;
        width: 4px;
        height: 4px;
        margin: 10px; }

.intro-faq {
  text-align: center;
  margin: 70px 10%;
  letter-spacing: 0.06em;
  max-width: 900px;
  font-family: "Rubik", sans-serif; }
  @media screen and (min-width: 1280px) {
    .intro-faq {
      margin: 70px auto; } }

.faq-accordion-wrapper {
  background-color: #f4f4f4;
  padding: 20px; }
  @media screen and (min-width: 760px) {
    .faq-accordion-wrapper {
      padding: 10px 50px 70px; } }
  @media screen and (min-width: 1020px) {
    .faq-accordion-wrapper {
      padding: 70px; } }
  .faq-accordion-wrapper .faq-titles {
    text-align: center;
    padding: 40px 0 20px; }
    @media screen and (min-width: 760px) {
      .faq-accordion-wrapper .faq-titles {
        padding: 70px; } }
  .faq-accordion-wrapper .accordion__item {
    font-size: 1rem;
    letter-spacing: 0.06em; }

.contact-body .find-us__header p {
  font-size: 1.4rem; }

.terms__content,
.privacy-policy__content {
  margin: 0 auto;
  padding: 50px 10%;
  letter-spacing: 0.06em;
  max-width: 1200px; }
  .terms__content h4,
  .privacy-policy__content h4 {
    margin-top: 2rem; }
  .terms__content p,
  .privacy-policy__content p {
    margin-bottom: 1.3rem; }
  @media screen and (min-width: 1280px) {
    .terms__content,
    .privacy-policy__content {
      margin: 120px auto; } }

