html, body {
  background-color: #232a5e;
  font-family: "EB Garamond", serif;
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #232a5e;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
a {
  color: #efca1d;
}
a:hover {
  color: #F5F5F5;
}

*, *::before, *::after {
  box-sizing: inherit;
}

@font-face { font-family: EB Garamond; src: url('fonts/EBGaramond-VariableFont_wght.ttf');}


.block {
  position: relative;
  display: block;
  top: 0;
  padding: 0;
}
.block-white {
  position: relative;
  display: block;
  top: 0;
  padding: 0;
  background-color: #FFFFFF;
}

.grid-container {
  position: relative;
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 3rem;
}
.grid-cell {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.block-container {
  width: 60%;
  height: auto;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.block-cell {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.spacer {
  width: 100%;
  height: 8%;
}
p {
  margin: 0;
  padding: 0;
  height: 40px;
}

.title {
  position: relative;
  width: 100%;
  margin: auto;
  height: 4rem;
}
.title-text {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  font-size: 1.25rem;
}
.title-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -48%);
  max-width: 480px;
  display: block;
  margin: auto;
}

nav {
  position: relative;
  width: 80%;
  height: auto;
  margin: 1rem auto;
  z-index: +3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100px;
}

.splash-logo {
  position: absolute;
  left: 0;
  height: 92px;
  margin: auto;
}
.menu-bar {
  visibility: visible;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.menu-bar a {
  text-decoration: none;
  font-size: 24px;
  margin: 0 1rem;
}

/* Book Now Button */
.book {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
}
.book-button {
  display: inline-flex;
  height: auto;
  border: none;
  border-radius: 1rem;
  background-color: #efca1d;
  text-align: center;
  font-family: 'RussoOne';
  padding: 12px 16px;
  transition: all 0.5s;
  /* cursor:url(img/menu-icon-logo-bw.png) 50 50, auto; */
  animation: border-pulsate-hire-me 2.5s infinite;
  letter-spacing: 0;
  font-size: 18px;
  color: #232a5e;
}
.book-button:hover {
  background-color: #FFFFFF;
  transition: 0.5s;
  border: none;
  animation: border-pulsate-hire-me-hover 2.5s infinite;
}
.book-button span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.book-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: -2px;
  padding: 0;
  margin: 0;
  right: -20px;
  transition: 0.5s;
}
.book-button:hover span {
  padding-right: 25px;
}
.book-button:hover span:after {
  opacity: 1;
  right: 0;
}
@keyframes border-pulsate-hire-me {
    0%   { box-shadow: 0 0 0 0 rgba(235,235,235,1); }
    70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,191,243,0); }
}
@keyframes border-pulsate-hire-me-hover {
    0%   { box-shadow: 0 0 0 0 rgba(0,0,0,1); }
    70%  { box-shadow: 0 0 0 12px rgba(112,112,112,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,191,243,0); }
}

/* Hidden Menu */
.navOpenMenu {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0px;
  padding: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
}
.navOpenMenu a {
  width: 100%;
  height: 100%;
}
.navOpenMenu img {
  width: 30px;
  transition: .3s;
}
#openMenu, #closeMenu, #links-fade, #social-fade {
  transition: opacity 0.5s ease;
}
.menuicon {
  width: 26px;
  height: 2px;
  background-color: #efca1d;
  margin: 6px auto;
  border-radius: 1em;
}
.hidden-menu {
  width: 0;
  height: 100%;
  z-index: 99;
  position: fixed;
  top: 0px;
  left: 0px;
  overflow: hidden;
  transition: .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #232a5e;
  box-sizing: border-box;
  box-shadow: -6px 0 0 #efca1d inset;
}
.menu-shell {
  width: 80%;
  height: 80%;
}
.hidden-menu .close {
  position: absolute;
  top: 5%;
  right: 10%;
  transition: all 200ms;
  text-decoration: none;
  z-index: 99;
  cursor: pointer;
  clear: both;
}
.hidden-menu .close img {
  width: 30px;
  padding: 0;
}
.hidden-menu .close:hover {
  color: #00bff3;
}
.links {
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  margin-top: 20px;
}
.links img {
  margin-left: 10px;
  width: 12px;
  height: 12px;
}
.link-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.links a {
  font-size: 1.5em;
  line-height: 3.5em;
  text-decoration: none;
}
.links a:hover {
  color: #FFFFFF;
}
.links2 {
  margin-top: 40px;
}
.links2 a {
  line-height: 20px;
  display: flex;
  flex-wrap: wrap;
}

.info-nav {
  display: none;
  position: relative;
  top: 0;
  left: 10px;
  z-index: 2;
  flex-direction: column;
  margin-bottom: 20px;
}
.info-nav a {
  display: flex;
  font-size: 1rem;
  line-height: 3rem;
}
.info-nav a:hover {
  color: #FFFFFF;
}
.show4 {
  display: block;
}

