* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
}
:root {
  --black: #191a1b;
  --red: #da0303;
}
body {
  background-color: white;
  overflow-x: hidden;
}
main {
  min-height: 600px;
  overflow-x: hidden;
}
.top-bar {
  background-color: var(--black);
  display: flex;
  height: 40px;
}

.icons {
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-self: center;
}

.icons a,
.icons p {
  cursor: pointer;
  text-decoration: none;
  line-height: 35px;
  color: white;
  align-content: center;
}
.icons > a > i {
  min-height: 14px;
  min-width: 14px;
}
.icons a:hover,
.icons p:hover {
  line-height: 30px;
}
.icons a span,
.icons p span {
  margin-left: 20px;
}
.phone-icon {
  color: var(--red);
  transform: scale(1.5);
}
.envelope-icon {
  color: var(--red);
  transform: scale(1.5);
}
.map-marker-icon {
  color: var(--red);
  transform: scale(1.5);
}

.bottom-bar {
  background-color: white;
  height: 90px;
}
.regular-nav {
  position: relative;
}
.regular-nav img {
  position: absolute;
  left: 4%;
  height: 90px;
}
.regular-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}
.regular-nav ul li a {
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  color: var(--black);
  font-weight: bold;
  font-size: 19px;
  display: block;
  transition: 200ms all linear;
  line-height: 90px;
}
.regular-nav ul li a:hover {
  background-color: lightgray;
}
.service-area-btn {
  position: absolute;
  right: 4%;
  top: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
  width: fit-content;
  padding: 10px;
  border: 1px solid black;
  transition: all 200ms linear;
}
.service-area-btn:hover {
  color: white;
  background-color: black;
}
#side-nav {
  display: none;
}
#side-bar {
  background-color: var(--black);
  text-align: center;
  height: 100%;
  position: absolute;
  min-height: 800px;
  top: 0;
  width: 300px;
  left: -300px;
  transition: 300ms all linear;
  z-index: 1;
  padding-bottom: 1px;
}
#side-bar.active {
  left: 0px;
}
#side-bar img {
  margin-top: 15px;
  width: 240px;
  height: 150px;
}
#side-bar ul {
  margin-top: 10px;
  list-style: none;
}
#side-bar ul li:nth-child(1) {
  border-top: 1px solid var(--red);
}
#side-bar ul li {
  border-bottom: 1px solid var(--red);
}
#side-bar ul li a {
  display: block;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  line-height: 60px;
}
#side-bar ul li a:hover {
  background-color: rgb(37, 37, 37);
}
#toggle-side-nav {
  position: absolute;
  top: 75px;
  left: 50px;
  display: block;
  cursor: pointer;
  transition: 300ms all linear;
  z-index: 2;
}
#toggle-side-nav.active {
  top: 15px;
  left: 240px;
  padding: 3px;
  padding-right: 1px;
  padding-top: 7px;
}
#toggle-side-nav span {
  border-radius: 5px;
  display: block;
  width: 30px;
  height: 5px;
  background-color: black;
  margin-bottom: 4px;
}
#toggle-side-nav.active span {
  background-color: white;
}
#toggle-side-nav.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(2px);
  background-color: white;
}
#toggle-side-nav.active span:nth-child(2) {
  display: none;
}
#toggle-side-nav.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(2px);
}

.page-header {
  position: relative;
  min-height: 250px;
  display: flex;
  height: fit-content;
  padding: 10px 5px;
}
.page-header img {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.page-header h1 {
  font-size: clamp(24px, 4vw, 70px);
  text-shadow: 0 0 4px rgb(3, 3, 3);
  text-align: center;
  width: 100%;
  position: relative;
  margin: auto;
  color: white;
  padding: 0 3%;
}

/* Homepage */
#home_container_box {
  position: relative;
}

.home-container {
  position: relative;
  min-height: 800px;
  display: flex;
}

.home-container > div {
  display: flex;
  flex-grow: 1;
  column-gap: 50px;
}
.home-container > picture > img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
}

#home-message {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: auto;
  margin-left: 7%;
}

#home_logo_container {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

#home_logo_container > div {
  width: 40vw;
  max-width: 600px;
}
#home_logo {
  width: 100%;
  height: auto;
}
#home-logo-alt {
  display: none;
  position: absolute;
  right: 4%;
  height: 90px;
}
#home-logo-alt.active {
  display: none;
}

