* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  font-family: "Lato";
}

img.imageRound {
  border-radius: 50%;
}

.primaryNav {
  flex-basis: 40%;
}
.primaryNav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.primaryNav ul li {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  color: #112026;
  font-weight: 400;
  transition: all 500ms ease-in-out;
  border-bottom: 3px solid transparent;
}
.primaryNav ul li:hover, .primaryNav ul li.active {
  border-color: #00B4C6;
}
.primaryNav ul li a {
  font-size: 20px;
  text-transform: uppercase;
  color: #112026;
  font-weight: 400;
}

.mobileNav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 300px;
  align-items: center;
  position: fixed;
  z-index: 999;
  right: -100%;
  top: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 15px 0;
  box-sizing: border-box;
  transition: right 500ms ease-in-out;
  box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.5);
  padding-top: 50px;
}
.mobileNav .close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}
.mobileNav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: initial;
}
.mobileNav .logo img {
  border-radius: 50%;
  width: 100px;
  object-fit: contain;
}
.mobileNav .social li {
  transition: all 1s ease-in-out;
}
.mobileNav .social li:hover a i {
  transform: rotate(360deg);
  color: #00B4C6;
}
.mobileNav .social li a i {
  font-size: 30px;
  transition: all 1s ease-in-out;
}
.mobileNav ul.nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}
.mobileNav ul.nav li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  transition: all 500ms ease-in-out;
}
.mobileNav ul.nav li:hover {
  background: #00B4C6;
}
.mobileNav ul.nav li:hover > a {
  color: #FFFFFF;
}
.mobileNav ul.nav li a {
  width: 100%;
  text-align: center;
  display: block;
  transition: all 500ms ease-in-out;
}
.mobileNav .buttonGroup {
  flex-basis: initial;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.mobileNav .buttonGroup a {
  font-size: 20px;
  width: 100%;
  border-radius: 0;
  padding: 15px 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: all 500ms ease-in-out;
  background: #FFFFFF;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.5);
}
header.sticky .logo img {
  width: 75px;
}
header.sticky .buttonGroup a {
  font-size: 16px;
}
header .logo {
  flex-basis: 25%;
}
header .primaryNav {
  flex-basis: 50%;
}
header .buttonGroup {
  display: flex;
  justify-content: flex-end;
  flex-basis: 25%;
}
header .buttonGroup .mobileNavButton {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
header .buttonGroup .mobileNavButton > .bar {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: #000000;
}

@media screen and (max-width: 1165px) {
  header .buttonGroup a {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  header .primaryNav {
    display: none;
  }
  header .logo img {
    width: 60px;
  }
  header > .buttonGroup > a {
    display: none;
  }
  header > .buttonGroup .mobileNavButton {
    display: flex;
  }
}
footer {
  padding: 30px 15px;
  box-sizing: border-box;
  background: #000000;
  color: #FFFFFF;
}
footer .innerFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .innerFooter .footerItem {
  color: #FFFFFF;
}
footer .innerFooter .footerItem .social {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .innerFooter .footerItem .social li a {
  text-decoration: none;
}
footer .innerFooter .footerItem .social li a i {
  color: #FFFFFF;
  font-size: 32px;
}

.button {
  font-size: 18px;
  font-weight: 700;
  padding: 0.5em 2em;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #000000;
  transition: all 500ms ease-in-out;
}
.button.orange {
  background: #F5BE64;
  color: #FFFFFF;
  border-color: #F5BE64;
}
.button.orange:hover {
  background: #FFFFFF;
  color: #F5BE64;
}
.button.blue {
  background: #00B4C6;
  color: #FFFFFF;
  border-color: #00B4C6;
}
.button.blue:hover {
  background: #FFFFFF;
  color: #00B4C6;
}
.button.white {
  background: #FFFFFF;
  color: #A2BED0;
  border: 1px solid #FFFFFF;
}
.button.white:hover {
  background: #A2BED0;
  color: #FFFFFF;
}
.button.white-alt {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.button.white-alt:hover {
  background: #FFFFFF;
  color: #A2BED0;
}

@keyframes slideLeft {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slideRight {
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
.primaryPage .primaryBanner {
  position: relative;
  background-image: url("/images/fort-myers-mens-grooming-specialist.jpg");
  height: 60vh;
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}
.primaryPage .primaryBanner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), transparent);
  z-index: 98;
}
.primaryPage .primaryBanner .bannerText {
  position: absolute;
  transition: all 500ms ease-in-out;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.primaryPage .primaryBanner .bannerText .bannerTitle {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
}
.primaryPage .primaryBanner .bannerText .bannerDescription {
  font-size: 18px;
  color: #FFFFFF;
  width: 400px;
}
.primaryPage .primaryBanner .bannerText .buttonGroup {
  margin-top: 45px;
}
.primaryPage .primaryMain section {
  width: 100%;
  display: block;
  padding: 30px 15px;
  box-sizing: border-box;
}
.primaryPage .primaryMain section.intro {
  padding: 30px 75px;
  text-align: center;
}
.primaryPage .primaryMain section.intro h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
.primaryPage .primaryMain section.intro hr {
  border-bottom: 3px solid #00B4C6;
  width: 300px;
  border-radius: 999px;
  border-top: none;
  margin: 10px auto 30px auto;
}
.primaryPage .primaryMain section.intro p {
  font-size: 18px;
  line-height: 26px;
}
.primaryPage .primaryMain section.whyChooseUs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 15px 75px 15px;
  overflow-x: hidden;
}
.primaryPage .primaryMain section.whyChooseUs .left {
  flex-basis: 45%;
  right: 100%;
  position: relative;
  animation-name: slideRight;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.primaryPage .primaryMain section.whyChooseUs .left .imageContainer {
  position: relative;
  width: 80%;
  object-fit: contain;
  margin: 0 auto;
  overflow: hidden;
}
.primaryPage .primaryMain section.whyChooseUs .left .imageContainer img {
  position: relative;
  right: 0;
  width: 100%;
  object-fit: contain;
}
.primaryPage .primaryMain section.whyChooseUs .right {
  position: relative;
  flex-basis: 55%;
  padding-left: 75px;
  left: 100%;
  box-sizing: border-box;
  animation-name: slideLeft;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transition: left 500ms ease-in-out;
}
.primaryPage .primaryMain section.whyChooseUs .right h2 {
  font-size: 26px;
  font-weight: 700;
  width: 50%;
  margin-bottom: 15px;
}
.primaryPage .primaryMain section.whyChooseUs .right p {
  font-size: 17px;
  line-height: 26px;
  width: 70%;
  margin-bottom: 30px;
}
.primaryPage .primaryMain section.whyChooseUs .right .buttonGroup {
  display: flex;
  width: 70%;
  justify-content: flex-start;
}
.primaryPage .primaryMain section.theProcess {
  width: 100%;
  background: #A2BED0;
  color: #FFFFFF;
}
.primaryPage .primaryMain section.theProcess .innerProcess {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem .processIcon i {
  font-size: 32px;
  color: #FFFFFF;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem .processTitle {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem .processDescription {
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  min-height: 78px;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem .buttonGroup {
  margin-top: 25px;
}
.primaryPage .primaryMain section.theProcess .innerProcess .processItem .buttonGroup .button {
  display: block;
}

@media screen and (max-width: 1170px) {
  .primaryPage .primaryMain section.whyChooseUs .right {
    padding-left: 30px;
  }
  .primaryPage .primaryMain section.whyChooseUs .right h2 {
    width: 80%;
  }
  .primaryPage .primaryMain section.whyChooseUs .right p {
    width: 100%;
  }
}
@media screen and (max-width: 975px) {
  .primaryPage .primaryMain section.whyChooseUs .right {
    padding-left: 15px;
  }
  .primaryPage .primaryMain section.whyChooseUs .right h2 {
    width: 100%;
    font-size: 22px;
  }
  .primaryPage .primaryMain section.whyChooseUs .right p {
    font-size: 16px;
    line-height: 22px;
  }
  .primaryPage .primaryMain section.theProcess .innerProcess .processItem .processTitle {
    min-height: 50px;
  }
}
@media screen and (max-width: 800px) {
  .primaryPage .primaryMain section.whyChooseUs {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .primaryPage .primaryMain section.whyChooseUs .left .imageContainer img {
    height: 400px;
  }
  .primaryPage .primaryMain section.whyChooseUs .right {
    padding: 20px 0;
    width: 75%;
  }
  .primaryPage .primaryMain section.whyChooseUs .right .buttonGroup {
    justify-content: center;
    width: 100%;
  }
  .primaryPage .primaryMain section.theProcess .innerProcess {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
    width: 50%;
    margin: 0 auto;
  }
  .primaryPage .primaryMain section.theProcess .innerProcess .processItem .processTitle {
    min-height: 0;
  }
  .primaryPage .primaryMain section.theProcess .innerProcess .processItem .processDescription {
    min-height: 0;
  }
}
@media screen and (max-width: 550px) {
  .primaryPage .primaryBanner .bannerText {
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .primaryPage .primaryBanner .bannerText .bannerDescription {
    width: 100%;
  }
  .primaryPage .primaryMain section.theProcess .innerProcess {
    width: 80%;
  }
}
