/*
    Theme Name: Onovo Child
    Theme URI: https://bslthemes.com/
    Author: bslthemes
    Author URI: https://themeforest.net/user/bslthemes
    Description: Onovo - Creative Portfolio Agency WordPress Theme
    Version: 1.0.0
    License: General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
    Template: onovo
    Text Domain: onovo-child
    Tags: full-width-template, editor-style, featured-images, sticky-post, threaded-comments, translation-ready, theme-options
*/

/* Sticky Floating Icon CSS start */

.sticky-icons {
  position: fixed;
  right: 25px;
  bottom: 100px;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.sticky-icon-box {
  width: 50px;
  height: 50px;
  padding: 14px;
  border-radius: 50%;
  /* background-color: #d8ff36; */
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.sticky-icon-box:last-child {
  margin-bottom: 0;
}

.sticky-icon-box a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.sticky-icon-box img {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sticky-icon-box img:hover {
  transform: scale(1.06);
  /* box-shadow: 0 10px 28px rgba(0,0,0,.28); */
}

@media (max-width: 480px) {
  .sticky-icon-box {
    right: 12px;
    bottom: 12px;
  }

  /* 
    .sticky-icon-box img {
        width: 48px;
        height: 48px;
    }
    */
}

/* Sticky Floating Icon CSS End */

/* Modal styles start below */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, var(--backdrop-opacity));
  z-index: var(--modal-z-index);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  z-index: 11;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.modal-backdrop.show .modal {
  transform: translateY(0);
}

.modal.small {
  max-width: 400px;
}

.modal.medium {
  max-width: 900px;
  max-width: 85vw;
}

.modal.large {
  max-width: 800px;
}

.modal-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: none;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #2980b9);
  color: white;
  position: relative;
}

.modal-secondary .modal-header {
  background: linear-gradient(135deg, var(--secondary-color), #27ae60);
}

.modal-tertiary .modal-header {
  background: linear-gradient(135deg, var(--tertiary-color), #8e44ad);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
}

.modal-close:hover {
  transform: scale(1.1);
  background: #9ec21a;
}

.modal-body {
  padding: 2rem;
}

.modal-content {
  /* margin-bottom: 1.5rem; */
  border: none;
  border-radius: none;
}

.modal-footer {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
}

.modal_form .input-group,
.modal_form .input-group .wpcf7-form-control-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.modal_form .input-group.input-button {
  justify-content: center;
}

.modal_form .input-group .wpcf7-form-control-wrap .wpcf7-form-control {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-black);
  border: unset;
  resize: none;
  background: transparent;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(15, 15, 15, 0.2);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 0;
  height: auto;
  max-height: 180px;
}

.modal_form .input-group .wpcf7-form-control-wrap .wpcf7-form-control.nice-select {
  max-height: 57px;
}

.modal .wpcf7-not-valid-tip {
  font-size: 0.7em;
  width: 100%;
  padding: 0 15px;
}

/* modal style end above*/

/**/
.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 0.7em;    
    width: 100%;
    padding: 0 30px;
}
/**/

/**/
.onovo-social-1 ul li {
  margin-right: 10px;
}

.onovo-social-1 ul li a {
  width: 50px;
  height: 50px;
}

.onovo-blog-item .desc .info .date,
.onovo-blog-item .desc .info .author {
  margin-bottom: 10px;
}

.onovo-blog-item .desc .info .author {
  display: inline-flex;
  margin-right: 22px;
}

.onovo-blog-item .desc .info .author .author-icon {
  display: inline-flex;
  justify-content: center;
  width: 20px;
  height: 20px;
  /* border-radius: 50%; */
  overflow: hidden;
  vertical-align: middle;
  margin: 0 5px;
  align-items: end;
}

.onovo-author-bottom {
  margin: 30px 0 60px 0;
  padding: 6px;
  position: relative;
  background: #000;
}

.onovo-author-bottom .onovo-author-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(178, 178, 178, 0.3);
}