#home-message h1 {
  font-weight: bold;
  font-size: 65px;
  color: white;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black);
  max-width: 800px;
}
#header1_areas {
  display: block;
  font-size: 35px;
}

#home-message p {
  font-size: 23px;
  font-weight: bold;
  border-radius: 10px;
  color: white;
  padding: 10px;
  margin-top: 10px;
  width: fit-content;
  background-color: var(--red);
  cursor: pointer;
}
#home-form {
  display: none;
  border-radius: 10px;
  background-color: white;
  top: 8%;
  right: 10%;
  position: absolute;
  width: 50%;
  max-width: 500px;
  border: 1px solid var(--black);
}
#home-form.active {
  display: flex;
  flex-direction: column;
}
#home-form h2,
.contact-page-form h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
#home-form form {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#home-form form .form-field {
  display: flex;
  flex-direction: column;
}

#home-form form .form-field > .error {
  color: red;
  margin-top: 10px;
  font-size: 17px;
}

#home-form form input,
.contact-page-form form input {
  font-size: 20px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
}
#home-form form textarea,
.contact-page-form form textarea {
  padding-top: 5px;
  padding-left: 5px;
  border-radius: 5px;
  border: 1px solid black;
  resize: none;
}
#home-submit-btn {
  cursor: pointer;
  background-color: black;
  color: white;
  margin-bottom: 20px;
}
#top-rated-header {
  margin: 10px 20px;
  text-align: center;
  font-size: clamp(30px, 10vw, 40px);
  margin-bottom: 0px;
}
#google-review-image {
  display: block;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
#google-review-image a img {
  max-width: 500px;
  width: 95%;
  height: auto;
}

#articles {
  display: flex;
  justify-content: space-evenly;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/static/ThePowerDoctor/Images/Electrician-Background2.jpg);
  background-size: cover;
  gap: 20px;
  padding: 50px 20px;
}
.article-container {
  width: 25%;
  background-color: white;
  padding: 25px;
  padding-bottom: 15px;
  height: fit-content;
  position: relative;
}

.article-title {
  margin: 5px 0px;
  font-size: 30px;
}

.article-image {
  width: 100%;
  height: 250px;
  box-shadow: 0 0 3px #000;
  transition: height 1s;
}
.article-image.open {
  height: 400px;
}

.article-content {
  overflow: hidden;
  transition: height 1s;
}

.article-text.open {
  font-size: 19px;
}

.article-text-buttons {
  display: flex;
  margin-top: 10px;
}
.article-text-buttons-x {
  background-color: #da0303;
  margin-left: 3px;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: white;
}

.article-link {
  background-color: #da0303;
  text-align: center;
  padding: 5px 0px;
  display: flex;
  flex-grow: 1;
  color: white;
  font-weight: bold;
  text-decoration: none;
  justify-content: center;
}

.article-read-more {
  padding-top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 19px;
  background-color: #da0303;
  text-align: center;
  padding-bottom: 3px;
  padding-top: 3px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  margin-top: 10px;
}
.article-read-more.open {
  display: none;
}

.home-services {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.home-service-title {
  overflow: hidden;
  position: relative;
}
.home-service-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 100px;
  width: 100%;
}
.home-service-title img {
  display: block;
  width: 100%;
  min-width: 500px;
  height: 350px;
}
.home-service-block {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home-services a {
  margin: 0 auto;
  transition: all 200ms linear;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  width: 100%;
  display: block;
  color: black;
  border: 1px solid black;
  font-size: 22px;
  text-decoration: none;
  line-height: 40px;
}
.home-services a:hover {
  background-color: black;
  color: white;
}
.home-block {
  min-height: 270px;
  margin-top: 30px;
  position: relative;
  width: 24.5%;
  text-align: center;
  overflow: hidden;
  margin-left: 0.25%;
  margin-right: 0.25%;
}
.home-block:hover div {
  height: 100%;
  padding: 0;
}
.home-block div {
  position: absolute;
  height: auto;
  /* width: 100%; */
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 10px;
  background-color: rgb(0, 0, 0, 0.8);
  transition: height 0.4s ease-out;
  align-content: center;
}
.home-block img {
  width: 100%;
  height: 100%;
}
.home-block p {
  display: block;
  color: white;
  font-size: 20px;
  text-align: center;
  width: 100%;
}
.social-medias {
  margin-bottom: 100px;
  margin-top: 50px;
}

.social-medias h2 {
  padding: 3px 0px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}
.social-medias > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 100px;
  row-gap: 40px;
}

