/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 550;
  --contentWidth: 1000px;
}
/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: 120px;
  line-height: 0.8;
}

h2 {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  font-size: 52px;
  opacity: 0.7;
}

@media (width <= 820px) {
  h1 {
    font-size: 100px;
  }
  h3 {
    font-size: 44px;
  }
}

@media (width <= 660px) {
  h1 {
    font-size: 80px;
  }
  h3 {
    font-size: 35px;
  }
}

@media (width <= 550px) {
  h1 {
    font-size: 50px;
  }
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 1.2em;
}

p {
  display: block;
  margin-top: 0.5em;
}

p:first-of-type {
  margin-top: 0;
}

.tinted {
  color: rgb(72, 159, 248);
}

.backdrop-tinted {
  background-color: rgb(72, 159, 248);
  color: #FFF;
}

.white {
  color: #FFF;
}

header {
  position: relative;
}

header > img {
  height: 75vh;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (width <= 850px) {
  header > img {
    height: 50vh;
  }
}

.hero {
  width: calc(100% - 60px);
  margin: 0 30px;
  text-align: center;
  position: absolute;
  bottom: 70px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.content {
  max-width: var(--contentWidth);
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (width <= 1200px) {
  .content {
    max-width: 100%;
    padding: 30px 30px;
  }
}

table {
  border-collapse: collapse;
  font-size: 0.65em;
  width: 100%;
}

.pricing td {
  width: 15%;
}

.pricing td, .pricing th {
  border: 4px solid white;
  padding: 10px;
}

.pricing tr:nth-child(even){
  background-color: #f2f2f2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(9, 300px);
  grid-template-rows: repeat(2, 300px);
  grid-gap: 15px;
  padding-left: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@media (width <= 600px) {
  .gallery {
    grid-template-columns: repeat(9, 200px);
    grid-template-rows: repeat(2, 200px);
    grid-gap: 5px;
    padding-left: 5px;
  }
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery img:nth-of-type(1) {
  grid-column-start: span 2;
  grid-row-end: span 2;
}

.gallery img:nth-of-type(7) {
  grid-column-start: 6;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}

.carousel {
  background: #eee;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  /* padding-bottom: 20px; */
}

.carousel-container {
  position: relative;
}

/* .carousel-guidance {
  text-align: center;
  position: absolute;
  bottom: 10px;
  font-size: 0.7em;
  color: #666;
  text-transform: uppercase;
  width: 100%;

} */

.carousel-item {
  flex-shrink: 0;
  width: 330px;
  margin: 50px 50px 50px 0;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(14,63,126, 0.04),
              0 1px 1px -0.5px rgba(42,51,70, 0.04),
              0 3px 3px -1.5px rgb(42,51,70, 0.04),
              0 6px 6px -3px rgb(42,51,70, 0.04),
              0 12px 12px -6px rgb(14,63,126 , 0.04),
              0 24px 24px -12px rgb(14,63,126, 0.04);
}

.carousel-item:first-of-type {
  margin-left: 50px;
}

.carousel-item:last-of-type {
  margin-right: 50px;
}

.carousel-item > img {
  height: 200px;
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
}

@media (width <= 600px) {
  .carousel-item {
    width: 220px;
    margin: 25px 25px 25px 0;
  }
  .carousel-item > img {
    height: 130px;
  }
  .carousel-item blockquote {
    font-size: 0.8em;
  }
  .carousel-item:first-of-type {
    margin-left: 25px;
  }

  .carousel-item:last-of-type {
    margin-right: 25px;
  }
}

@media (width >= 1370px) {
  .logos {
    text-align: center;
    justify-content: center;
  }
}

.logos > .carousel-item {
  width: 200px !important;
  margin: 50px 25px 50px 0;
}

.logos > .carousel-item:first-of-type {
  margin-left: 25px;
}

.logos > .carousel-item:last-of-type {
  margin-right: 25px;
}

.logo {
  object-fit: contain !important;
  height: 150px !important;
}

blockquote::before {
  content: open-quote;
}

blockquote::after {
  content: close-quote;
}

blockquote {
  quotes: "“" "”" "‘" "’";
  color: #666;
}

.profile {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  float: right;
  margin-left: 60px;
  margin-bottom: 60px;
}

@media (width <= 600px) {
  .profile {
    display: none;
  }
}

.map-container {
  display: block;
  position: relative;
  user-select: none;
}

.map {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-pin {
  object-fit: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  top: calc(50% - 50px);
  right: calc(50% - 50px);
  opacity: 0;
}
.drop-pin-animation {
  animation: drop 0.5s ease-in 0.75s;
  animation-fill-mode: forwards;
}

@keyframes drop {
  0% {
    transform: translateY(-200px) scale(0.9);
    opacity: 0;
  }
  5% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  65% {
    transform: translateY(-17px) scale(0.9);
    opacity: 1;
  }
  75% {
    transform: translateY(-22px) scale(0.9);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.contact {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.contact-option {
  border-radius: 12px;
  padding: 50px 70px;
  margin-right: 30px;
  text-align: center;
  color: #000;
  transition: background-color 200ms ease-in-out;
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 0 0 1px rgba(14,63,126, 0.04),
              0 1px 1px -0.5px rgba(42,51,70, 0.04),
              0 3px 3px -1.5px rgb(42,51,70, 0.04),
              0 6px 6px -3px rgb(42,51,70, 0.04),
              0 12px 12px -6px rgb(14,63,126 , 0.04),
              0 24px 24px -12px rgb(14,63,126, 0.04);
}

.contact-option:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.contact-option > img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

@media (width <= 800px) {
  .contact-option > img {
    width: 100px;
    height: 100px;
  }
  .contact-option {
    padding: 40px;
    text-align: center;
  }
}
@media (width <= 650px) {
  .contact {
    display: block;
  }
  .contact-option {
    width: 100%;
    margin: 0;
    padding: 20px 20px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
  }
  .contact-option-deeets {
    text-align: justify;
    padding-left: 20px;
  }
  .contact-option > img {
    width: 90px;
    height: 90px;
    margin-bottom: 0;
  }
}

a.remove-link:link { text-decoration: none; }
a.remove-link:visited { text-decoration: none; }
a.remove-link:hover { text-decoration: none; }
a.remove-link:active { text-decoration: none; }

.contact-option p {
  color: #666;
}
