/*
Theme Name: Mogovolt
Author: MRZ Design
Author URI: www.mrz.design
Requires at least: 5.9
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.0.0
*/

/* ==========================================================================
   General Styles
   ========================================================================== */

@font-face {
  font-family: "Inter-Regular";
  src: url("/wp-content/themes/mogovolt/assets/fonts/Inter-Regular.woff2")
      format("woff2"),
    url("/wp-content/themes/mogovolt/assets/fonts/Inter-Regular.woff")
      format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Bold";
  src: url("/wp-content/themes/mogovolt/assets/fonts/Inter-Bold.woff2")
      format("woff2"),
    url("/wp-content/themes/mogovolt/assets/fonts/Inter-Bold.woff")
      format("woff");
  font-style: normal;
  font-display: swap;
}

/* Color Palette */

:root {
  --color-primary: #f9ca03;
  --color-secondary: #04282b;
  --color-complimentary: #94cb31;
  --color-green: #00e183;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #c0ccd1;
  --color-dark: #123538;

  --color-messageError: #dc3232;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "Inter-Bold", sans-serif;
  --font-text: "Inter-Regular", sans-serif;
}

/* Body */

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-white);
  background: var(--color-secondary);
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Typography styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  margin: 10px 0;
}

h1 {
  font-size: 48px;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  line-height: 36px;
}

h3 {
  font-size: 36px;
  line-height: 38px;
}

h4 {
  font-size: 24px;
  line-height: 24px;
}

h5 {
  font-size: 18px;
  line-height: 18px;
}

p,
a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.paragraph--large {
  font-size: 26px;
  line-height: 30px;
  margin: 10px 0px;
}