.facebook-window,
.social_media_window {
  width: 500px;
  height: 555px;
}

.social_media_window > h3 {
  padding: 10px;
}
.social_media_window_posts_box,
.social_media_window_posts_box_instagram {
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  max-height: 505px;
}
.social_media_window_posts_box iframe {
  width: 95%;
  height: 500px;
}

.social_media_window_posts_box_instagram iframe {
  width: 95%;
  height: 500px;
  min-height: 500px;
}

.instagram_container {
  width: 100%;
  max-width: 540px;
  min-width: 300px;
  background: #fff;
  border: 0;
  padding: 0;
  margin: 1px auto;
  display: block;
}

.install-background {
  display: flex;
  flex-wrap: wrap;
}
.home-install-info {
  position: relative;
}
.home-install-info > picture > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.home-install-info > div > div {
  width: 50%;
  min-height: 600px;
  color: white;
}
.home-install-info > div > div:nth-child(1) {
  background-color: rgb(218, 3, 3, 0.8);
}
.home-install-info > div > div:nth-child(2) {
  background-color: rgb(0, 0, 0, 0.8);
}
.home-install-info div div h2 {
  margin-top: 30px;
  text-align: center;
  font-size: 40px;
}
.home-install-info > div > div > div {
  margin: 0 auto;
  margin-top: 15px;
  width: 90%;
  font-size: 24px;
  text-align: left;
  padding-bottom: 35px;
  margin-left: 7%;
}
.home-reviews {
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  min-height: 300px;
  height: fit-content;
  background-color: blue;
}

.home-reviews h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.home-reviews div {
  align-items: center;
  display: flex;
  justify-content: center;
}
.home-reviews div div {
  align-items: center;
  width: 50%;
  display: none;
  min-height: 250px;
}
.review-text {
  margin-top: 40px;
  font-size: 22px;
  margin-bottom: 40px;
  text-align: center;
  align-self: center;
}
.review-name {
  margin-bottom: 5px;
  text-align: center;
  font-size: 25px;
}
.review-stars {
  min-height: 0px !important;
  display: block !important;
  width: 100% !important;
  text-align: center;
}
.review-stars i {
  color: gold;
}
.home-reviews span {
  width: 25%;
  text-align: center;
  cursor: pointer;
}

#home_promotions {
  background-color: red;
  /*height: 200px;*/
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 6;
  display: none;
}

#promotion_close {
  color: white;
  font-size: 35px;
  float: right;
  margin-right: 20px;
  margin-top: 20px;
  cursor: pointer;
}

#future_promotions {
  max-width: 900px;
  width: 95%;
  margin: 20px auto;
  text-align: center;
  color: white;
}

#future_promotions > h2 {
  font-size: clamp(35px, 5vw, 50px);
}

#future_promotions > p {
  font-size: clamp(17px, 2vw, 25px);
}

#promotion_form {
  width: 100%;
  display: flex;
  /*max-width:900px;*/
  margin: 0 auto;
  margin-top: 15px;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
}
#promotion_email {
  flex-grow: 5;
  padding: 7px;
  font-size: 19px;
}
#promotion_submit {
  padding: 7px;
  cursor: pointer;
  font-weight: bold;
  font-size: 19px;
  flex-grow: 1;
  flex-basis: 100px;
  background-color: black;
  border: none;
  color: white;
}

#subscribe_status {
  margin-top: 10px;
  font-size: clamp(15px, 3vw, 21px);
  color: black;
  display: block;
}

/* Projects Page */
.projects-header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 3px 0px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.project-blocks {
  max-width: 1600px;
  column-count: 3;
  column-gap: 20px;
  margin: 0 auto;
  padding: 20px 0px;
  width: 95%;
}

