@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;800&display=swap');

* {
  box-sizing: border-box;
}
:root {
  --primary-color: #f9c403;
  --secondary-color: #5e9d30;
  --prime-accent: #ffe482;
  --secondary-accent: #385f1c;
  --text-accent: white;
  --fill-accent: black;
  --secondary-gradient: linear-gradient(
    145deg,
    #385f1c -75%,
    #5e9d30 50%,
    #385f1c 175%
  );
  --primary-gradient: linear-gradient(
    145deg,
    #f9c403 -75%,
    #ffe482 50%,
    #f9c403 175%
  );
}
body {
  font-family: 'Poppins', sans-serif;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  min-height: max-content;
  height: 100vh;
  margin: 0;
}
.hmbgr-menu {
  display: none;
}

/* // */
/* // hero-section // */
/* // */

section.hero-container {
  position: relative;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  min-height: 600px;
  /* top: -20vh; */
}
.quick-menu {
  position: fixed;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--text-accent);
  top: 0;
  height: 110px;
  width: 100vw;
  margin: 0;
  z-index: 5;
  transition: height 0.2s ease-in;
}
.quick-menu.min {
  height: 70px;
}
.quick-menu.min ~ nav.main-menu {
  margin: 0;
  top: 70px;
}
.quick-menu.min .logo-head {
  height: 45px;
  width: 300px;
}
.logo-head {
  position: relative;
  display: flex;
  background-image: url(images/birdeye_side_Logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0px 10px 0px;
  padding: 0px;
  height: 100px;
  width: 300px;
  z-index: 10;
  transition: all 0.2s ease-in;
}
a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--fill-accent);
}
a:hover {
  text-decoration: none;
  color: var(--text-accent);
  font-size: 1rem;
}
a.bottom {
  text-decoration: none;
  color: var(--text-accent);
  font-size: 1rem;
}
a.bottom:hover {
  text-decoration: none;
  color: var(--secondary-accent);
  font-size: 1rem;
}
button {
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
  /* border-top-right-radius: 15px;
  border-bottom-left-radius: 15px; */
  font-size: 0.9rem;
  font-weight: 700;
  height: 3.3rem;
  min-height: 3rem;
  width: 10.5rem;
  margin: 0.5rem 0rem 0rem;
  border-radius: 5px;
}
button:active {
  transform: scale(90%);
}
.btn-1 {
  color: var(--primary-color);
  background: var(--secondary-gradient);
  border: 0.2rem solid var(--primary-color);
}
.btn-1:hover {
  color: var(--secondary-color);
  background: var(--primary-gradient);
  border: 0.2rem solid var(--secondary-color);
}
.btn-1:hover .phone-container {
  color: var(--secondary-color);
  cursor: default;
}
.btn-2 {
  color: var(--secondary-color);
  background: var(--primary-gradient);
  border: 0.2rem solid var(--secondary-color);
}
.btn-2:hover {
  color: var(--primary-color);
  background: var(--secondary-gradient);
  border: 0.2rem solid var(--primary-color);
}
.phone-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 100%;
  width: 100%;
  font-size: 0.9rem;
}
.btn-1 p a {
  color: var(--primaery-color);
}
.phone-num {
  display: flex;
  letter-spacing: 1px;
  margin: 0px 0px 0px;
}
.phone-call {
  display: none;
  margin: 0px 0px 0px;
  letter-spacing: 1px;
}
.btn-2.get-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-size: 1rem;
}
p.get {
  display: flex;
  font-size: 1rem;
  margin: 0px 10px 0px;
}
p.quote {
  font-size: 1rem;
  margin: 0px 0px 0px;
}
.quick-menu i.fa-phone {
  color: var(--primary-colorr);
  margin-right: 5px;
}
nav.main-menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.4);
  top: 110px;
  height: 55px;
  width: 100vw;
  min-width: 600px;
  margin: 0;
  z-index: 10;
  transition: top 0.2s ease-in;
}
nav.main-menu ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0;
  width: 100vw;
  height: 100%;
}
/* ul.drop-dwn-menu {
  cursor: pointer;
  margin: 10px 0px 0px;
  width: 210px;
  height: 125px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
ul.drop-dwn-menu.top {
  position: fixed;
  top: 145px;
  left: 36.5vw;
  display: none;
}
ul.drop-dwn-menu.top li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: start;
  list-style: none;
  background-color: #f9c403;
  padding: 0px 10px 0px;
  width: 100%;
  height: 100%;
}
ul.drop-dwn-menu.top li:hover {
  background-color: var(--text-accent);
  width: 105%;
} */
.fa-angle-down {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 20px;
  width: 20px;
  font-size: 1rem;
  transition: transform 0.2s ease-in-out;
}
.service:hover .fa-angle-down {
  color: white;
  transform: rotate(180deg);
}
nav.main-menu ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-size: 0.9rem;
  left: -10px;
  min-width: 15%;
  height: 40%;
}
nav.main-menu ul li:hover {
  font-weight: bold;
  color: var(--text-accent);
  cursor: pointer;
}
.hero-text {
  position: absolute;
  width: 80vw;
  top: 325px;
  left: 5%;
  color: var(--text-accent);
}
.hero-text h1 {
  font-family: 'Poppins';
  font-weight: bold;
  font-size: 3rem;
  text-transform: uppercase;
  margin: 1rem 0rem;
  width: auto;
}
.hero-text p.highlight-text {
  font-size: 1.6rem;
  color: var(--primary-color);
}
.hero-text p {
  line-height: 1.8rem;
  font-size: 1rem;
  margin: 0.5rem 0rem 0rem;
}
.hero-img img {
  position: absolute;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  object-fit: cover;
  top: 12%;
  width: 100vw;
  min-height: 600px;
  filter: brightness(0.6) contrast(1.2);
  z-index: -2;
  transition: all 0.6s ease;
}
.hero-aboutimg img {
  position: absolute;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  object-fit: cover;
  top: 100px;
  width: 100vw;
  min-height: 600px;
  filter: brightness(0.6) contrast(1.2);
  z-index: -2;
  transition: all 0.6s ease;
}
.hero::before {
  content: '';
  top: 0px;
  position: absolute;
  width: 100vw;
  min-height: 102%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}
