:root {
  /* typography */
  --base-font-size: 16px;
  --h1: 3.812rem;
  --h2: 3.5rem;
  --h3: 1.938rem;
  --h4: 1.562rem;
  --h5: 1.250rem;
  --paragraph: 1rem;
  --paragraph-lg: 1.5rem;
  --paragraph-line-height: 1.75em;
  /* typefaces */
  --system-font: "Inter", -apple-system-body, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  /* start new new design tokens */
  --rainbow-gradient: linear-gradient(90deg, #38BDF8 14%, #8D34FE 52.12%, #E234FE 88.82%);
  --color-electric-blue: #38BDF8;
  --color-text-normal: #000;
  --brand-orange: #DFA42E;
  --brand-green: #73A326;
  --color-text-secondary: #4C4C4C;
  --body-background: #FFF;
  --content-background: #FFF;
  --box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  --color-text: var(--color-text-normal);
  --border-color: #BEBEBE;
  --max-content-width: 50rem;
  --icon-check: url(/static/img/icon-check.svg);
  --icon-camera: url(/static/img/icon-camera.svg);
  --icon-cursor: url(/static/img/icon-cursor.svg);
  --icon-home: url(/static/img/icon-home.svg);
  --icon-video: url(/static/img/icon-video.svg);
  --icon-drone: url(/static/img/icon-drone.svg);
  --icon-avatar: url(/static/img/icon-avatar.svg);
  --hero-background: url(/static/img/hero.jpg);
  --logo: url(/static/img/logo.svg);
  --transition: 0.3s ease-out;
  --footer-background: var(--brand-orange);
  --footer-text-color: #FFF;
  --footer-height: 14em;
  --nav-trigger-color: #fff;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 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 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

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

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

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

/**
 * 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;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[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 {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: var(--base-font-size);
}

body {
  padding: 0;
  margin: 0;
  overflow-scrolling: touch;
}

.layout-container.section {
  max-width: var(--max-content-width);
  padding-top: 3em;
}

section.content-area {
  padding: var(--content-area-padding) 0;
}

section .content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.center {
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .layout-container {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
footer {
  padding: 2.5rem 0;
  display: block;
  text-align: center;
  width: 100%;
  background-color: var(--brand-orange);
  margin-top: 7.5rem;
  color: #fff;
}

/* base typography */
body {
  font-family: var(--system-font);
  font-size: var(--base-font-size);
  line-height: 1.75em;
  -webkit-text-size-adjust: 100%;
  color: var(--color-text);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

b, strong {
  font-weight: bolder;
}

h1, h2, h3, h4, h5, h6, p, li, ol {
  line-height: 1.5em;
  padding: 0;
  margin: 0;
  font-family: "Cardo", serif;
  font-style: normal;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2em;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

p, li, ol {
  font-size: var(--paragraph);
  line-height: var(--paragraph-line-height);
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

p.large {
  font-size: var(--paragraph-lg);
}

/* color helpers */
.text-blue {
  color: var(--color-text-blue);
}

.text-green {
  color: var(--brand-green);
}

.text-purple {
  color: var(--color-text-purple);
}

.summer-promotion {
  color: var(--brand-green);
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  :root {
    --base-font-size: 12px;
  }

  p, li, ol {
    font-size: 1.25rem;
  }
}
nav {
  background-color: var(--body-background);
  display: flex;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  height: 3.625rem;
  width: 16rem;
  background-size: 100%;
  display: block;
  margin: 0 auto;
  background-image: var(--logo);
  background-repeat: no-repeat;
}

nav .links {
  display: flex;
  gap: 1.5rem;
  margin-right: 1rem;
}

nav .links a {
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--brand-green);
  font-weight: 500;
  font-family: "Cardo", Serif;
}

@media only screen and (max-width: 767px) {
  nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav .links a {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
a.button {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease-out;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto;
}

a.button.button-primary {
  color: #fff;
  background-color: var(--brand-green);
  width: max-content;
}

a.button:hover {
  transform: scale(1.05);
}

a.button.button-secondary {
  color: var(--brand-green);
  background-color: #fff;
  border: 2px solid var(--brand-green);
  width: max-content;
}

.hero {
  background-image: var(--hero-background);
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  display: flex;
  justify-content: center;
}

.hero .container h1, .hero .container h2, .hero .container ul, .hero .container li {
  padding: 0;
  margin: 0;
}

.hero .container {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 3.75rem;
  width: max-content;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero .container .title-container {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}

.hero h2.title {
  font-size: 4rem;
}

.hero h1 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.hero h2.promo {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.hero ul {
  display: flex;
  gap: 1.25rem;
}

.hero ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media only screen and (max-width: 1023px) {
  .hero {
    padding: 4rem 0;
  }

  .hero .container {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .hero ul {
    flex-direction: column;
  }

  .hero ul li {
    justify-content: center;
  }

  .text {
    font-size: 1.25rem;
  }
}
.icon {
  height: 1.5rem;
  width: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  display: inline-block;
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.icon.icon-check {
  background-image: var(--icon-check);
}

.icon.icon-camera {
  background-image: var(--icon-camera);
}

.icon.icon-cursor {
  background-image: var(--icon-cursor);
}

.icon.icon-home {
  background-image: var(--icon-home);
}

.icon.icon-video {
  background-image: var(--icon-video);
}

.icon.icon-drone {
  background-image: var(--icon-drone);
}

.icon.icon-avatar {
  background-image: var(--icon-avatar);
}

hr {
  background: none;
  border-width: 0;
  background-color: var(--border-color);
  height: 1px;
  margin: 0.5rem 0;
}

section.offerings {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3.75rem auto 2.5rem auto;
}

section.offerings h2 {
  text-align: center;
}

section.offerings .row {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}

section.offerings .row .offering {
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  display: block;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-grow: 1;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.offering.icon {
  height: 24px;
  width: 24px;
}

section.our-work {
  max-width: 1200px;
  margin: 3.75rem auto 2.5rem auto;
}

section.our-work h2 {
  margin-bottom: 2.5rem;
  text-align: center;
}

section.our-work h3 {
  margin: 2.5rem 0;
  text-align: center;
}

section.our-work .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

section.our-work .row a {
  background-color: #ebebeb;
  flex-grow: 1;
  height: 200px;
  min-width: 250px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}

section.our-work .row a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.our-work .row a img.floorplan {
  object-fit: fill;
}

section.our-work .row .video {
  background-color: #ebebeb;
  flex-grow: 1;
  height: 678px;
}

.youtube-video-player {
  height: 100%;
  width: 100%;
}

section.packages {
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3.75rem auto 2.5rem auto;
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
  text-align: center;
}

section.packages h3.summer-promotion {
  margin-top: 1rem;
}

section.packages .cards {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

section.packages .card {
  width: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  display: block;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-grow: 1;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  background-color: #FCFBFB;
  height: 670px;
}

section.packages .card .title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

section.packages .card h4.strikethrough {
  position: relative;
  opacity: 0.25;
}

section.packages .card h4.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 2px solid;
  border-color: inherit;
  transform: rotate(-5deg);
}

section.packages .card .promo {
  display: flex;
  gap: 1rem;
}

section.packages .card.most-popular {
  background-color: #fff;
  height: 740px;
}

section.packages .card.starter .spacer {
  height: 250px;
  display: block;
}

section.packages .card h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

section.packages .card ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
  gap: 1rem;
}

section.packages .card ul li {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  text-align: left;
  line-height: 1.5rem;
}

@media only screen and (max-width: 767px) {
  section.offerings {
    gap: 1.5rem;
  }

  section.offerings h2 {
    margin-bottom: 1rem;
  }

  section.offerings .row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  section.our-work .row .video {
    height: 398px;
  }

  .youtube-video-player {
    height: 398px;
    width: 100%;
  }

  section.packages .cards {
    flex-direction: column;
  }

  section.packages .card.most-popular, section.packages .card {
    height: fit-content;
  }

  section.packages .card.starter .spacer {
    display: none;
  }
}
section.about {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3.75rem auto 2.5rem auto;
}

section.about h1 {
  margin-bottom: 1.5rem;
}

section.about p {
  margin-bottom: 1rem;
  font-weight: 500;
}

section.contact {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3.75rem auto 2.5rem auto;
}

section.contact h1 {
  margin-bottom: 1.5rem;
}

section.contact p {
  margin-bottom: 1rem;
  font-weight: 500;
}

/*# sourceMappingURL=style.css.map */