.project-block {
  box-shadow: 0 0 3px rgb(182, 180, 180);
  position: relative;

  break-inside: avoid;
  margin-bottom: 20px;
}
.project-block:hover div {
  height: 100%;
}
.project-block img {
  width: 100%;
  height: auto;
  display: block;
}
.project-block div {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 10px;
  transition: height 0.4s ease-out;
  height: auto;
  box-sizing: border-box;
  align-content: center;
}
.project-block div p {
  text-align: center;
  width: 100%;
  color: white;
  font-size: 21px;
}

/* Service Page */
.service-section-intro {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 3px 0px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.service-section {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  gap: 25px;
  height: fit-content;
}
.service-section > p {
  text-align: center;
  width: 100%;
  cursor: pointer;
  font-size: 25px;
}
.service-section > p > i {
  margin-left: 5px;
}
.service-block {
  position: relative;
  width: 22%;
}
.service-block:hover div {
  height: 100%;
  padding: 0px;
}
.service-block img {
  width: 100%;
  height: 100%;
}
.service-block > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.8);
  padding: 5px 10px;
  height: auto;
  transition: height 0.4s ease-out;
  align-content: center;
}
.service-block > div > p {
  color: white;
  text-align: center;

  font-size: 21px;
}
.service-install-info {
  background: url("/static/ThePowerDoctor/Images/Electrician-Background3.jpg");
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
  margin-bottom: 50px;
}

.service-install-info > div {
  color: white;
  background-color: rgb(0, 0, 0, 0.8);
  width: 50%;
  text-align: center;
  padding-bottom: 30px;
}
.service-install-info > div h2 {
  margin: 15px 0px;
}
.service-install-info > div > div {
  width: 85%;
  margin: 0 auto;
  font-size: 22px;
  text-align: left;
  margin-left: 10%;
}
#service-list {
  margin-bottom: 30px;
}
#service-list h2 {
  font-size: 35px;
  margin-bottom: 40px;
  text-align: center;
}
#service-list div {
  width: 100%;
}
#service-list div ul {
  margin: 0 auto;
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  transform: translateX(8%);
}
#service-list div ul li {
  font-size: 21px;
  width: 25%;
}
#service-list p {
  text-align: center;
  margin-top: 30px;
}
/* Testimonals Page */
.review-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 35px;
}
.leave-review {
  margin: 20px auto;
  max-width: 350px;
  width: 100%;
}
.leave-review a {
  min-width: 200px;
  text-align: center;
  display: block;
}
.leave-review a img {
  width: 100%;
}