blockquote {
  font-size: 24px;
  line-height: 28px;
  font-style: italic;
  margin: 20px 0;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

a:hover {
  color: var(--color-primary);
}

ul {
  padding: 0;
  margin: 0;
}

.main-font {
  font-family: var(--font-title);
}

.text-font {
  font-family: var(--font-text);
}

.text-large {
  font-size: 32px;
  line-height: 38px;
}

.text-small {
  font-size: 16px;
  line-height: 20px;
}

.text-upper {
  text-transform: uppercase;
}

.text-font-normal {
  font-weight: 400;
}

.text-font-italic {
  font-style: italic;
}

.text-font-bold {
  font-weight: 700;
}

.gray-color {
  background: var(--color-dark);
}

/* Effects */

.glow {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Color Codes */

.color-red {
  color: var(--color-red);
}

.color-white {
  color: var(--color-white);
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(88, 88, 192, 0) 0%,
    rgba(88, 88, 192, 1) 50%,
    rgba(88, 88, 192, 0) 100%
  );
}

.primary-bg {
  background-color: var(--color-primary) !important;
}

.w-128 {
  width: 90px;
}

/***********************
        HEADER
***********************/

header {
  background: linear-gradient(180deg, #04282a 30%, rgba(18, 53, 56, 0) 99%);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

#nav {
  display: flex;
  justify-content: flex-start;
  transition: 0.4s all;
}

.nav li {
  display: flex;
  list-style: none;
  padding: 10px 20px;
}

.nav li a {
  font-weight: 600;
}

.logo {
  display: flex;
  background: #00000000;
  padding: 20px;
}

.logo img {
  height: 25px;
}

.logo:hover {
  opacity: 0.9;
}

.sub-menu {
  box-shadow: 0px 4px 5px #00000017;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 350px;
  top: 65px;
  left: -110px;
  max-height: 0;
  background: var(--color-white);
  overflow: hidden;
  transition: 0.4s;
  border-radius: 20px;
}

.menu-item-has-children ul li {
  padding: 5px 30px;
  margin: 10px 0px;
}

.menu-item-has-children ul li::after {
  content: "";
  height: 1px;
  width: 80%;
  display: block;
  background: #f3f3f3;
  position: absolute;
  margin-top: 50px;
}

.menu-item-has-children ul li a {
  width: 100%;
  display: flex;
  color: var(--color-dark);
  align-items: center;
}

.menu-item-has-children ul li img {
  margin-right: 10px;
  background: var(--color-dark);
  padding: 6px 5px;
  border-radius: 20px;
}

.menu-item-has-children ul li a:hover img {
  background: #20656a;
}

.menu-item-has-children ul li a::after {
  content: "\e905";
  font-family: "mrz-iconset";
  display: block;
  position: absolute;
  right: 40px;
  color: var(--color-white);
  transition: 0.2s all;
}

.menu-item-has-children ul li a:hover::after {
  right: 30px;
  color: var(--color-complimentary);
}

.menu-item-has-children ul li a:hover {
  color: var(--color-primary);
}

.menu-item-has-children:after {
  content: "\e906";
  font-family: "mrz-iconset";
  margin-left: 8px;
  position: relative;
  height: 10px;
  padding: 2px;
  font-size: 10px;
  top: 3px;
  transition: transform 0.4s;
  transform-origin: 50% 45%;
  color: var(--color-light);
}

.menu-item-has-children:hover ul {
  max-height: 650px;
}

.menu-item-has-children:hover:after {
  transform: rotate(-180deg);
}

.mega-menu {
  position: relative;
}

.mega-menu .sub-menu {
  position: absolute;
  width: 900px;
  left: -900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu:hover ul {
  max-height: 200px;
}

.menu-col {
  width: 25%;
  overflow: hidden;
  padding: 0px;
  text-align: center;
}

.menu-col:hover {
  background-color: var(--color-light);
  border-radius: 5px;
}

.menu-col img {
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}

/***********************
    SECTION HERO
***********************/

section {
  background: var(--color-secondary);
  z-index: 2;
}

section.hero {
  background: url("../images/bg.png") no-repeat center;
  background-size: cover;
}

/***********************
       FOOTER
***********************/

.footer {
  padding: 5vh 0;
  margin: 0px auto;
  background: var(--color-white);
  color: var(--color-secondary);
}

.footer .container {
  padding: 10vh 0;
}

.footer p {
  line-height: 22px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer .container a {
  color: var(--color-black);
  padding-left: 0px;
  transition: 0.4 all;
}

.footer-area h3 {
  font-size: 26px;
  line-height: 30px;
}

.footer .f-grid-one-fifth {
  grid-template-columns: 22.5% 16.5% 16.5% 16.5% 16.5%;
  column-gap: 2.8%;
}

/* Footer Navigation Link Hover */

.footer .container li a:hover {
  padding-left: 18px;
}

.footer .container li a::before {
  content: "\e905";
  font-family: "mrz-iconset";
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  margin-top: 2px;
  opacity: 0;
  color: var(--color-primary);
  transition: opacity 0.2s ease-out;
}

.footer .container li a:hover::before {
  opacity: 1;
}

/* Copyright Section */

.copyright {
  width: 90%;
  font-size: 12px;
}

.copyright a {
  color: var(--color-black);
  font-size: 12px;
  margin-left: 3px;
}

.copyright a:hover {
  color: var(--color-secondary);
}

/* Footer Logo */

.footer .logo-footer {
  height: 100px;
  width: 100px;
  display: block;
}

.footer .logo img {
  width: 100%;
}

.footer .logo-footer:hover {
  opacity: 0.9;
  transform: scale(0.95);
}

/***********************
      BLOG ARTICLE
***********************/

.post {
  margin-top: -85px;
}

.post .container-full {
  background: var(--color-dark);
  position: relative;
  z-index: 1;
  padding: 2% 0;
}

.post a {
  color: var(--color-primary);
}

.post a:hover {
  color: var(--color-secondary);
}

.post .read-time {
  position: relative;
  background: var(--color-complimentary);
}

.post-feature {
  width: 100%;
  height: 50vh;
  top: -100px;
  overflow: hidden;
  position: sticky;
}

.post-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta-container {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-dark);
}

.meta-container a {
  color: var(--color-primary);
}

.meta-container,
.meta-container li {
  font-size: 13px;
}

.post .meta-container .date,
.post .meta-container .author {
  min-width: 130px;
}

.meta-container span {
  display: flex;
  align-items: center;
}

.category ul {
  display: flex;
}

.category ul li,
.tags a {
  list-style: none;
  margin-left: 10px;
}

.block {
  padding: 50px;
  min-height: 20vh;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.article-item .post-title a {
  font-size: 32px;
}

.article-item .post-title a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

/* Color Container */

.comments {
  width: 100%;
}

.comments label {
  font-weight: bold;
}

.comments form input,
.comments form textarea {
  background: #00000000;
  color: var(--color-black);
  font-size: 14px;
  border: 1px solid var(--color-dark);
  margin-top: 10px;
  padding: 0px 10px;
}

.comments form input {
  height: 45px;
}
.comments form textarea {
  height: 100px;
  padding-top: 10px;
}

.comment {
  background: var(--color-white);
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-dark);
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.comment-author img {
  margin-right: 20px;
  border-radius: 50px;
}

.comment-author cite {
  font-style: normal;
  margin-right: 10px;
}

.comment-author cite a {
  font-size: 18px;
  font-weight: bold;
}

.comment-list {
  padding: 0;
}

.comment .odd {
  background-color: #f3f3f3;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  display: flex;
  flex-direction: column;
}

.comment-form-author,
.comment-form-email {
  width: 48%;
  float: left;
}

.comment-form-author {
  margin-right: 4%;
}

.comment-respond {
  max-width: 800px;
  margin: 5vh auto;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  float: left;
}
.comment-form-cookies-consent input {
  height: 20px !important;
  margin-top: 4px !important;
  margin-right: 10px;
}

.form-submit .submit {
  width: 100%;
  display: inline-block;
  opacity: 1;
  height: 46px;
  padding: 0 40px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-title);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--color-primary);
  color: var(--color-black);
}

.form-submit .submit:hover {
  background: var(--color-secondary);
}

/* ==========================================================================
   COOKIE POPUP
   ========================================================================== */

/* Cookie Popup */

.cookie-popup {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  bottom: -6.25rem;
  right: 7rem;
  padding: 0.625rem 0.9375rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
  line-height: 150%;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 99999;
  background: var(--color-dark);
  border-radius: 20px;
  color: var(--color-white);
}

.cookie-popup--short {
  right: none;
  width: 21.875rem;
}

.cookie-popup--dark {
  background: #000;
  color: #fff;
}
.cookie-popup--not-accepted {
  opacity: 1;
  animation: cookie-popup-in 0.5s ease forwards;
}
.cookie-popup--accepted {
  opacity: 0;
  display: none;
}
.cookie-popup a {
  color: var(--color-primary);
}

.cookie-popup a:hover {
  color: var(--color-secondary);
}
.cookie-popup a:visited {
  color: skyblue;
  text-decoration: none;
}
.cookie-popup-actions {
  flex: 1;
  text-align: right;
}
.cookie-popup-actions button {
  color: var(--color-secondary);
  border: none;
  background: none;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0;
  cursor: pointer;
  background: var(--color-primary);
  padding: 10px;
  border-radius: 5px;
  transition: 0.5 all;
}

.cookie-popup-actions button:hover {
  background: var(--color-complimentary);
}

@keyframes cookie-popup-in {
  from {
    bottom: 0;
  }
  to {
    bottom: 120px;
  }
}

.wp-block-cover__inner-container {
  width: 90% !important;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

/* Color Container */

.nothing {
  height: 70vh;
}

.nothing h1 {
  font-size: 10vh;
  margin: 0px;
}

.nothing-img {
  max-width: 40vh;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */

/* Search Form */

.search {
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0px 0px 10px #00000012;
}

.search form {
  display: flex;
}

/* Search Input */

.search input {
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-text);
}

.search form input[type="search"] {
  width: 70%;
}

/* Search Button */

.search form input[type="submit"] {
  width: 30%;
  font-weight: bold;
  background: var(--color-primary);
  transition: all 0.3s;
}

.search form input[type="submit"]:hover {
  background: var(--color-secondary);
}

/* ==========================================================================
   ARCHIVE PAGE
   ========================================================================== */

/* Archive Item */

.archive-item {
  padding: 20px;
  margin-bottom: 20px;
}

.post-thumbnail {
  margin-bottom: 20px;
  border-radius: 10px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.pagination a {
  color: var(--color-primary);
  font-size: 16px;
  padding: 0px 4px;
}

.post-title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.post-title a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

/* Contact Form */

.wpcf7 {
  max-width: 600px;
}

/* Contact Label */

.wpcf7 label {
  font-weight: bold;
  display: block;
  font-size: 14px;
}

/* Contact Input */

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400 !important;
}

/* Contact Submit */

.wpcf7 .btn {
  width: 100%;
}

/* Contact Validation Alert */

.wpcf7-not-valid-tip {
  position: absolute;
  top: -40px;
  right: 0;
}

input[type="submit"] {
  display: inline-block;
  opacity: 1;
  padding: 0 40px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  font-family: var(--font-title);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.4s;
  margin-bottom: 10px;
  background: var(--color-primary);
  color: var(--color-black);
}

input[type="submit"]:hover {
  background: var(--color-complimentary);
  color: var(--color-white);
}

/* Contact Submit Error */

.wpcf7 form .wpcf7-response-output {
  margin: 0px 0px 50px 0px;
  padding: 10px;
  text-align: center;
  background: var(--color-messageError);
  border-radius: 5px;
  border: 0px;
}

/* Contact Loader */

.wpcf7-spinner {
  position: absolute;
  left: inherit;
  background-color: var(--color-primary);
  opacity: 1;
  width: 600px;
  border-radius: 0px;
  margin-left: -600px;
  padding: 0;
  height: 46px;
  transition: all 0.5;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 13px;
  left: 280px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.slideshow-container {
  color: var(--color-white);
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion-container {
  width: 100%;
}

button.accordion {
  width: 100%;
  align-items: center;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-white);
  transition: background-color 0.2s linear;
}

button.accordion:after {
  content: "\e903";
  font-family: "mrz-iconset";
  font-size: 18px;
  float: right;
  transition-duration: 0.2s;
  transition-property: transform;
}

button.accordion.is-open:after {
  transform: rotate(180deg);
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #ddd;
}

.accordion-content {
  background-color: var(--color-white);
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  padding: 0px 20px;
  max-height: 0;
  overflow: hidden;
  display: flex;
  transition: max-height 0.2s ease-in-out;
  align-items: center;
  border-bottom: 1px solid var(--color-dark);
}

.read-time {
  background: var(--color-dark);
  padding: 5px;
  border-radius: 6px;
  justify-content: center;
  min-width: 100px;
  position: absolute;
  margin: 12px;
  text-align: center;
  z-index: 9;
}

/* ==========================================================================
   AUTHOR PAGE
   ========================================================================== */

.author-profile-card {
  margin-top: 20px;
  border-bottom: 1px solid var(--color-gray);
  padding: 30px 20px;
  text-align: center;
}

.author-profile-card a {
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}

.author-profile-card a:hover {
  color: var(--color-secondary);
}

.author-profile-card .author-photo img {
  border-radius: 100%;
}

.author-posts h3 a {
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: bold;
}

.author-posts h3 a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

.home-services {
  background: url("/wp-content/themes/mogovolt/assets/images/homepage-services-bg.png");
  background-size: cover;
}

.insta {
  background: rgb(4, 40, 43);
  background: linear-gradient(
    180deg,
    rgba(4, 40, 43, 1) 70%,
    rgba(255, 255, 255, 1) 30%
  );
}

.insta::after {
  content: url("/wp-content/themes/mogovolt/assets/images/insta-wave.svg");
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
}

.full-img img {
  height: 100vh;
  object-fit: cover;
}

.headline strong {
  color: var(--color-primary);
}

/* Parallax Hero */

.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.layer {
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  height: 75vh;
}

.hero,
.layer {
  min-height: 800px;
}

.layer-2 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/home-hero-lines.png");
  background-position: right bottom;
  left: 0;
  top: 0;
  width: 366px;
  position: absolute;
  height: 100%;
}

.layer-3 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/home-hero-house.png");
  background-position: right bottom;
  background-size: 100%;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 1920px;
}

.footer section {
  background: var(--color-white);
}

.hero-content {
  width: 30%;
  top: 40%;
  left: 5%;
  position: absolute;
  z-index: 1;
}

.lights-cta {
  position: absolute;
  bottom: 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.lights-cta a {
  display: flex;
  justify-content: center;
}

.lights-cta-img::before {
  content: "";
  width: 50%;
  height: 20%;
  background: linear-gradient(
    360deg,
    #123538 53.39%,
    rgba(18, 53, 56, 0) 98.63%
  );
  position: absolute;
  bottom: 0;
  display: block;
  z-index: 1;
}

.testimonial {
  max-width: 800px;
  padding: 40px;
  background: var(--color-dark);
  z-index: 9;
  border-bottom: 5px solid var(--color-primary);
  margin: 5% auto;
  display: flex;
  align-items: center;
  align-content: center;
}

.feedback {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  align-content: center;
}

.testimonial h4 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-title);
  font-weight: 700;
}

.testimonial h4 span {
  color: var(--color-complimentary);
}

.client {
  margin-top: 20px;
  text-align: center;
}

.client span {
  color: var(--color-complimentary);
  margin-top: 10px;
  display: block;
}

.feature-item {
  cursor: pointer;
}

.feature-item h3,
.feature-item img {
  transition: 0.4s all;
}

.feature-item:hover h3 {
  color: var(--color-primary);
}

.feature-item:hover img {
  filter: brightness(1) drop-shadow(0px 0px 20px #ffbb00);
}

/* ==========================================================================
   LIGHTS PAGE
   ========================================================================== */

.lights {
  background: #00000000;
  margin-top: -22vh;
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

.inner-features {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 50px !important;
  justify-content: center;
  align-items: center;
}

.inner-features h2,
.inner-features p {
  width: 100%;
  max-width: 600px;
}

.inner-features-icons {
  background: var(--color-green);
  display: grid;
}

.feature-icon {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  margin: 0;
  padding: 0;
  width: 100%;
}

.feature-icon .wp-block-image {
  width: 80px;
  height: 80px;
  background: var(--color-dark);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
}

.feature-icon .paragraph {
  max-width: 200px;
  text-align: center;
}

.lights-layouts {
  width: 55% !important;
}

.lights-thumb img {
  width: 90% !important;
  margin: 0px auto;
}

.lights-layouts .slick-dots {
  bottom: -30px !important;
}

.slick-dots li button:before {
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: var(--color-primary);
}

/* Service Slider */

.slick-prev:before,
.slick-next:before {
  color: var(--color-white);
  font-family: "mrz-iconset";
  font-size: 22px;
  transition: 0.1s all;
  display: block;
}

.slick-prev:before {
  content: "\e907";
}

.slick-next:before {
  content: "\e908";
}

.slick-prev:hover::before,
.slick-next:hover::before {
  font-size: 20px;
  color: var(--color-primary);
}

.service-item {
  height: 100vh;
  display: flex !important;
  align-items: center;
  background-size: cover;
}

.slide-content {
  width: 35%;
  position: relative;
  margin-left: 5%;
  flex-direction: column;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    left: 5%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

.slide-1 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-residential.png");
}

.slide-2 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-heated-floors.png");
}

.slide-3 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-backup-generator.png");
}

.slide-4 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-panel.png");
}