.contact-bird {
  position: absolute;
  display: none;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  top: 113vh;
  left: 17vw;
  height: 200px;
  width: 70vw;
  min-width: 575px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.contact-bird img {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  height: 100%;
  transition: 0.4s ease-in;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5));
  transform: translateX(-100%) scale(70%);
  transition-delay: 0.4s;
}
.contact-bird:hover .bird {
  transform: translateX(-15%) scale(100%);
}
.bird-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  width: 400px;
  background-color: var(--secondary-color);
  border: 0.2rem solid var(--text-accent);
  border-radius: 5px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5));
  transform: translateX(30%) scaleX(0%);
  transition: 0.4s ease-in;
  transition-delay: 0.4s;
}
.contact-bird:hover .bird-btn {
  transform: translateX(20%) scaleX(100%);
}
.contact-btn-text {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: var(--text-accent);
  margin: 0px 00px 10px;
  height: 70%;
  width: 80%;
  font-size: 2rem;
  font-weight: bold;
  transform: translateX(200px) scale(100%);
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
}
.contact-bird:hover .contact-btn-text {
  transform: translateX(0px);
  opacity: 1;
  transition-delay: 0.4s;
}
.contact-btn-text:hover {
  color: var(--primary-color);
}
.contact-btn-text p {
  margin: 0px 0px 0px;
  font-weight: 400;
  font-size: 1rem;
}
.contact-form-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 355px;
  width: 100vw;
  z-index: 4;
}
.contact-bg {
  display: none;
  position: fixed;
  opacity: 0;
  height: 110vh;
  width: 110vw;
  top: 0px;
  filter: blur(0px) brightness(0.3);
  background-image: repeating-linear-gradient(
    -45deg,
    hsla(107, 100%, 85%, 0.8) 0 30px,
    rgb(76, 132, 36, 0.8) 30px 60px
  );
  z-index: -3;
  animation: zigzag 2s linear alternate-reverse infinite;
  transition: opacity 4s ease;
}
@keyframes zigzag {
  0% {
    top: -10px;
  }
  100% {
    top: 20px;
  }
}
.contact-form-container h2 {
  font-size: 2rem;
  display: flex;
  position: relative;
  top: -65%;
  color: var(--text-accent);
  z-index: 1;
}
.contact {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  color: var(--primary-color);
  background: var(--secondary-gradient);
  border: 0.2rem solid var(--primary-color);
  border-radius: 5px;
  /* border-top-right-radius: 35px;
  border-bottom-left-radius: 35px; */
  top: -5%;
  padding: 1rem;
  width: 80vw;
  height: 100%;
  max-width: 600px;
  min-height: 300px;
  box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.8);
}
input:focus {
  outline: none;
  border-bottom: 0.15rem solid var(--primary-color);
}
input {
  border-style: none;
  color: white;
  background-color: var(--secondary-color);
  /* border-radius: 5px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px; */
  padding: 0px 5px 0px;
  font-size: 1rem;
  height: 2.7rem;
  min-height: 2rem;
  width: 100%;
  margin: 5px 0px 5px;
}
input::placeholder {
  color: var(--secondary-accent);
}
input:valid {
  border-bottom: 0.15rem solid var(--prime-accent);
}
input:invalid {
  border-bottom: 0.15rem solid var(--primary-color);
}
textarea::placeholder {
  padding: 5px 2.5px 0px;
  color: var(--secondary-accent);
  font-size: 1rem;
}
.contact textarea:focus {
  outline: none;
  border-bottom: 0.15rem solid var(--prime-accent);
}
.contact textarea:valid {
  border-bottom: 0.15rem solid var(--prime-accent);
}
input[type='email'] {
  width: 48%;
}
input[type='number'] {
  width: 48%;
}
.input-group {
  display: flex;
  justify-content: space-between;
  margin: 0px 5px 0px;
  width: 100%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
.contact textarea {
  border: none;
  color: white;
  background-color: var(--secondary-color);
  /* border-radius: 5px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px; */
  padding: 0px 5px 0px;
  font-size: 1rem;
  border-bottom: 0.15rem solid var(--text-accent);
  height: 40%;
  width: 100%;
  margin: 5px 0px 15px;
}
.contact textarea:invalid {
  border-bottom: 0.15rem solid var(--primary-color);
}
.contact input#submit {
  color: var(--secondary-accent);
  background-color: var(--primary-color);
  font-size: 1rem;
  font-weight: bold;
  border: none;
}
.contact input#submit:hover {
  color: white;
  background-color: var(--primary-color);
}
.contact input#submit:active {
  transform: scale(98%);
  background-color: var(--prime-accent);
}
/* // */
/* // about-section // */
/* // */