.review-blocks {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.review-block {
  border: 1px solid black;
  position: relative;
  box-shadow: 0 0 3px rgb(182, 180, 180);
  text-align: left;
  width: 45%;
  padding: 15px;
  min-height: 150px;
  border-radius: 10px;
}
.review-block img {
  position: absolute;
  top: 5px;
  right: 5px;
}
.review-block-name {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5px;
}
.review-block-text {
  font-size: 20px;
}
.review-block-stars {
  color: gold;
  margin-bottom: 15px;
}

/* Contact Page */
.contact-blocks {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.contact-info {
  width: 95%;
  max-width: 500px;
}
.contact-info h2 {
  text-decoration: underline;
  font-size: 40px;
}
.contact-info div {
  margin-top: 30px;
}
.contact-info div h3 {
  font-size: 25px;
  margin-bottom: 3px;
}
.contact-info div p {
  font-size: 20px;
}
.contact-info div p i {
  margin-right: 5px;
}
.contact-info div:nth-last-child(1) div {
  margin-top: 0px;
  display: block;
  flex-direction: row;
  column-gap: 10px;
  row-gap: 5px;
}
.contact-form {
  width: 95%;
  max-width: 600px;
  margin-top: 10px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form form .form-field {
  margin-bottom: 15px;
}
.contact-form form .form-field > .error {
  color: red;
  margin-top: 10px;
  font-size: 19px;
}
.contact-form form input,
.contact-form form textarea {
  border: 1px solid black;
  padding: 12px 0px;
  padding-left: 5px;
  font-size: 20px;
  /*margin-bottom: 15px;*/
  width: calc(100% - 5px);
  resize: none;
}
.contact-form form textarea {
  font-size: 18px;
}

#contact-submit-btn {
  width: 100%;
  color: white;
  font-weight: bold;
  background-color: var(--black);
  cursor: pointer;
}

#service-area-map h2 {
  font-size: 50px;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.google-map {
  overflow: hidden;
}
.google-map iframe {
  display: block;
  width: 100% !important;
}

.service-areas {
  border-top: 1px solid black;
}
.service-areas h3 {
  margin-top: 10px;
  font-size: 30px !important;
  margin-bottom: 20px;
}

.service-areas ul {
  padding-bottom: 20px;
  transform: translateX(30px);
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  max-width: 460px;
  row-gap: 10px;
}
.service-areas ul li {
  font-size: 23px;
  text-align: left;
  min-width: 230px;
}
.service-areas ul li i {
  margin-right: 5px;
  color: var(--red);
}

.faq {
  min-height: 250px;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: var(--red);
}
.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}
.faq-blocks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0px 20px;
}
.faq-block {
  color: black;
  background-color: white;
  height: fit-content;
  border-radius: 10px;
  padding: 0px 8px;
}
.faq_column {
  flex-grow: 1;
  flex-basis: 550px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.faq-block h3 {
  font-size: 21px;
  padding-top: 5px;
  cursor: pointer;
  text-align: center;
}

.faq-block h3 span {
  display: inline-block;
}
.faq-block h3 i {
  margin-bottom: 10px;
  color: var(--red);
  margin-left: 5px;
}

.question-text {
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
  display: block;
  height: 0px;
}
.question-text.active {
  padding-bottom: 10px;
  height: fit-content;
}

/* Blog Page */
.blog-blocks {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  max-width: 800px;
}
.post-block {
  box-shadow: 5px 10px 18px #888888;
  margin-bottom: 50px;
  padding: 20px;
  padding-bottom: 0px;
  position: relative;
}
.post-content {
  max-height: 800px;
  overflow: hidden;
}
.post-author {
  text-align: left;
  font-size: 19px;
}
.post-date {
  text-align: left;
  margin-bottom: 10px;
}
.post-title {
  font-size: 25px;
  margin-bottom: 15px;
  text-decoration: underline;
}
.post-image {
  width: auto;
  max-height: 550px;
  height: auto;
}
.post-text {
  margin-top: 15px;
  font-size: 19px;
  position: relative;
  text-align: left;
  left: 1%;
}
.read-post {
  text-decoration: none;
  display: block;
  padding: 10px 0px;
  font-weight: bold;
  color: var(--red);
  position: absolute;
  padding-top: 50px;
  background-image: linear-gradient(to bottom, transparent 0%, white 90%);
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 21px;
}

#post-options {
  position: relative;
  margin-bottom: 20px;
  border-top: 1px solid black;
  padding: 20px;
  padding-left: 0px;
  padding-right: 0px;
}
#blog-home {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
}
#previous-post {
  float: left;
  font-size: 20px;
}
#next-post {
  float: right;
  font-size: 20px;
}
#p-previous {
  margin-right: 5px;
}
#p-next {
  margin-left: 5px;
}

#full-post {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
.full-post-author {
  text-align: left !important;
  font-size: 19px;
  margin-bottom: 3px;
  margin-top: 10px;
}
.full-post-date {
  text-align: left !important;
  margin-bottom: 10px;
}
.full-post-image {
  width: 100%;
  margin-bottom: 15px;
  height: auto;
}
#full-post-text {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}
#full-post-text img {
  max-width: 100%;
  height: auto !important;
}

/* Thank You Page */
.email-confirm {
  min-height: 400px;
  text-align: center;
  margin-top: 100px;
}
.email-confirm h1 {
  font-size: 60px;
}
.email-confirm p {
  font-size: 21px;
  margin-bottom: 20px;
}

/* Landing Page */
#landing_page_content {
  background-color: #da0303;
  color: white;
  padding: 30px;
  margin-top: 100px;
  margin-bottom: 200px;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#landing_page_content > div {
  display: flex;
}

#landing_page_content > h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(30px, 3vw, 50px);
}

#landing_page_content > div > div {
  font-size: clamp(17px, 1.5vw, 21px);
}

#landing_page_content > div > img {
  max-width: 400px;
  margin-left: 20px;
  margin-bottom: 20px;
  width: auto;
  height: fit-content;
  max-width: none;
  flex-shrink: 0;
}