.onovo-author-bottom .onovo-author-bottom-content .author-avata {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content {
  width: calc(100% - 150px - 30px);
  padding-left: 30px;
  color: #fff;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .blog-details-author-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .blog-details-author-title a {
  color: currentColor;
  font-weight: 600;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #d8ff36; */
  border: 1px solid #3e3e3e;
  border-radius: 100%;
  position: relative;
  font-size: 16px;
  color: #FFF;
  margin-right: 4px;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social a::before {
  margin: 0;
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
  transform: scale(0);
  -webkit-transform: scale(0);
  background: #d8ff36;
  pointer-events: none;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social a:hover::before {
  transform: scale(1);
  -webkit-transform: scale(1);
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social a:hover i {
  color: #000;
  z-index: 1;
}

.onovo-author-bottom .onovo-author-bottom-content .author-content .author-social a i {
  color: #fff;
}

.author .breadcrumb__area {
  display: none;
  visibility: hidden;
}

/**/

.video-section .onovo-video .play {
  display: none;
}

.service-item .onovo-service-item .onovo-service-item-inner {
  padding: 120px 50px 60px 50px;
}

.post-content a,
.post-content a:visited {
  color: #1adf0d;
}

.post-content a:hover {
  color: #000000;
}

/* Form loader */
.input-group.input-button #form-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  /* margin: 0 24px; */
  /* position: relative; */
  position: absolute;
  bottom: 0;
  left: 13%;
  transform: translate(-50%, -1em);
  margin: 0;
}

.input-group.input-button #form-loader::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  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;
}

.wpcf7-form.submitting .input-group.input-button button span {
  color: rgba(0, 0, 0, 0);
}

.contact-la__form .input-button .common-btn {
  border-radius: 50px !important;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  border: none !important;
}

/* Table of Content */
.ez-toc-counter {
  width: 50% !important;
  padding: 20px 20px 20px 25px !important;
  border-radius: 25px !important;
  background: #000000 !important;
  color: #ffffff !important;
}

.ez-toc-counter .ez-toc-list li a {
  color: #ffffff !important;
}

.wpcf7-form.submitting .input-group.input-button button #form-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #d8ff36;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
  position: absolute;
  bottom: 0;
  left: 13%;
  transform: translate(-50%, -1em);
  margin: 0;
  z-index: 2;
}

.wpcf7-form.submitting .input-group.input-button #form-loader::before {
  content: "";
  position: absolute;
  background-color: #000000;
  top: 4px;
  left: 4px;
  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;
}

.wpcf7-form.submitting .input-group.input-button #form-loader {
  background-color: #d8ff36;
}

.wpcf7-form.submitting .input-group.input-button #form-loader::before {
  background-color: #000;
}

.wpcf7-form.submitting .input-group.input-button:hover button::after {
  display: none;
  visibility: hidden;
}

.wpcf7-form.submitting .input-group.input-button:hover #form-loader {
  background-color: #d8ff36 !important;
}

.wpcf7-form.submitting .input-group.input-button:hover #form-loader::before {
  background-color: #000 !important;
}

@media (max-width: 1200px) {
  .intro-sec .container {
    padding: 0px 50px;
  }

  .hero-section .onovo-hero .container {
    padding: 100px 30px 0px 30px !important;
  }
}

@media (max-width: 1024px) {
  .custom-cards-parent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .custom-cards-parent .custom-cards {
    flex-basis: calc(50% - 10px);
  }

  .our-service .onovo-intro .container {
    padding: 0px 30px 0px 30px !important;
  }

  .about-section .onovo-intro .container {
    padding: 0px 30px 0px 30px !important;
  }

  .contact-section .onovo-intro .container {
    padding: 0px 30px 0px 30px !important;
  }

  .blog-section .onovo-intro .container {
    padding: 0px 30px 0px 30px !important;
  }

  .service-item .onovo-service-item .onovo-service-item-inner {
    padding: 120px 30px 60px 30px;
  }

  .service-item .onovo-service-item .image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 991px) {
  .hero-section .onovo-hero {
    height: 70vh;
  }
}

@media (max-width: 767px) {
  .custom-cards-parent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .custom-cards-parent .custom-cards {
    flex-basis: calc(100% - 0px);
  }

  .custom-service .onovo-service-item-list-inner .image {
    display: none;
  }

  .intro-sec .container {
    padding: 0px 20px;
  }

  .hero-section .onovo-hero {
    height: 50vh;
  }

  .hero-section .onovo-hero .onovo-play-btn {
    width: 50px;
    height: 50px;
  }

  .our-service .onovo-intro .container {
    padding: 0px 20px 0px 20px !important;
  }

  .contact-section .onovo-intro .container {
    padding: 0px 20px 0px 20px !important;
  }

  .about-section .onovo-intro .container {
    padding: 0px 20px 0px 20px !important;
  }

  .blog-section .onovo-intro .container {
    padding: 0px 20px 0px 20px !important;
  }
}