section.about-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  top: 350px;
  height: 700px;
  width: 100vw;
  min-height: 700px;
  background-color: var(--text-accent);
}
.about-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5% 5%;
  width: 50vw;
  height: 700px;
  min-height: 600px;
}
.about-text h2 {
  top: 0;
  font-size: 2.4rem;
  margin: 0rem 0rem;
}
.about-text p {
  line-height: 1.6rem;
  opacity: 0.8;
  margin: 10px 0px 20px;
  overflow-y: auto;
}
.p-text::before {
  content: '';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40%;
  left: 25%;
  height: 50%;
  width: 40%;
  opacity: 0.4;
  z-index: -1;
  background-image: url(images/bird_Logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.about-text button.services {
  top: -10%;
  margin: 4rem 0rem 0rem;
  position: relative;
  width: 12.5rem;
  z-index: 0;
}
.about-text button.services i {
  margin-left: 2%;
}
.aboutpage-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5% 0;
  width: 100vw;
  height: 100vh;
  min-height: 900px;
  top: 12%;
}
.aboutpage-text {
  height: 100vh;
  min-height: 800px;
}
.aboutpage-text h2 {
  margin: 10px 0 10px;
  font-size: 1.4rem;
}
.aboutpage-text p {
  margin: 0;
}
button.about-services {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 5%;
  top: 70%;
}
button.about-services a:hover {
  color: var(--secondary-color);
}
button.services a {
  color: var(--primary-color);
}
button.services a:hover {
  color: var(--secondary-color);
}
.about-img img {
  display: block;
  width: 50vw;
  height: 100%;
  object-fit: cover;
  clip-path: circle(45% at 50% 50%);
  z-index: 1;
}
.about-img::after {
  content: '';
  top: 0px;
  left: 50%;
  position: absolute;
  width: 50vw;
  min-height: 100%;
  clip-path: circle(45% at 50% 50%);
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(#f9c403 -5%, rgba(0, 0, 0, 0), #f9c403 105%);
}
.services-container {
  position: relative;
  display: block;
  flex-direction: column;
  justify-content: flex-start;
  top: 200px;
  width: 100vw;
  height: 100vh;
  min-height: 900px;
  background-color: var(--text-accent);
  /* overflow-y: scroll; */
}
.services-container h1 {
  position: relative;
  text-align: center;
  font-size: 2rem;
  height: 50px;
  width: 100vw;
  margin: 10% 0% 0%;
}
.services-container p {
  position: relative;
  text-align: center;
  height: 25px;
  width: 100vw;
  font-size: 1rem;
  margin: 5px 0 10px;
  top: 0;
}
.services-boxes {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  height: 60%;
  width: 100vw;
  min-width: 255px;
  z-index: 2;
  box-sizing: content-box;
}
.service-box {
  position: relative;
  height: 55%;
  width: 35%;
  margin: 10px 10px;
  border-radius: 5px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  background-color: #ffe482;
  box-sizing: border-box;
  z-index: 0;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.service-title {
  position: relative;
  color: var(--text-accent);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  width: 90%;
  height: 15%;
  top: 80%;
  margin: 0 14px;
  z-index: 1;
  transition: 0.6s ease;
  /* cursor: pointer; */
}
.service-img {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  background-position: bottom;
  bottom: 15%;
  height: 100%;
  width: 100%;
  transition: 0.6s ease;
  filter: contrast(0.6);
}
.service-img:hover,
button.services:hover ~ .service-img {
  /* cursor: pointer; */
  filter: contrast(1);
  transform: scale(1.2, 1.2);
  transform-origin: center center;
}
.service-title:hover ~ .service-img {
  transform: scale(1.2, 1.2);
  filter: contrast(1);
  transform-origin: center center;
}
button.services {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0% 5%;
  bottom: 20px;
  z-index: 10;
}
button.services:active {
  transform: scale(90%);
}

/* // */
/* // gallery-section // */
/* // */

.gallery-container {
  position: relative;
  height: 600px;
  width: 100vw;
  background: black;
  z-index: 1;
}
.page-break {
  position: absolute;
  top: -150px;
  height: 350px;
  width: 100vw;
  background-color: var(--text-accent);
  clip-path: polygon(50% 75%, 70% 60%, 100% 60%, 100% 0, 0 0, 0% 60%, 33% 60%);
  z-index: 2;
}
.gallery-text {
  position: absolute;
  width: 40%;
  color: var(--text-accent);
  top: 200px;
  margin: 0% 5% 0%;
  z-index: 2;
  transition: opacity 0.6s ease-in-out;
}
.gallery-text h3 {
  color: var(--primary-color);
  margin: 0px 0px 0px;
  font-size: 3rem;
}
.gallery-text p {
  margin: 0px 0px 0px;
  font-size: 1.4rem;
}
.gallery {
  position: absolute;
  display: flex;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100vw;
  background-image: url(images/lawn_\ 1.jpg);
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.8);
  z-index: 1;
}

.gallery::after {
  content: '';
  position: absolute;
  display: flex;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.gallery i.fa-solid {
  display: flex;
  position: absolute;
  text-align: center;
  align-items: center;
  align-content: center;
  top: 85%;
  right: 22.25%;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 2rem;
  color: var(--text-accent);
  opacity: 0.5;
  z-index: 40;
  transition: opacity 0.6s ease-in-out;
}
i.fa-caret-right {
  padding: 1%;
  transform: translateX(70%);
}
i.fa-caret-left {
  padding: 1%;
  transform: translateX(-70%);
}
i.fa-caret-left:hover {
  cursor: pointer;
  opacity: 1;
}
.fa-solid.gallery-btn:active {
  font-size: 2.5rem;
}
.gallery img {
  position: absolute;
  overflow: hidden;
  object-fit: cover;
  top: 35%;
  right: 5%;
  width: 40vw;
  height: 40vh;
  z-index: 4;
  transition: 0.2s ease-in-out;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
#gallery-pic:hover {
  width: 80vw;
  height: 80vh;
  transform: translateX(-5%) translateY(-30%);
}

/* // */
/* // Bottom-Menu-section // */
/* // */

.bottom-menu-container {
  position: relative;
  display: flex;
  background-color: black;
  flex-direction: row;
  justify-content: center;
  height: 400px;
  width: 100vw;
  z-index: 2;
  bottom: 0px;
}
.bottom-menu-info {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 30%;
}
.bottom.logo-head {
  display: flex;
  justify-content: flex-start;
  left: 0px;
  margin: 20px 0px 20px;
  width: 50%;
  background-image: url(images/birdeye_Logo.png);
}
.bottom-menu-info p {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  color: var(--text-accent);
  width: 100%;
  min-width: 80%;
  height: 40%;
}
.social-links {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  align-content: center;
  margin: 0px;
  width: 100%;
  height: 50px;
}
.social-links i {
  text-align: center;
  color: var(--primary-color);
  font-size: 25px;
  margin: 0px 0px;
  width: 50px;
  height: 30px;
}
.fa-brands:hover {
  cursor: pointer;
  color: var(--secondary-accent);
  transition: all 0.4s;
  transform: translateY(-5px);
}
.bottom-menu-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  align-self: center;
  height: 100%;
  width: 33%;
}
.bottom-menu-nav ul {
  align-self: center;
  color: var(--text-accent);
  list-style: none;
  height: 100%;
  width: 50%;
}
.nav-links {
  text-align: center;
  padding: 0;
}
.nav-links li:hover {
  cursor: pointer;
  color: var(--secondary-accent);
  transition: all 0.2s;
}
.bottom-menu-nav span {
  color: var(--text-accent);
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: bold;
  padding: 0px 0px;
  margin: 20px 0px 0px;
  width: 50%;
  height: 40px;
}
.bottom-menu-nav ul li {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 40px;
  width: 100%;
}
/* ul.drop-dwn-menu.bottom {
  position: absolute;
  display: flex;
  flex-direction: column;
  margin: 10px 0px 0px;
  bottom: 235px;
  left: 2.5vw;
  width: 210px;
  height: 125px;
  z-index: 10;
  display: none;
}
ul.drop-dwn-menu.bottom li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: start;
  list-style: none;
  background-color: var(--fill-accent);
  padding: 0px 10px 0px;
  width: 100%;
  height: 100%;
}
ul.drop-dwn-menu.bottom li:hover {
  background-color: var(--secondary-accent);
  width: 105%;
} */
.service-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.fa-angle-down.bottom {
  margin: 0px 5px 0px;
  transform: rotate(180deg);
}
.service-bottom:hover .fa-angle-down {
  color: var(--secondary-accent);
  transform: rotate(0deg);
}
.bottom-menu-map {
  position: relative;
  height: 100%;
  width: 30%;
  padding: 20px 20px 20px;
  /* right: 5%; */
  overflow: hidden;
  z-index: 1;
}
.bottom-menu-map iframe {
  width: 95%;
  height: 100%;
}

/* // */
/* // Footer // */
/* // */

footer {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: black;
  color: var(--text-accent);
  text-align: center;
  height: 100px;
  width: 100vw;
  padding: 20px 0px;
}
footer span {
  opacity: 0.8;
  font-size: 0.8rem;
}

/* // */
/* Mobile Screen */
/* // */
@media screen and (orientation: landscape) and (max-height: 600px) {
  .hmbgr-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    top: 5vh;
    right: 5vw;
    height: 65px;
    width: 65px;
    border: 0.2rem solid var(--primary-color);
    background: var(--secondary-gradient);
    background-size: 100%;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    border-radius: 10%;
    z-index: 20;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
    transition: all 0.6s ease-in-out;
  }
  .line {
    display: flex;
    position: relative;
    background-color: #f9c403;
    border-radius: 5px;
    height: 15%;
    width: 80%;
  }
  section.hero-container {
    top: -20vh;
    transition: all 0.6s ease-in;
  }
  .hero-text {
    top: 30%;
  }
  .quick-menu.slide {
    display: flex;
    transform: translateX(0);
  }
  nav.main-menu.slide {
    display: flex;
    transform: translateX(0);
  }
  .quick-menu {
    opacity: 1;
    display: flex;
    transform: translateX(110%);
    top: 0;
    transition: transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
  nav.main-menu {
    opacity: 1;
    display: flex;
    transform: translateX(110%);
    top: 100px;
    transition: transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
  .phone-num {
    display: none;
  }
  .phone-call {
    display: flex;
  }
  p.get {
    display: none;
  }
  .contact-form-container {
    height: 255px;
    width: 100vw;
  }
  .contact-form-container h2 {
    display: flex;
  }
  section.about-container {
    flex-direction: column;
    justify-content: center;
    top: 0px;
    height: 90vh;
    width: 100vw;
    min-height: 520px;
  }
  .about-text {
    justify-content: center;
    top: 35%;
    left: 0%;
    margin: 0px 0px 0px;
    padding: 0px 15px 0px;
    width: 100%;
    height: 90%;
  }
  .about-text h2 {
    font-size: 1.4rem;
  }
  .about-img img {
    position: fixed;
    top: 10px;
    height: 100vh;
    width: 100vw;
    clip-path: none;
    z-index: -5;
  }
  button.services {
    transform: translateY(-35%);
  }
  button.services:active {
    transform: translateY(-35%);
  }
  button.about-services {
    display: flex;
    top: 75%;
  }
  .about-services:active {
    transform: scale(95%);
  }
  .about-services i {
    margin-left: 5px;
  }
  .p-text::before {
    top: 70%;
    left: 25%;
    height: 50%;
    width: 40%;
  }
  .aboutpage-container {
    flex-direction: column;
    justify-content: center;
    margin: 0px 0px 0px;
    top: 0px;
    height: 70vh;
    width: 100vw;
    min-height: 820px;
  }
  .aboutpage-text {
    justify-content: center;
    top: 0%;
    left: 0%;
    padding: 0px 15px 0px;
    margin: 0px 0px 0px;
    width: 100%;
    height: 70%;
    min-height: 650px;
  }
  .aboutpage-text h2 {
    font-size: 1.4rem;
  }
  .aboutpage-img img {
    position: fixed;
    top: 50px;
    height: 100vh;
    width: 100vw;
    clip-path: none;
    z-index: -5;
  }
  .about-img::after {
    top: 0px;
    left: 0%;
    position: fixed;
    clip-path: none;
    width: 100vw;
    z-index: -5;
    background: rgba(0, 0, 0, 0.8);
  }
  about-services {
    top: 105%;
  }

  .services-container {
    top: 240px;
  }
  .services-container h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    height: 35px;
  }
  .services-container p {
    top: 5%;
  }
  .services-boxes {
    margin: 0% 0% 0%;
  }
  .service-box {
    top: 10%;
    height: 40%;
    width: 40%;
  }
  .service-title {
    font-size: 1rem;
  }

  .gallery-container {
    position: relative;
    height: 600px;
    width: 100vw;
    background: black;
    z-index: 1;
  }
  .gallery-text {
    width: 90%;
    top: 120px;
    margin: 0% 5% 0%;
  }
  .gallery-text h3 {
    margin: 0px 0px 5px;
    font-size: 2rem;
  }
  .gallery-text p {
    font-size: 1rem;
  }
  .gallery {
    top: 0px;
    left: 0px;
    height: 100%;
  }
  .gallery i.fa-solid {
    top: 80%;
    right: 47.5%;
    height: 2.5rem;
  }
  .gallery img {
    top: 40%;
    right: 15%;
    width: 70vw;
    height: 50vh;
  }
  #gallery-pic:hover {
    top: 45%;
    right: 0%;
    width: 90vw;
    height: 85vh;
    transform: translateX(-5%) translateY(-35%);
  }

  .bottom-menu-container {
    flex-direction: column;
  }
  .bottom-menu-info {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 50%;
    margin: 0px 5px 0px;
    width: 100%;
  }
  .bottom.logo-head {
    width: 100%;
    margin: 10px 0 0;
  }
  .bottom-menu-info p {
    text-align: center;
    width: 100vw;
    padding: 0% 25% 0%;
  }
  .social-links {
    justify-content: center;
    width: 100vw;
  }
  .social-links i {
    text-align: center;
    font-size: 20px;
  }
  .bottom-menu-nav {
    display: none;
    width: 90vw;
  }
  .bottom-menu-map {
    height: 50%;
    width: 100%;
    margin-left: 2%;
  }
  .bottom-menu-map iframe {
    width: 95%;
  }
}

@media screen and (max-width: 630px) {
  /* QUICK NAV */
  button {
    font-size: 0.7rem;
    width: 35%;
    margin: 0px 5px 0px;
  }
  .phone-num {
    display: none;
  }
  .phone-container {
    font-size: 1rem;
  }
  .phone-call {
    display: flex;
  }
  p.get {
    font-size: 1rem;
    margin: 0px 10px 0px;
  }
  p.quote {
    font-size: 1rem;
  }
  nav.main-menu {
    height: 40px;
    min-width: 300px;
  }
  nav.main-menu ul {
    margin: 0% 5% 0%;
    justify-content: space-evenly;
  }
  a {
    font-size: 0.8rem;
  }
  a:hover {
    font-size: 0.8rem;
  }
  /* HERO */
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-img img {
    top: 10%;
    min-height: 100vh;
  }
  /* CONTACT */
  .contact-bird {
    top: 92%;
    height: 25%;
    min-width: 385px;
  }
  .contact-bird img {
    transform: translateX(-75%) scale(70%);
  }
  .contact-form-container h2 {
    display: none;
    top: -82%;
    font-size: 1.4rem;
  }
  .contact-btn-text {
    height: 70%;
    width: 80%;
    font-size: 1.1rem;
  }
  .contact-btn-text p {
    margin: 20px 0px 0px;
    font-weight: 400;
    font-size: 0.8rem;
  }
  /* ABOUT */
  section.about-container {
    flex-direction: column;
    justify-content: center;
    top: 0px;
    height: 90vh;
    width: 100vw;
    min-height: 520px;
  }
  .about-text {
    justify-content: center;
    top: 35%;
    left: 0%;
    margin: 0px 0px 0px;
    padding: 0px 15px 0px;
    width: 100%;
    height: 90%;
  }
  .about-text h2 {
    font-size: 1.4rem;
  }
  .about-img img {
    position: fixed;
    top: 50px;
    height: 100vh;
    width: 100vw;
    clip-path: none;
    z-index: -5;
  }
  button.services {
    font-size: 0.9rem;
  }
  button.about-services {
    display: none;
    top: 0%;
  }
  .p-text::before {
    top: 65%;
    left: 25%;
    height: 50%;
    width: 40%;
  }
  .aboutpage-container {
    flex-direction: column;
    justify-content: center;
    margin: 0px 0px 0px;
    top: 0px;
    height: 70vh;
    width: 100vw;
    min-height: 820px;
  }
  .aboutpage-text {
    justify-content: center;
    top: 0%;
    left: 0%;
    padding: 0px 15px 0px;
    margin: 0px 0px 0px;
    width: 100%;
    height: 70%;
    min-height: 650px;
  }
  .aboutpage-text h2 {
    font-size: 1.4rem;
  }
  .aboutpage-img img {
    position: fixed;
    top: 50px;
    height: 100vh;
    width: 100vw;
    clip-path: none;
    z-index: -5;
  }
  .about-img::after {
    top: 50px;
    left: 0%;
    position: fixed;
    clip-path: none;
    width: 100vw;
    z-index: -5;
    background: rgba(0, 0, 0, 0.8);
  }
  about-services {
    top: 105%;
  }

  /* SERVICE */
  .services-container {
    top: 240px;
  }
  .services-container h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    height: 35px;
  }
  .services-container p {
    top: 5%;
  }
  .services-boxes {
    margin: 0% 0% 0%;
  }
  .service-box {
    top: 10%;
    height: 40%;
    width: 40%;
  }
  .service-title {
    font-size: 1rem;
  }

  /* GALLERY */
  .gallery-text h3 {
    margin: 0px 0px 5px;
    font-size: 1.4rem;
  }
  .gallery-text p {
    font-size: 1rem;
  }
  .gallery img {
    width: 45vw;
  }

  /* BOTTOM NAV */
  .bottom-menu-container {
    flex-direction: column;
  }
  .bottom-menu-info {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 50%;
    margin: 0px 10px 0px;
    width: 90%;
  }
  .bottom.logo-head {
    width: 100%;
  }
  .bottom-menu-info p {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0% 5% 0%;
  }
  .social-links {
    justify-content: center;
    width: 100vw;
  }
  .social-links i {
    text-align: start;
    font-size: 20px;
  }
  .bottom-menu-nav {
    display: none;
    width: 80vw;
  }
  .bottom-menu-map {
    height: 50%;
    width: 100%;
    margin: 0% 4% 0%;
  }
  .bottom-menu-map iframe {
    width: 95%;
  }
}