/* Footer */
footer {
  color: white;
  background-color: var(--black);
  height: fit-content;
  width: 100%;
  text-align: center;
}
footer a {
  color: white;
}
#back-to-top {
  cursor: pointer;
  display: block;
  line-height: 60px;
  background-color: #232325;
  color: white;
  font-weight: bold;
}

#back-to-top:hover {
  background-color: rgb(39, 41, 43);
}
footer div {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
}
#copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  color: white;
}
footer div div {
  width: 33%;
}
.footer-column1 {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.footer-column1 img {
  margin: 0 auto;
  width: 200px;
  display: block;
  height: 130px;
}
.footer-column1 div {
  display: flex;
  flex-direction: column;
  width: 270px;
  text-align: left;
  margin: 0 auto;
  padding-left: 70px;
  margin-top: 10px;
}
.footer-column1 div p {
  transform: translateX(5px);
  margin-bottom: 20px;
}
.footer-column1 div p i {
  margin-right: 10px;
}

.footer-column2 {
  margin: 0 auto;
  margin-top: 25px;
}

.footer-column2 ul {
  margin: 0 auto;
  color: white;
  list-style: none;
}
.footer-column2 ul li {
  margin-bottom: 20px;
}
.footer-column2 ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.footer-column3 {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 25px;
}
.footer-column3 div {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.footer-column3 div div {
  justify-content: space-evenly;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 60%;
  height: fit-content;
  margin-top: 5px;
  left: 5%;
  position: relative;
  text-align: left;
  max-width: 500px;
  min-width: 250px;
}
.footer-column3 div div a,
.footer-column3 div div p {
  padding: 3px;
  width: 45%;
}
#license {
  margin-top: 30px;
}
@media only screen and (max-width: 1600px) {
  .regular-nav ul li a {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 1400px) {
  .regular-nav ul li a {
    padding-left: 26px;
    padding-right: 26px;
  }
  #home-form {
    position: relative;
    box-shadow: 0 0 3px rgb(0, 0, 0);
    margin: 0 auto;
    right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 10px;
  }
  #home-message h1 {
    font-size: 55px;
    max-width: 620px;
  }

  #home-message.active {
    top: 13%;
  }
  .review-block {
    width: 45%;
  }
  #service-list div ul li {
    width: 33%;
  }
  .service-block {
    width: 31%;
  }
  .home-container {
    min-height: 600px;
  }
}

