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

.secondaryPage {
  display: block;
  width: 100%;
}
.secondaryPage .secondaryBanner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 250px;
  background-image: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.secondaryPage .secondaryBanner .bannerText {
  position: absolute;
  transition: all 500ms ease-in-out;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.secondaryPage .secondaryBanner .bannerText .bannerTitle {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
}
.secondaryPage .secondaryBanner .bannerText .bannerDescription {
  font-size: 18px;
  color: #FFFFFF;
  width: 400px;
}
.secondaryPage .secondaryBanner .bannerText .buttonGroup {
  margin-top: 45px;
}
.secondaryPage .secondaryMain {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.secondaryPage .secondaryMain .left {
  flex-basis: 60%;
  padding: 30px 60px;
}
.secondaryPage .secondaryMain .right {
  flex-basis: 40%;
}
.secondaryPage .secondaryMain h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.secondaryPage.topFiveMensHaircutBlog .secondaryBanner {
  background-image: url("/images/fort-myers-mens-hairstyles-blog.jpg");
  background-position: top center;
  min-height: 350px;
  background-size: cover;
}
.secondaryPage.ultimateGuideBlogPost .secondaryBanner {
  background-image: url("/images/fort-myers-mens-grooming-specialist.jpg");
  background-position: top center;
  min-height: 350px;
  background-size: cover;
}
.secondaryPage.maintainBetweenVisitsBlog .secondaryBanner {
  background-image: url("/images/fort-myers-mens-hairstyle-maintenance.jpg");
  background-position: top center;
  min-height: 350px;
  background-size: cover;
}
.secondaryPage .secondaryBanner {
  background-image: url("/images/fort-myers-mens-haircut.jpg");
  background-position: 40% center;
  min-height: 350px;
}
.secondaryPage .blogMain {
  padding: 45px 15px;
  box-sizing: border-box;
  min-height: 75vh;
}
.secondaryPage .blogMain h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
.secondaryPage .blogMain h2 {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.secondaryPage .blogMain .blogRow {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
  box-sizing: border-box;
}
.secondaryPage .blogMain .blogRow .blogPostPreview {
  width: calc(33% - 30px);
  height: 400px;
  border: 1px solid #ececec;
  border-radius: 5px;
  overflow: hidden;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .previewImage {
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .previewImage img {
  width: 100%;
  object-fit: contain;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .previewInfo {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .previewInfo .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .previewInfo .description {
  font-size: 16px;
  font-weight: 300;
}
.secondaryPage .blogMain .blogRow .blogPostPreview .readMore {
  width: 100%;
  text-align: right;
  color: #00B4C6;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;
}
.secondaryPage .blogPost {
  padding: 30px 45px;
  box-sizing: border-box;
  min-height: 75vh;
}
.secondaryPage .blogPost a {
  color: #00B4C6;
}
.secondaryPage .blogPost h1 {
  font-size: 36px;
  font-weight: 700;
}
.secondaryPage .blogPost .datePosted {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
}
.secondaryPage .blogPost h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.secondaryPage .blogPost p {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 15px;
}
.secondaryPage .blogPost ul {
  list-style-type: disc;
  padding-left: 15px;
  margin-bottom: 15px;
}
.secondaryPage .blogPost ul li {
  margin-bottom: 10px;
  font-weight: 300;
}
.secondaryPage .blogPost .localTip {
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 30px;
}
.secondaryPage .blogPost .localTip h3 {
  color: #FFFFFF;
}
.secondaryPage .blogPost .localTip p {
  color: #FFFFFF;
  font-style: italic;
}
.secondaryPage .backToBlog {
  margin-left: 45px;
  border: 1px solid #00B4C6;
  padding: 5px 10px;
  box-sizing: border-box;
  width: fit-content;
  margin-bottom: 30px;
  color: #00B4C6;
  transition: all 500ms ease-in-out;
}
.secondaryPage .backToBlog a {
  color: #00B4C6;
  transition: all 500ms ease-in-out;
}
.secondaryPage .backToBlog:hover {
  color: #FFFFFF;
  background: #00B4C6;
}
.secondaryPage .backToBlog:hover a {
  color: #FFFFFF;
}