.social {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  text-align: left;
  width: 40%;
  margin-top: 24px;
}
.social img {
  width: 24px;
}
.show {
  display: flex;
}

.splash-container {
  position: relative;
  width: 80%;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.splash-cell {
  position: relative;
  margin: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash-img {
  display: block;
  width: 100%;
  margin: auto;
  border-radius: 1rem;
  box-shadow: 0 0 16px 16px rgba(0,0,0,0.1);
}
.text-box {
  display: block;
  width: max-content;
  text-align: left;
  color: #FFFFFF;
  line-height: 2rem;
  margin: auto;
  font-size: 1.5rem;
}
.splash-phone {
  font-size: 3rem;
  line-height: 5rem;
  color: #efca1d;
}
.section-title {
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 4rem;
  width: 100%;
  height: 100px;
}
.about-container {
  position: relative;
  width: 60%;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
}
.about-cell {
  padding: 0;
}
.about-info {
  display: block;
  width: 100%;
  margin: auto;
  text-align: justify;
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.about-img {
  display: block;
  width: 60%;
  border-radius: 1rem;
  margin: auto;
  float: right;
}
.choose-us {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
  margin: 80px auto;
  line-height: 1rem;
}

.choose-us-title {
  width: 100%;
  margin: auto;
  margin-bottom: 5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  background-color: #232a5e;
  padding: 2rem 0;
  color: #efca1d;
  border-radius: 1em;
}
.choose-us-block {
  width: 75%;
  display: block;
  margin: auto;
}
.choose-us-block-subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1em;
  text-align: center;
  background-color: #efca1d;
  padding: 0.5em;
  border-radius: 1em;
}
.choose-us-block-description {
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.5rem;
}

.services-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;
  border-radius: 1em;
  background-color: #FFFFFF;
}
.services-block img {
  width: 100%;
  border-radius: 1em;
}
.service-button {
  border: none;
  border-style: none;
  padding: 12px 16px;
  font-family: 'EB Garamond';
  background-color: #efca1d;
  border-radius: 1rem;
  font-size: 1rem;
  /* border: solid 1px; */
  cursor: pointer;
  margin: 1.5rem 0;
  font-weight: 600;
}
.service-link {
  text-decoration: none;
  color: #232a5e;
}
.service-button:hover {
  background-color: #232a5e;
  transition: 0.25s ease;
}
.service-button:hover > .service-link {
  color: #efca1d;
}

.service-button:hover + .animation-div-grow {
  width: 26%;
  transition: 0.5s ease;
}
.animation-div-grow {
  width: 15%;
  height: 2px;
  background-color: #232a5e;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
}
.splash-form {
  margin: 0 auto 1rem;
}
.splash-form-dark {
  color: #efca1d;
}
textarea, select, input[type="text"] {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: #232a5e;
}
input {
  height: auto;
  margin-bottom: 2rem;
  width: 100%;
  box-shadow: none;
  outline: 0;
  border-radius: 0.5rem;
  border: 1px solid #232a5e;
  border-bottom: solid #232a5e 6px;
  padding: 0.5rem;
  text-align: center;
}
input:focus {
  background-color: #F5F5F5;
}
.input-label {
  height: 40px;
}
textarea {
  width: 100%;
  height: 20%;
  box-shadow: none;
  outline: 0;
  border-radius: 0.5em;
  border: 1px solid #232a5e;
  border-bottom: solid #232a5e 6px;
  padding: 0.5em;
  margin-bottom: 2em;
  resize: none;
}
select {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 0.5rem;
  background-color: #f1f1f1;
  margin: 2em auto;
  margin-bottom: 3rem;
}
button {
  border: none;
  background-color: #efca1d;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: 'EB Garamond';
  border-radius: 2rem;
  cursor: pointer;
  color: #232a5e;
}
.submit {
  border: none;
  background-color: #efca1d;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: 'EB Garamond';
  border-radius: 2rem;
  cursor: pointer;
  color: #232a5e;
  margin-bottom: 3rem;
}

.thankyou-logo {
  position: relative;
  margin: 2rem auto;
  max-height: 160px;
}
.thankyou-block {
  width: 33%;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  border: solid #efca1d 6px;
  margin-bottom: 4rem;
}
.thankyou-header {
  font-size: 1.25rem;
  text-align: center;
  margin: 1rem auto;
}
.thankyou-text {
  text-align: justify;
  margin: 0 auto 1rem;
}
.thankyou-close {
  width: 100%;
  background-color: #232a5e;
  padding: 0.5rem 0;
  border-radius: 1rem;
  text-align: center;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  background: rgba(50,50,50,0.5);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.popup button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.testimonial-shell-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('img/testimonials-ribbon-bg.png');
  background-size: 150%;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 3rem;
}
.testimonial-container {
  max-width: 100%;
  background-color: white;
  border-radius: 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 2rem;
}
.testimonial-name {
  font-weight: 600;
  /* text-decoration: underline; */
}
.testimonial-quote {
  display: block;
  margin: auto;
  text-align: center;
  margin-bottom: 1rem;
}

.service-areas {
  width: 60%;
  text-align: center;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.contact-block {
  position: relative;
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 1rem;
  /* line-height: 2.5rem; */
  column-gap: 1rem;
  padding: 0 0 1rem;
}
.contact-container {
  margin: auto;
}
.contact-container a {
  padding: 0;
  color: #232a5e;
  text-decoration: none;
}
.contact-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin: auto;
  /* line-height: 2rem; */
}
.contact-icon {
  margin-right: 1rem;
}
.icon {
  width: 24px;
}
.insured-icon {
  width: auto;
  margin: auto;
}
.insured-png {
  width: 5rem;
}

.services-img {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 150%;
  margin: 0 auto;
  border-radius: 1rem;
}
.services-info-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  border: solid 4px #232a5e;
  background-color: #E0E0E0;
  margin: auto;
}
.services-info-block img {
  width: 100%;
  border-radius: 1rem;
  /* border-bottom: solid 4px #232a5e; */
}
ul {
  width: 100%;
  display: block;
  margin: auto;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}