@media only screen and (max-width: 1200px) {
  .page-header {
    min-height: 200px;
  }
  .project-blocks {
    column-count: 2;
  }
  .regular-nav {
    display: none;
  }
  #side-nav {
    display: block;
  }
  .home-block {
    width: 49%;
  }
  .service-install-info div {
    width: 100%;
  }
  .service-install-info div:nth-child(1) {
    border-bottom: 1px solid white;
  }
  #home-message h1 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-header {
    min-height: 170px;
  }
  .home-container {
    min-height: 500px;
  }
  #home-form {
    width: 95%;
  }
  #home-message.active {
    top: 13%;
  }
  #home-message h1 {
    font-size: 40px;
  }
  #header1_areas {
    font-size: 25px;
  }
  #home-message p {
    font-size: 19px;
  }
  footer div div {
    width: 100%;
  }
  .home-install-info div div {
    width: 100%;
  }
  #service-list div ul li {
    width: 50%;
  }
  .service-block {
    width: 44%;
  }
  #articles {
    flex-wrap: wrap;
  }
  .article-container {
    width: 40%;
  }
  #promotion_close {
    font-size: 30px;
    margin-right: 15px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 800px) {
  .page-header {
    min-height: 150px;
  }
  #landing_page_content > div > img {
    display: none;
  }
  .home-container {
    min-height: 400px;
  }
  .home-container > div {
    column-gap: 30px;
  }
  .icons {
    margin: 0;
    position: absolute;
    gap: 25px;
    right: 5%;
  }
  .icons a span {
    display: none;
  }
  .icons p span {
    display: none;
  }
  #home-message.active {
    top: 7%;
  }
  #home-message {
    margin-left: 4%;
  }
  #home-message h1 {
    font-size: 30px;
  }
  #home-message p {
    font-size: 17px;
  }
  #header1_areas {
    font-size: 20px;
  }
  #social-nav ul li a {
    width: 60px;
    height: 50px;
  }
  #social-nav ul li a:hover {
    width: 70px;
  }
  #social-nav ul li a i {
    transform: scale(2);
    margin-top: 17px;
  }
  .instagram-icon i {
    transform: scale(3) !important;
  }
  .home-install-info div div h2 {
    font-size: 37px;
  }
  .home-install-info div div p {
    font-size: 22px;
  }
  .review-block {
    width: 85%;
  }
  .faq-block h3 {
    font-size: 18px;
  }
  .question-text {
    font-size: 16px;
  }
  .home-service-title h2 {
    font-size: 60px;
  }
  .home-service-title img {
    height: 200px;
  }
  .blog-blocks {
    width: 80%;
  }
  #full-post-text {
    font-size: 21px;
  }
  .article-container {
    width: 95%;
  }
}
@media only screen and (max-width: 600px) {
  .page-header {
    min-height: 170px;
  }
  .project-blocks {
    column-count: 1;
  }

  #landing_page_content {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .home-container {
    min-height: 300px;
  }
  .home-container > div {
    column-gap: 10px;
  }
  #post-options {
    margin-bottom: 10px;
  }
  #previous-post {
    float: none;
    display: block;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  #blog-home {
    display: block;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin-bottom: 5px;
  }
  #next-post {
    float: none;
    margin-left: 20px;
  }
  #social-nav {
    display: none;
  }
  .facebook-window,
  .social_media_window {
    width: 95%;
  }
  .facebook-window iframe {
    width: 95% !important;
  }
  .company-info article {
    width: 95%;
  }
  .home-block {
    width: 98%;
  }

  #home-message.active {
    top: 7.5%;
  }
  #home-message h1 {
    font-size: 25px;
  }
  #home-message p {
    font-size: 12px;
  }
  #header1_areas {
    font-size: 16px;
  }
  .home-install-info div div h2 {
    font-size: 34px;
  }
  .home-install-info div div p {
    font-size: 20px;
  }
  .faq-block h3 {
    font-size: 17px;
  }
  .question-text {
    font-size: 15px;
  }

  #service-list div ul li {
    width: 100%;
  }
  .service-block {
    width: 92%;
  }
  #promotion_close {
    font-size: 25px;
    margin-right: 10px;
    margin-top: 10px;
  }
  .faq-blocks {
    padding: 0px 10px;
  }
}
@media only screen and (max-width: 500px) {
  .post-content {
    max-height: 600px;
  }
  .home-container {
    min-height: 250px;
  }
  #home-message.active {
    top: 6.5%;
  }

  #home-message {
    max-width: 300px;
  }
  #header1_areas {
    font-size: 14px;
  }
  .fa-angle-left {
    font-size: 90px !important;
  }
  .fa-angle-right {
    font-size: 90px !important;
  }
  .contact-info h2 {
    text-align: center;
  }
  .blog-blocks {
    width: 90%;
  }

  #full-post-text {
    font-size: 20px;
  }
  #home_logo_container {
    display: none;
  }
  #home-logo-alt {
    display: block;
  }
  #promotion_email {
    font-size: 16px;
  }
  #promotion_submit {
    font-size: 16px;
  }
  #landing_page_content {
    padding: 30px 10px;
  }
  #future_promotions > p {
    display: none;
  }
  #future_promotions > h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 400px) {
  .page-header {
    min-height: 140px;
  }
  .home-container {
    min-height: 250px;
  }
  .article-image {
    height: 220px;
  }

  .read-more {
    display: block;
  }
  #social-nav ul li a {
    width: 50px;
    height: 40px;
  }
  #social-nav ul li a:hover {
    width: 60px;
  }
  #social-nav ul li a i {
    transform: scale(1.8);
    margin-top: 12px;
  }
  .instagram-icon i {
    transform: scale(2.2) !important;
  }

  #header1_areas {
    font-size: 13px;
  }
  .home-install-info div div h2 {
    font-size: 30px;
  }
  .home-install-info div div p {
    font-size: 17px;
  }
  #full-post-text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 350px) {
  #home-message {
    max-width: 245px;
  }
  #home-message h1 {
    font-size: 21px;
  }
  .footer-column1 div {
    text-align: center;
    padding: 0px;
  }
}
@media only screen and (hover: none) {
  .read-more {
    display: block;
  }
}
