@font-face {
  font-family: 'Crete Round';
  src: url('../fonts/CreteRound.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/proximanova_regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/proximanova_bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/proximanova_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

html {
  font-size: 16px;
  overflow-x: hidden !important;
}

p {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
  color: #000;
}
.content-row {
  margin: 0 70px;
  display: flex;
  flex-wrap: wrap;
}

.content-container {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar {
  width: 100%;
  padding: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  padding: 1rem;
}

.navbar .nav-container a:hover {
  font-weight: bolder;
}

.nav-container {
  position: absolute;
  top: 0;
  height: 60px;
  z-index: 10010;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #003f2d;
}

.community-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.walkthrough-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 120px;
  background-color: #003f2d;
  height: 100vh;
  width: 90%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -30px;
  padding-left: 30px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.nav-container input[type='checkbox']:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type='checkbox']:checked ~ .logo {
  display: none;
}

.main-logo {
  padding: 35px;
  max-width: 470px;
  position: relative;
}

.main-logo::before {
  content: 'Brunswick, GA ';
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
}

.image-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-row img {
  max-width: 18%;
  height: auto;
}

.banner-content h2 {
  font-size: 4rem;
  max-width: 1300px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 4px 4px #0f0e0e;
  padding: 20px;
  font-family: 'Crete Round', serif;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  color: #fff;
  padding: 15px;
}

.contact-info a {
  color: #fff;
}

.contact-container {
  background-color: #000;
  text-align: center;
}

.phone-icon,
.mail-icon,
.social-icon {
  position: relative;
  z-index: 0;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  padding-left: 80px;
  color: #fff;
}

.phone-icon {
  font-size: 2.5rem !important;
  font-weight: 300 !important;
}

.phone-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('../img/Ringer Volume.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 67px;
  z-index: 1;
}

.mail-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('../img/Letter.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 67px;
  z-index: 1;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('../img/facebook (2).png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 67px;
  z-index: 1;
}

.bn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../img/Rectangle 4.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
}

.bn-content {
  position: relative;
}

.insured {
  position: absolute;
  top: 120px;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(166, 86, 12, 1) 35%
  );
  padding: 10px 60px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
}
.insured span {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}

.mob-contact-info {
  display: none;
}

.mob-insured h5 {
  display: none;
}

.home-first {
  background-image: url('../img/bg-serving.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(255, 255, 255, 0.886);
  background-blend-mode: overlay;
}

.home-first h3 {
  text-align: center;
  padding-top: 20px;
  color: #a6560c;
  font-family: 'Crete Round', serif;
  font-size: 3rem;
}

.home-first h5 {
  text-align: center;
  color: #000;
  font-family: 'Crete Round', serif;
  font-size: 2.25rem;
}

.serv-img {
  max-width: 551px;
  max-height: 655px;
  margin-left: 50px;
}

.serv-img img {
  width: 100%;
}

.home-first h4 {
  color: #a6560c;
  text-shadow: 0px 4px 4px #fff;
  font-family: 'Crete Round', serif;
  font-size: 2.5rem;
  max-width: 550px;
}

.home-first p {
  color: #000;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 1.875rem;
  padding-bottom: 40px;
}

.upgrade-block {
  padding: 20px 0 50px 0;
}

.home-second {
  background-image: url('../img/bg-services.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-img {
  margin-top: -30px;
  margin-bottom: -30px;
}

.home-second .content {
  margin-left: 40px;
}

.home-second .content h4 {
  color: #fff;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  margin-top: 40px;
}

.home-second .content li {
  color: #fff;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  font-style: italic;
}

.home-second .content ul {
  margin-top: 30px;
}

.mob-img {
  display: none;
}

.two-colums {
  display: flex;
  gap: 350px;
}

.two-colums div {
  flex: 1 1 calc(50% - 350px);
}

.keep-block {
  padding: 0 50px;
}
.home-third {
  padding: 50px 0;
  background-image: url('../img/bg-keep.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-third h4 {
  color: #a6560c;
  font-family: 'Crete Round', serif;
  font-size: 3rem;
  margin-top: 20px;
}

.home-third h5 {
  color: #000;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
}

.home-third li {
  color: #000;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 2rem;
  font-weight: 400;
  list-style-type: disc;
}

.home-third ul {
  padding-left: 40px;
}

.home-fourth {
  background-image: url('../img/bg-contact.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 250px 0;
}

.home-fourth h5 {
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 2rem;
  font-weight: 700;
}

.home-fourth h3 {
  text-align: center;
  color: #a6560c;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 3rem;
  font-style: italic;
  font-weight: 900;
  line-height: 60px;
}

.home-fourth hr {
  width: 80%;
  background-color: #000;
  margin: 0 auto;
  height: 1px;
}

.home-fourth p {
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
  padding-top: 40px;
  max-width: 850px;
  margin: 0 auto;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

.content-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
}

.copyright {
  flex: 1 1 50%;
  text-align: center;
}

.powered {
  flex: 1 1 25%;
}

.copyright p {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 2rem;
}

.copyright span {
  font-size: 1.75rem;
}

.powered a {
  color: #fff;
  text-transform: uppercase;
}

.powered img {
  max-width: 200px;
  padding-left: 10px;
}

.content-footer .contact-info {
  flex-direction: column;
  gap: 0;
  flex: 1 1 25%;
}

.content-footer .contact-info .phone-icon {
  display: none;
}

.content-footer .contact-info .mail-icon {
  display: none;
}

.contact-info p {
  display: none;
}