@media screen and (max-width: 510px) {
  section.hero-container {
    min-height: 100vh;
  }
  .quick-menu {
    top: 0;
    height: 70px;
  }
  .quick-menu.min {
    height: 50px;
  }
  .phone-num {
    display: none;
  }
  p.get {
    display: none;
  }
  p.quote {
    font-size: 0.8rem;
  }
  .phone-call {
    display: flex;
  }
  .logo-head {
    height: 85px;
    width: 175px;
  }
  .quick-menu.min ~ nav.main-menu {
    margin: 0;
    top: 50px;
  }
  .quick-menu.min .logo-head {
    height: 75px;
    width: 150px;
  }
  a {
    font-size: 0.8rem;
  }
  a:hover {
    font-size: 0.8rem;
  }
  a.bottom {
    font-size: 0.8rem;
  }
  a.bottom:hover {
    font-size: 0.8rem;
  }
  button {
    font-size: 0.6rem;
    font-weight: 700;
    height: 2.3rem;
    min-height: 2rem;
    width: 5.5rem;
    border-radius: 5px;
  }
  nav.main-menu {
    top: 65px;
    height: 35px;
  }
  nav.main-menu ul {
    justify-content: space-around;
    margin: 0px 5px 0px;
  }
  .hero-text {
    top: 225px;
    line-height: 2rem;
    font-size: 1rem;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p.highlight-text {
    font-size: 1.6rem;
  }
  .hero-img img {
    top: 0%;
  }
  .hero-aboutimg img {
    top: 100px;
    min-height: 600px;
  }
  .contact-bird {
    top: 89vh;
    left: -24vw;
    height: 200px;
    width: 70vw;
    min-width: 150%;
  }
  .contact-bird img {
    height: 90%;
  }
  .contact-bird:hover .bird {
    transform: translateX(-15%) scale(80%);
  }
  .bird-btn {
    height: 100px;
    width: 280px;
  }
  .contact-bird:hover .bird-btn {
    transform: translateX(20%) scaleX(100%);
  }
  .contact-btn-text {
    width: 80%;
    font-size: 1.6rem;
  }
  .contact-btn-text p {
    margin: 0px 0px 0px;
    font-size: 1rem;
  }
  .contact-form-container {
    top: 82.5vh;
    height: 45vh;
    width: 100vw;
  }
  .contact-bg {
    height: 140vh;
    width: 100vw;
    /* top: 100vh; */
  }
  .contact-form-container h2 {
    display: flex;
    position: relative;
    top: -65%;
    font-size: 1.2rem;
  }
  section.about-container {
    position: relative;
    top: 0vh;
    height: 100vh;
    width: 100vw;
  }
  .about-text {
    justify-content: center;
    top: 12%;
    height: 50%;
    max-height: 100vh;
    min-height: 90vh;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-img img {
    height: 125vh;
  }
  .about-text button.services {
    font-size: 0.8rem;
    min-width: 9rem;
    top: 0%;
    width: fit-content;
  }
  .p-text::before {
    top: 52.2%;
    left: 25%;
    height: 50%;
    width: 40%;
  }
  .aboutpage-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    top: -14%;
  }
  .aboutpage-text {
    top: 95%;
    min-height: 500px;
  }
  .aboutpage-text h2 {
    margin: 10px 0 10px;
    font-size: 1.4rem;
  }
  .aboutpage-text p {
    margin: 0;
  }
  button.about-services {
    font-size: 0.8rem;
    min-width: 9rem;
    display: flex;
    margin: 10px 10px 0;
    top: 105%;
    left: 5%;
    width: fit-content;
  }
  .services-container {
    position: relative;
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    top: 200px;
    width: 100vw;
    height: 100vh;
    min-height: 1200px;
    background-color: var(--text-accent);
    /* overflow-y: scroll; */
  }
  .services-container h1 {
    position: relative;
    text-align: center;
    font-size: 1.3rem;
    height: 50px;
    width: 100vw;
    padding: 0 5px 0;
    margin: 20% 0% 0%;
  }
  .services-container p {
    margin: 15px 0 0;
    top: 30px;
  }
  .services-boxes {
    top: -3%;
  }
  .service-box {
    position: relative;
    height: 25%;
    width: 85%;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .service-title {
    top: 75%;
    margin: 0 14px;
  }
  .gallery-container {
    position: relative;
    height: 600px;
    width: 100vw;
    background: black;
    z-index: 1;
  }
  .gallery-text {
    width: 90%;
    top: 120px;
    margin: 0% 5% 0%;
  }
  .gallery-text h3 {
    font-size: 2rem;
  }
  .gallery-text p {
    font-size: 1rem;
  }
  .gallery {
    top: 0px;
    left: 0px;
    height: 100%;
  }
  .gallery i.fa-solid {
    top: 85%;
    right: 42.5%;
    height: 2.5rem;
  }
  .gallery img {
    top: 55%;
    right: 15%;
    width: 70vw;
    height: 20vh;
  }
  #gallery-pic:hover {
    top: 45%;
    right: 0%;
    width: 90vw;
    height: 55vh;
    transform: translateX(-5%) translateY(-35%);
  }
  .bottom-menu-container {
    flex-direction: column;
    height: 500px;
  }
  .bottom.logo-head {
    justify-content: flex-start;
    margin: 15px 0px 10px;
    width: 100%;
  }
  .bottom-menu-info p {
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 25%;
    margin: 0px 10px 20px;
  }
  .social-links {
    justify-content: center;
    width: 100%;
  }
  .social-links i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  .bottom-menu-nav {
    display: flex;
    align-items: center;
    padding: 0px 5px 0px;
    height: 15%;
    width: 100%;
  }
  .bottom-menu-nav ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    height: 20%;
    width: 100%;
  }
  .bottom-menu-nav span {
    margin: 0px 0px 0px;
    width: 50%;
    height: 20px;
  }
  .bottom-menu-nav ul li {
    height: 20px;
  }
  .bottom-menu-map {
    left: 1.5%;
    height: 30%;
    width: 100%;
    margin: 0px 0px 0px;
    padding: 0px 20px 0px;
  }
  footer {
    font-size: 0.8rem;
  }
  footer span {
    font-weight: lighter;
    font-size: 0.6rem;
  }
}