li {
  max-width: 90%;
  padding: 0.2em 0;
  margin: 0;
  font-size: 1rem;
}
.services-info-title {
  position: relative;
  width: 90%;
  text-align: center;
  font-weight: 600;
  background-color: #efca1d;
  margin: 1rem auto;
  border-radius: 1rem;
  padding: 0.5rem 0;
  z-index: 2;
}
.services-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services-list-title {
  width: 100%;
  text-align: center;
  font-weight: 500;
  text-decoration: underline;
  background-color: #232a5e;
  padding: 0.5em 0;
  margin-bottom: 0.5rem;
  color: #efca1d;
}
.services-description {
  position: relative;
  top: -2em;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 1rem;
}
.services-grid {
  width: 80%;
  line-height: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-grow: 1;
}
.services-info-icon img {
  max-width: 16px;
  margin-right: 1rem;
}
.services-info-item {
  font-weight: 200;
}




/* Tablets */
@media (max-width: 1440px) and (min-width: 901px) {
  nav {
    width: 80%;
  }
  .about-container {
    grid-template-columns: 1fr;
    width: 80%;
    margin-bottom: 1rem;
  }
  .splash-container {
    grid-template-columns: 1fr;
  }
  .text-box {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .about-info {
    width: 100%;
    margin-bottom: 1rem;
  }
  .about-img {
    width: 50%;
    float: none;
  }
  .block-container {
    width: 80%;
  }
  .services-info-block {
    width: 60%;
  }
}
/* Mobile */
@media (max-width: 900px) {
  .menu-bar {
    display: none;
  }
  .navOpenMenu {
    display: block;
  }
  .splash-logo {
    left: 50%;
    transform: translateX(-50%);
    height: 86px;
  }
  .splash-container {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .splash-cell {
    margin: 0;
  }
  .splash-img {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    border-radius: 0;
  }
  .text-box {
    width: auto;
    text-align: center;
    font-size: 1rem;
    line-height: 2rem;
  }
  .splash-phone {
    font-size: 2rem;
    line-height: 4rem;
    color: #efca1d;
  }
  .title-text {
    font-size: 1rem;
  }
  .title-ribbon {
    width: 80%;
  }
  .book-button {
    display: none;
  }

  .about-container {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .about-info {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .about-img {
    margin-top: 1rem;
    width: 80%;
    float: none;
  }

  .block-container {
    width: 100%;
  }
  .choose-us-title {
    padding: 32px 0;
    border-radius: 0;
    margin-bottom: 3rem;
  }
  .choose-us-block {
    width: 80%;
  }
  .choose-us-block-subtitle {
    font-size: 1rem;
  }
  .choose-us-block-description {
    text-align: justify;
  }

  .grid-container {
    width: 90%;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .services-block {
    width: 100%;
  }
  .service-button {
    font-size: 1rem;
    margin: 1rem auto;
  }
  form {
    font-size: 1rem;
  }
  input {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  select {
    font-size: 1rem;
  }
  button {
    padding: 12px 24px;
  }
  .thankyou-block {
    width: 80%;
  }
  .testimonial-container {
    padding: 1rem;
  }
  .contact-block {
    width: 80%;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .icon {
    width: 1rem;
  }
  .insured-png {
    width: 4rem;
  }
  .services-img {
    border-radius: 0;
  }
  .services-info-block {
    width: 90%;
  }
}
@media (max-width: 335px) {
  .title-text {
    font-size: 0.9rem;
  }
}
