/*
Theme Name: Zummo PRO
Theme URI: https://effethemes.com/themes/zummo-wordpress-theme/
Author: Effe Themes
Author URI: https://effethemes.com/
Description: Zummo is a dark and modern multipurpose theme, perfect for creative agencies, designers, and businesses looking to make a bold impression. With full site editing (FSE) capabilities, Zummo offers complete design flexibility, allowing you to customize every detail of your website to match your vision. Its sleek, contemporary aesthetic is ideal for showcasing creative portfolios and building a unique online presence that stands out. Elevate your agency's brand with Zummo's innovative design and seamless user experience.
Requires at least: 6.6
Tested up to: 6.6
Requires PHP: 5.7
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zummo-pro
Tags: blog, portfolio, block-styles, e-commerce, full-site-editing, two-columns, full-width-template, custom-logo, custom-menu, custom-background, editor-style, block-patterns, custom-header, translation-ready, template-editing
*/

/* ================= > General Styles < ================= */

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--wp--preset--color--custom-background-primary);
  color: var(--wp--preset--color--custom-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

ul {
  list-style: none;
  padding: 0;
}

ul > li > a {
  text-decoration: none;
}

ul > li > a:hover {
  color: var(--wp--preset--color--custom-primary) !important;
}

:where(.wp-site-blocks) > * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.w-fit-content {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

/* ================= > Loading < ================= */

.loading-container {
  width: 100vw !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  z-index: 999 !important;
  opacity: 1;
  -webkit-transition: opacity 1.5s ease;
  -o-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  position: fixed;
  background: var(--wp--preset--color--custom-background-secondary);
}

.loading-content {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 100vh !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading-thumb {
  width: 10px;
  height: 40px;
  background-color: var(--wp--preset--color--custom-primary);
  margin: 4px;
  -webkit-box-shadow: 0 0 12px 3px var(--wp--preset--color--custom-primary);
          box-shadow: 0 0 12px 3px var(--wp--preset--color--custom-primary);
  -webkit-animation: loading 1.5s ease-in-out infinite;
          animation: loading 1.5s ease-in-out infinite;
}

.loading-thumb-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading-thumb-2 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading-thumb-3 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes loading {
  0% {}
  20% {
      background: white;
      -webkit-transform: scale(1.5);
              transform: scale(1.5);
  }
  40% {
      background: var(--wp--preset--color--custom-primary);
      -webkit-transform: scale(1);
              transform: scale(1);
  }
}

@keyframes loading {
  0% {}
  20% {
      background: white;
      -webkit-transform: scale(1.5);
              transform: scale(1.5);
  }
  40% {
      background: var(--wp--preset--color--custom-primary);
      -webkit-transform: scale(1);
              transform: scale(1);
  }
}

/* ================= > Header < ================= */

.wp-block-site-title > a {
  text-decoration: none;
}

.wp-block-site-title > a:hover {
  color: var(--wp--preset--color--custom-primary) !important;
}

.wp-block-navigation-item:hover {
  color: var(--wp--preset--color--custom-primary) !important;
}

.wp-block-navigation__responsive-container-content {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  border: 0 !important;
}

.wp-block-navigation-submenu > li {
  background: var(--wp--preset--color--custom-background-secondary) !important;
  color: var(--wp--preset--color--custom-text-color);
}

/* ================= > Video Popup < ================= */

.video-popup-img-container {
  position: relative;
  display: inline-block;
}

.video-popup-img-container > img {
  display: block;
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  z-index: 9999;
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.video-popup-content {
  position: relative;
}

.video-popup-content video {
  width: 100%;
  height: auto;
}

.video-play-button {
  width: 80px;
  height: 80px;
  background-color: var(--wp--preset--color--custom-primary);;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.video-play-button:hover {
  opacity: 0.8;
}

.video-play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #ffffff;
}

.video-popup-close-btn {
  position: fixed;
  top: -25px;
  right: 55px;
  font-size: 30px !important;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
  z-index: 9999;
}

.video-popup-close-btn > div > a {
  font-family: monospace !important;
  background: transparent !important;
}

/* ================= > Roll Text < ================= */

.roll-texts > div {
  scrollbar-width: none;
}

.items--gsap {
  overflow-x: hidden;
}

.items--gsap .items__container {
  translate: calc(-100% + 100vw) !important;
}

.items__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

/* ================= > Team < ================= */

.team-hover-effect > img {
  -webkit-transition: -webkit-transform 0.45s ease-in-out;
  transition: -webkit-transform 0.45s ease-in-out;
  -o-transition: transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
}

.team-hover-effect:hover > img {
  -webkit-transform: scale(1.10);
      -ms-transform: scale(1.10);
          transform: scale(1.10);
}

.team-hover-effect > div > div {
  opacity: 0;
  background: #000000b0;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

.team-hover-effect:hover > div > div {
  opacity: 1;
}

/* ================= > Swiper < ================= */

.swiper-slide {
  width: 100% !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.swiper-pagination {
  position: static !important;
  display: -ms-grid !important;
  display: grid !important;
  grid-auto-flow: column !important;
  place-content: start !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 12px;
}

/* ================= > Contact < ================= */

.contact-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  gap: 0 18px;
}

.contact-form-row > p {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40%;
}

.contact-form > p > span > input,
.contact-form > p,
.contact-form > p > span > input,
.contact-form > p > span > textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wpcf7-text,
.wpcf7-textarea {
  border-radius: 20px;
  padding: 15px 20px !important;
}

.wpcf7-form-control {
  width: -webkit-fill-available;
  padding: 15px 10px;
}

.wpcf7-submit {
  cursor: pointer;
  width: 100%;
  border-radius: 20px !important;
  padding: 20px 0;
  background: var(--wp--preset--color--custom-primary) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wpcf7-submit:hover {
  background: #fff !important;
  color: #333 !important;
}

/* ================= > Blog < ================= */

.wp-block-post-title > a:hover,
.wp-block-read-more:hover {
  color: var(--wp--preset--color--custom-primary) !important;
}

.wp-block-button__link,
.wp-block-search__button {
  background: var(--wp--preset--color--custom-primary);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.wp-block-button__link:hover,
.wp-block-search__button:hover {
  opacity: 0.8;
}

input,
textarea {
  background: var(--wp--preset--color--custom-background-secondary);
  color: #fff !important;
  border: 0;
}

/* ================= > Media Queries < ================= */

@media (max-width: 1024px) {
  .wp-block-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .hero-button {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

@media (max-width: 992px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close,
  .wp-block-navigation__responsive-container-open:not(.always-shown),
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }

  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .wp-block-navigation__container {
    --navigation-layout-justification-setting: flex-start !important;
    --navigation-layout-justify: flex-start !important;
  }
}

@media (max-width: 768px) {
  .wp-block-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px 0;
  }
}