.slide-5 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-service-call.png");
}

.slide-6 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-car-charger.png");
}

.slide-7 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-knob.png");
}

.slide-8 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-service-upgrade.png");
}

.slide-9 {
  background-image: url("/wp-content/themes/mogovolt/assets/images/hero-hot-tub.png");
}

.service-carousel {
  max-width: 1920px;
  margin: 0px auto;
}

.service-carousel .slick-dots {
  width: 30px;
  left: 7%;
  bottom: 7%;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-carousel .slick-dots::after {
  content: "/ 9";
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  left: 40px;
}

.service-carousel .slick-prev {
  left: 5%;
  bottom: 7%;
  position: absolute;
  top: inherit;
}

.service-carousel .slick-next {
  left: 12%;
  bottom: 7%;
  position: absolute;
  top: inherit;
}

.service-carousel .slick-dots li {
  position: absolute !important;
}

.service-carousel .slick-active a {
  color: var(--color-primary);
}

.service-carousel .slick-dots li a {
  font-size: 38px;
  opacity: 0;
}

.service-carousel .slick-active a {
  opacity: 1 !important;
}

.home-light .column-half {
  justify-content: space-around;
}

.home-light .wp-block-image {
  height: 100%;
}

.home-light .w-80 {
  margin-bottom: 5%;
}

.home-light .wp-block-image {
  overflow: hidden;
}

.home-light img {
  transition: 0.4s all;
}

.home-light img:hover {
  transform: scale(1.02);
}

.banner-block .w-40 {
  max-width: 550px;
}

.banner-block .column-full {
  justify-content: space-around !important;
  z-index: 9;
}

.video-overlay::before {
  content: url("/wp-content/themes/mogovolt/assets/images/outline-overlay.svg");
  display: block;
  width: 70%;
  position: absolute;
  top: 0;
  right: 0;
}

.banner-block::after {
  content: url("/wp-content/themes/mogovolt/assets/images/home-hero-lines.png");
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -10vh;
}

.enjoy-cta h1 {
  width: 500px;
  position: relative;
  left: 10vh;
}

/* ==========================================================================
   PPC Page
   ========================================================================== */

.ppc-page header .nav,
.ppc-page .footer {
  display: none !important;
}

.bg-white {
  background: white;
  color: var(--color-dark);
}

.bg-white li {
  margin-bottom: 5px;
}

.bg-white ::marker {
  color: var(--color-primary);
}

.bg-yellow {
  background: var(--color-primary);
  padding: 10vh 0 !important;
}

.bg-two-tone {
  background: rgb(255, 187, 0);
  background: linear-gradient(
    0deg,
    rgba(255, 187, 0, 1) 15%,
    rgba(4, 40, 43, 1) 15%
  );
}

.benefits strong {
  display: inline-flex;
  font-size: 16px;
}

.benefits strong::before {
  content: url("/wp-content/themes/mogovolt/assets/images/check.png");
  display: flex;
  position: relative;
  border-radius: 10px;
  margin-right: 10px;
}

.arrow-bottom {
  position: relative;
}

.arrow-bottom::after {
  content: url("/wp-content/themes/mogovolt/assets/images/arrow-drawn.svg");
  display: flex;
  position: absolute;
  right: 0;
  bottom: -70px;
}

.wp-block-image {
  margin: 0 !important;
}

.ppc-testimonial .testimonial {
  max-width: 600px;
}

.ppc-testimonial .testimonial h4 {
  font-size: 26px;
  line-height: 32px;
}

.replacement-img .wp-block-image,
.replacement-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.small-contact {
  background: var(--color-primary);
  margin-top: -10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 0px 50px;
  color: var(--color-dark);
}

.contact-bg h4 {
  margin-right: 20px;
}

.contact-bg .same-line span {
  margin-right: 10px;
}

.contact-bg .same-line input,
.ppc-form .same-line input,
.ppc-form select {
  border: 1px solid var(--color-dark);
  margin: 0px;
  padding: 12px 20px;
  border-radius: 5px;
}

.contact-bg input {
  border-radius: 5px;
  color: var(--color-dark);
}

.contact-bg input[type="submit"],
.ppc-form input[type="submit"] {
  background: var(--color-complimentary);
  border-radius: 5px;
}

.contact-bg input[type="submit"]:hover,
.ppc-form input[type="submit"]:hover {
  background: var(--color-dark);
  border-radius: 5px;
}

.contact-bg form {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.contact-bg .wpcf7-response-output {
  position: absolute;
  margin-bottom: -100px !important;
  z-index: 999;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: var(--color-complimentary);
}

.ppc-form textarea {
  border: 1px solid var(--color-dark);
  border-radius: 5px;
  color: var(--color-dark);
}

.ppc-form input {
  color: var(--color-dark);
}

.ppc-form .same-line span {
  width: 48%;
}

.ppc-form .same-line {
  justify-content: space-between;
}

.ppc-form select {
  font-family: var(--font-text);
  font-weight: bold;
  width: 100%;
}

.ppc-form .wpcf7-not-valid-tip {
  font-size: 12px;
  border-radius: 5px;
  background: red;
  color: var(--color-white);
  padding: 8px;
  text-align: center;
  margin: 0;
  top: 0;
}

.ppc-footer {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  column-gap: 5%;
  padding: 10vh;
  color: var(--color-dark);
  background: var(--color-white);
  align-items: center;
}

.ppc-footer a {
  color: var(--color-dark);
}

.ppc-footer a strong {
  font-size: 18px;
}

.ppc-footer img {
  width: 100%;
}

.jobber-inline-work-request {
  width: 1000px;
}

/*** 2025 ***/

.home-second {
  width: 100%;
  height: 100vh;
}

.home-second .container-block {
  align-items: center;
}

.home-second .column-full {
  max-height: 500px;
  overflow: hidden;
  width: 90%;
}

.second-video {
  padding: 0;
  margin: 0;
  width: 50%;
  position: relative;
}

.second-video .wp-block-image {
  height: 100%;
}

.second-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-second .inner-features {
  background: var(--color-dark);
  border-bottom: 5px solid var(--color-primary);
}

.play-btn {
  position: absolute;
  height: 136px;
  width: 136px !important;
  display: block;
  padding: 0;
  margin: 0;
  top: calc(50% - 66px);
  left: calc(50% - 66px);
}

.play-btn img {
  position: absolute;
  top: 0;
  left: 0;
}

.play-inner,
.play-outer {
  position: absolute;
  height: 136px;
  width: 136px !important;
  top: 0;
  transition: 0.3s all;
}

.play-btn:hover .play-outer {
  animation: rotating 6s linear infinite;
}

.play-btn:hover .play-inner {
  transform: scale(0.9);
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.home-mogovolt-list {
  display: flex;
  flex-direction: column;
  margin: 0px;
  width: 95%;
  margin-left: 5%;
  position: relative;
}

.home-mogovolt-list .headline {
  margin: 0px;
}

.home-mogovolt-list:before {
  content: url("/wp-content/themes/mogovolt/assets/images/check-mark.svg");
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
}

.client-feedback {
  height: 100vh;
  background: url("/wp-content/themes/mogovolt/assets/images/logo-outline-yellow.svg")
    no-repeat center center var(--color-secondary);
}

.video-testimonials {
  max-width: 1100px;
  align-items: center;
}

.video-feedback {
  padding: 0px;
  margin: 0px;
  display: flex !important;
  align-items: center;
  background: var(--color-dark);
  border-bottom: 5px solid var(--color-primary);
}

.video-feedback .column-half:first-child {
  text-align: center;
  width: 70%;
}

.video-feedback .column-half:last-child {
  width: 30%;
  padding: 0px;
  margin: 0px;
  max-height: 500px;
}

.video-feedback .column-half:last-child video {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  cursor: pointer;
}

.video-feedback .headline {
  font-size: 28px;
  line-height: 140%;
}

.video-testimonials .slick-dots {
  bottom: 20px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper:hover button {
  transform: scale(0.9);
}

.play-button {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  transition: 0.3s all;
}

.play-button.hide {
  opacity: 0;
  pointer-events: none;
}

.seattle-map img {
  border-radius: 20px;
}

.team .column-block {
  justify-content: center;
}

.team-member {
  text-align: center;
  cursor: pointer;
}

.team-member .wp-block-image {
  background: url("/wp-content/themes/mogovolt/assets/images/team-bg.png")
    no-repeat;
  position: relative;
  background-size: contain;
}

.team-member .wp-block-image::before {
  content: "";
  width: 100%;
  height: 103%;
  display: flex;
  position: absolute;
  top: -6px;
  left: -8px;
  opacity: 0;
  transition: 0.1s all;
  transform: scale(0.98);
}

.team-member.adrian .wp-block-image::before {
  background: url("/wp-content/uploads/2025/04/team-1-1.png");
  background-size: cover;
}

.team-member.daniel .wp-block-image::before {
  background: url("/wp-content/uploads/2025/04/team-2-1.png");
  background-size: cover;
}

.team-member.beniamin .wp-block-image::before {
  background: url("/wp-content/uploads/2025/04/team-3-1.png");
  background-size: cover;
}

.team-member .name {
  margin: 20px 0px 0px 0px;
  font-size: 18px;
}

.team-member p:last-child {
  margin-top: 5px;
}

.team-member:hover .wp-block-image::before {
  opacity: 1;
}

.values {
  background: url("/wp-content/themes/mogovolt/assets/images/values-bg.jpg")
    no-repeat;
  height: 100vh;
  justify-content: flex-start !important;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-inside {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 450px;
}

.close-modal {
  position: absolute;
  top: -35px;
  right: -35px;
  background: var(--color-primary);
  color: var(--color-black);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  font-weight: bold;
}

#vimeoVideo {
  width: 100%;
  height: 100%;
  border: 1px solid white;
}

/* ==========================================================================
   PPC PAGES
   ========================================================================== */

.page-id-1587,
.page-id-1587 section {
  background: var(--color-white);
  color: var(--color-dark);
}

.page-id-1587 h1 {
  font-size: 82px;
  line-height: 120%;
}

.page-id-1587 h2 {
  font-size: 64px;
  line-height: 120%;
}

.page-id-1587 h3 {
  font-size: 48px;
  line-height: 120%;
}

.page-id-1587 h4 {
  font-size: 36px;
  line-height: 120%;
}

.page-id-1587 h5 {
  font-size: 28px;
  line-height: 120%;
}

.page-id-1587 header .nav {
  display: none !important;
}

.page-id-1587 .footer {
  display: none !important;
}

.page-id-1587 .paragraph--large {
  font-size: 22px;
}

.ppc-hero {
  padding: 0;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.ppc-hero .headline,
.ppc-hero p {
  color: var(--color-white) !important;
}

.ppc-hero .banner-block::after {
  display: none;
}

.ppc-hero-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 48% 48%;
  padding: 0px;
  margin: 0px;
}

.dark-bg {
  background: var(--color-secondary) !important;
  color: var(--color-white) !important;
}

.banner-block .column-full.ppc-hero-item {
  justify-content: flex-start !important;
}

.ppc-usp-container {
  width: 80%;
  left: 10%;
  margin: 0px auto;
  position: absolute;
  bottom: 50px;
  z-index: 3;
}

.ppc-usp {
  width: 100%;
  margin: 0px;
  padding: 0px;
  flex-direction: row;
  align-items: center;
}

.ppc-usp p {
  margin: 0px;
}

.classic-text ul {
  margin-left: 20px;
}

.classic-text ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

.classic-text ul li::marker {
  color: var(--color-complimentary);
}

.wave-top {
  background: url("/wp-content/themes/mogovolt/assets/images/wave-top.png")
    var(--color-white) no-repeat !important;
  background-size: 100% !important;
  background-position: top center;
}

.label-info {
  border-radius: 10px;
  border: 1px solid #00e183;
  background: rgba(0, 225, 131, 0.1);
  max-width: 800px;
  margin: 0px auto;
  padding: 0px;
}

.ppc-faq {
  background: url("/wp-content/themes/mogovolt/assets/images/ppc-faq-car-charger.jpg")
    var(--color-dark) no-repeat !important;
  color: var(--color-white) !important;
  background-size: cover;
}

.ppc-faq button.accordion {
  background: var(--color-dark);
  color: var(--color-white);
  border-bottom: 5px solid var(--color-primary);
}

.ppc-faq button.accordion h5 {
  font-size: 20px;
}

.ppc-faq button.accordion::before {
  content: "";
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  background: red;
  margin-right: 10px;
}

.ppc-faq .accordion-content {
  flex-direction: column;
  margin-bottom: 10px;
  text-align: left;
  align-items: flex-start;
  background: var(--color-dark);
}

.ppc-vid {
  max-height: 600px;
}

.ppc-vid .video-block {
  height: 100%;
}

.ppc-vid video {
  height: 100%;
  object-fit: contain;
}

.img-border-bottom {
  border-bottom: 5px solid var(--color-primary);
  margin-bottom: 20px !important;
}

.ppc-banner {
  color: var(--color-white);
  background: url("/wp-content/themes/mogovolt/assets/images/ppc-banner.jpg")
    var(--color-dark);
  width: 90%;
  max-width: 1600px;
  margin: 50px auto;
  min-height: 400px;
  padding: 40px;
  border: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.ppc-banner p {
  font-size: 18px;
  margin-bottom: 20px;
}

.ppc-box {
  background: var(--color-dark);
}

.ppc-box img {
  border-bottom: 5px solid var(--color-primary);
}

.ppc-form {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  background: url("/wp-content/themes/mogovolt/assets/images/ppc-form-bg.svg")
    no-repeat var(--color-secondary);
  background-position: top right;
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
  color: var(--color-white);
}

.ppc-form-text {
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
}

.ppc-end {
  background: var(--color-secondary);
  border-bottom: 5px solid var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 0px;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}

.ppc-end .column-half:first-child {
  padding: 40px;
  box-sizing: border-box;
}

.permits .label-info {
  margin: 0px !important;
}

.ppc-footer .column-forth {
  flex-direction: row;
}

/***Mobile***/

@media (max-width: 642px) {
  .page-id-1587 h2 {
    font-size: 36px;
    text-align: left;
  }

  .page-id-1587 h1 {
    font-size: 48px;
    line-height: 120%;
  }

  .page-id-1587 .paragraph--large {
    font-size: 18px;
  }

  .ppc-hero-wrap {
    width: 100% !important;
    padding: 0px !important;
  }

  .ppc-usp-container {
    width: 100% !important;
    left: 0;
    margin: 0px auto;
    position: absolute;
  }

  .ppc-usp {
    margin-bottom: 10px !important;
  }

  .ppc-hero,
  .banner-block {
    height: 150vh !important;
  }

  .ppc-hero .banner-block {
    background-position: top right !important;
    background-size: 240% !important;
    background-repeat: no-repeat !important;
    background-color: var(--color-secondary) !important;
  }

  .ppc-hero .banner-block > .column-full {
    padding-top: 30vh;
  }

  .wave-top {
    background-size: 300% !important;
  }

  .wave-top .column-full {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-feature {
    width: 100% !important;
    padding: 0px !important;
  }

  .img-border-bottom img {
    height: 200px;
    object-fit: cover;
  }

  .label-info {
    margin-bottom: 20px !important;
  }

  .ppc-faq {
    padding: 10vh 0px !important;
  }

  .ppc-faq .column-full {
    margin: 0px auto !important;
  }
}
