/*!
Theme Name: ScooperTheme
Theme URI: https://scoopertheme.sweepandgo.com/
Author: Sweep&Go
Author URI: https://www.sweepandgo.com
Description: ScooperTheme - Professional Poop Scoop WordPress Theme.
Version: 1.1.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: scooper-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ScooperTheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later..

*/

/*** GENERAL ***/

:hover {
  transition: all 0.3s;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

::-moz-selection {
  color: #fff;
  background: #02835b;
}

::selection {
  color: #fff;
  background: #02835b;
}

.container {
  display: flex;
  align-items: center;
  padding: 0px 150px;
}

.section-container {
  width: 100%;
  position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"] {
  line-height: 1.7;
  background-color: #f5f5f5;
  border: 1px solid #c9c9c9;
  outline: none;
  height: auto;
  display: block;
  width: fit-content;
  border-radius: 23px;
  padding: 10px 15px;
  font-size: 16px;
  color: #202020;
}

textarea {
  line-height: 1.7;
  background-color: #f5f5f5;
  border: 1px solid #c9c9c9;
  outline: none;
  height: auto;
  display: block;
  border-radius: 23px;
  padding: 10px 15px;
  font-size: 16px;
  color: #202020;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="password"]:focus {
  border: 1px solid #02835b;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder,
input[type="number"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder {
  color: #606060;
}

input[type="submit"],
button,
.button-404 {
  text-decoration: none;
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 24px;
  color: #fff;
  background-color: #fb3502;
  width: fit-content;
  border: none;
  text-transform: uppercase;
  outline: none;
  display: block;
  font-weight: bold;
  cursor: pointer;
}

/* HEADER */

/* Top Header */
.site-header .top-header {
  background-color: #202020;
}

.site-header .top-header .container {
  justify-content: space-between;
}

.social-icons-list {
  display: flex;
  gap: 15px;
  padding: 0px;
  margin: 7px 0px;
}

.social-icons-list li {
  list-style-type: none;
  background: #3a3a3a;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  text-align: center;
  transition: opacity 0.3s;
  cursor: pointer;
}

.social-icons-list li a {
  color: #fff;
  line-height: 26px;
}

.social-icons-list li a i {
  font-size: 14px;
}

.social-icons-list li:hover {
  opacity: 0.8;
}

.site-header .top-header .top-header-login a {
  color: #c9c9c9;
  font-size: 14px;
}

.site-header .top-header .top-header-login a:hover {
  opacity: 0.7;
}

/* Header */

.site-header .container.header-container {
  justify-content: space-between;
  padding-top: 35px;
  padding-bottom: 35px;
}

.site-header .container.header-container .site-logo a img {
  max-width: 155px;
  width: 100%;
}

.site-header .menu-main-navigation-container ul {
  display: flex;
  gap: 45px;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.site-header .menu-main-navigation-container ul li {
  position: relative;
}

.site-header .menu-main-navigation-container ul li ul.sub-menu {
  position: absolute;
  top: -999em;
  width: 10em;
  z-index: 99999;
}

.site-header .menu-main-navigation-container ul li ul.sub-menu li a {
  color: #fff;
  font-weight: 400;
}

.site-header .menu-main-navigation-container ul li:hover > ul.sub-menu {
  left: 0;
  top: auto;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
  background: #202020;
  padding: 10px;
}

.site-header .menu-main-navigation-container ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #202020;
}

.site-header .menu-main-navigation-container ul li a:hover {
  opacity: 0.7;
}

.site-header .container.header-container .site-header-phone a {
  font-size: 20px;
  color: #202020;
  font-weight: 600;
  text-decoration: none;
}

.site-header .container.header-container .site-header-phone a:hover {
  opacity: 0.7;
}

.site-header .container.header-container .site-header-phone a::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #fb3502;
  padding-right: 10px;
}

.site-header .container.header-container .mobile-navigation-trigger {
  display: none;
}

.site-header .mobile-navigation-container {
  position: fixed;
  width: 100%;
  height: 100%;
  left: -100%;
  visibility: hidden;
  background: #fff;
  z-index: 99999;
  transition: all 0.3s ease-in-out;
}

/* Home Slider */

#full-height-slider {
  height: calc(100vh - 170px);
}

/* FOOTER */

footer.site-footer .footer-section {
  background-color: #02835b;
}

footer .footer-section .container {
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 30px;
  gap: 50px;
}

footer .footer-section .container h2.widget-title {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 10px;
  margin-top: 0px;
}

footer .footer-section .container .textwidget p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

footer .footer-section .container .row-25 {
  width: 25%;
}

footer.site-footer .copyright-bar {
  background-color: #007953;
  padding: 13px 0px;
  color: #fff;
  font-size: 13px;
}

footer .copyright-bar .container {
  justify-content: space-between;
}

footer .copyright-bar a {
  text-decoration: none;
  color: #fff;
}

footer .copyright-bar a:hover {
  opacity: 0.7;
}

footer .copyright-bar p {
  margin: 0px;
}

.footer-logo-svg {
  width: 153px;
  height: 30px;
}

footer .social-icons-list li {
  background: #2c9776;
}

/* Widget Contact */

.footer-contact-widget-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-contact-widget-container .footer-contact-widget-call {
  display: flex;
  gap: 20px;
}

.footer-contact-widget-container .footer-widget-info {
  display: flex;
  gap: 5px;
  color: #fff;
  font-size: 16px;
}

.footer-contact-widget-container .footer-widget-info div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-widget-container .footer-widget-info a {
  color: #fff;
  text-decoration: none;
}

.footer-contact-widget-container .footer-widget-info a:hover {
  opacity: 0.7;
}

.footer-contact-widget-container .footer-widget-info i {
  color: #9ccebf;
}

footer ul.menu {
  list-style-type: none;
  padding-left: 0px;
}

footer ul.menu li {
  margin-bottom: 10px;
}

footer ul.menu li:last-child {
  margin-bottom: 0px;
}

footer ul.menu li:hover {
  opacity: 0.7;
}

footer ul.menu li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

footer .sng-zip-code button {
  margin-top: 20px;
}

/* Home Elements */

.elementor-shortcode .sng-zip-code {
  display: flex;
}

.elementor-shortcode .sng-zip-code button {
  margin-left: -50px;
}

h2.elementor-heading-title span {
  color: #00835b;
}

/* MailChimp */

.newsletter-shortcode {
  width: 100%;
}

.newsletter-shortcode .mailchimp_newsletter {
  display: flex;
}

.newsletter-shortcode .mailchimp_newsletter input[type="email"] {
  width: 100%;
  background: #fff;
}

.newsletter-shortcode .mailchimp_newsletter input[type="submit"] {
  margin-left: -50px;
  background-color: #00835b;
}

/* Commercial Page */

.number_container_centered {
  display: flex;
  justify-content: center !important;
}

.number_container_centered .e-child,
.number_container .e-child {
  max-width: 413px;
}

.nf-form-content {
  padding: 0px !important;
}

.nf-before-form-content {
  display: none !important;
}

.nf-form-cont {
  margin-top: 10px;
}

/* Client Onboarding */

#sng-coupon {
  border: 2px dashed #fb3502;
  padding: 25px;
  border-radius: 13px;
  max-width: 80%;
  width: 100%;
  margin: 0 auto 20px;
}

#sng-coupon h5 {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

.sng-special-promo {
  background: #fffdc5;
  border-radius: 13px;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  border: none;
}

.sng-special-promo .sng-promo-title {
  margin-bottom: 5px;
}

.sng-special-promo .sng-promo-description {
  font-size: 14px;
  line-height: 20px;
}

.sng-form-group label,
.sng-dog-fields-wrapper label {
  display: block;
  font-family: "Source Sans Pro";
}

body.single-sng_page header.entry-header,
body.single-sng_page .postShare,
body.single-sng_page .widget-area {
  display: none;
}

body.sng_page-template-sng-client-onboarding-template-php .content-area > * {
  font-family: "Source Sans Pro";
}

body.sng_page-template-sng-client-onboarding-template-php .content-area {
  background: url(/wp-content/uploads/2024/04/paws_1.svg);
  background-color: #e8e8e8;
  padding: 80px 0px;
}

body.sng_page-template-sng-client-onboarding-template-php
  .content-area
  .type-sng-page {
  max-width: 740px;
  margin: 0 auto 0px;
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 50px 30px 50px;
}

body.sng_page-template .sng-page-content form {
  max-width: 740px;
  margin: 15px auto 0px !important;
}

body.sng_page-template:not(
    .sng_page-template-sng-client-onboarding-template-php
  )
  .sng-page-content
  form {
  max-width: 740px;
  margin: 40px auto;
}

body.sng_page-template-sng-client-onboarding-template-php
  .content-area
  .type-sng-page
  .page-header {
  background: transparent;
  padding-bottom: 0px;
}

body.sng_page-template-sng-client-onboarding-template-php
  .content-area
  .type-sng-page
  .page-header
  h1.entry-title,
body.sng_page-template-sng-out-of-area-template
  .content-area
  .type-sng-page
  .page-header
  h1.entry-title {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  color: #000000;
  font-weight: bold;
  font-size: 60px;
  padding-top: 20px;
}

body.sng_page-template-sng-client-onboarding-template-php
  .content-area
  .type-sng-page
  .page-header
  h1.entry-title
  span {
  color: #02835b;
}

body.sng_page-template .sng-submit-button {
  width: 100%;
  cursor: pointer;
  font-family: "Source Sans Pro";
}

.sng-form-group input {
  width: 100%;
}

#sng_free_quote_disclaimer {
  text-align: center;
  color: #004231;
}

#sng_free_quote_disclaimer span a {
  color: #004231;
}

.sng-div-number-of-dogs {
  margin-top: 2.5rem !important;
  margin-bottom: 4rem !important;
}

.sng-div-clean-up-frequency {
  margin-top: 2.5rem !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 23px;
  padding: 6px 15px;
  font-size: 16px;
  color: #202020;
  background-color: #f5f5f5;
  border: 1px solid #c9c9c9;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #000;
  padding: 0px;
}

.select2-container--default .select2-selection--multiple {
  border-radius: 23px;
  padding: 5px 15px;
  background-color: #f5f5f5;
  border: 1px solid #c9c9c9;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  background-color: #f5f5f5;
  border: 1px solid #c9c9c9;
}

.sng-pricing-table {
  border: 2px solid #fb3502;
  border-radius: 13px;
  padding: 0;
  background: #fff;
}

.sng-pricing-table #sng-pricing {
  border-radius: 13px;
  background: #fff;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0px 15px;
}

.sng-pricing-table #sng-pricing .sng-custom-short {
  font-weight: bold;
}

.sng-pricing-table #sng-pricing .sng-custom-long {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}

.sng-pricing-table #sng-pricing .title {
  font-size: 21px;
  font-weight: 500;
  color: #000000;
}

.sng-pricing-table #sng-pricing .sng-price,
.sng-pricing-table #sng-pricing .sng-initial-price,
.sng-pricing-table #sng-pricing .sng-billing-interval {
  color: #fb3502;
  font-size: 45px;
}

.sng-pricing-table #sng-pricing .sng-price .sng-interval,
#sng-pricing .sng-billing-interval.sng-no-per-cleanup .sng-interval {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-left: 5px;
}

/* .sng-pricing-table #sng-pricing .sng-billing-interval {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-left: 5px;
} */

#sng-callout {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px 15px;
}

.sng-pricing-table #sng-initial-estimate {
  background: #f5f5f5;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px;
  color: #000000;
  border: none;
  font-size: 18px;
  padding: 30px;
}

.sng-pricing-table #sng-initial-estimate .sng-custom-short {
  display: block;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sng-pricing-table #sng-initial-estimate .sng-custom-long {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

#sng-initial-estimate .sng-initial-cleanup-message {
  font-size: 17px;
  margin-top: 0px;
  color: #000;
  font-weight: bold;
}

#sng-initial-estimate .sng-initial-price,
#sng-initial-estimate .sng-price-not-defined {
  color: #fb3502;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.sng-pricing-table .sng-note {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-style: normal;
  color: #000000;
  padding: 10px 0px;
  font-size: 13px;
}

.sng-call-to-action h3 {
  font-size: 30px;
  margin-top: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sng-cross-sells .sng-cross-sell div:first-child span:nth-child(2) {
  font-size: 16px;
  color: #000;
  line-height: 20px;
  margin-bottom: 5px;
  margin-left: 15px;
}

.sng-cross-sells .sng-cross-sell div:first-child span.price {
  font-size: 15px;
  color: #fb3502;
  font-weight: bold;
  margin-bottom: 5px;
  margin-left: 25px;
}

.sng-cross-sells .sng-cross-sell div:nth-child(2) {
  margin-left: 25px;
}

.sng-cross-sells .sng-cross-sell div:nth-child(2) small.description {
  font-size: 14px;
  color: #000;
  line-height: 19px;
}

#sng-cross-sells-bottom .sng-note {
  font-size: 12px;
  font-style: normal;
  color: #000000;
  text-align: left;
  max-width: 100%;
  padding: 0px;
  line-height: normal;
  margin-bottom: 15px;
}

label[for="terms_of_service"] {
  display: inline-block !important;
}

#terms_of_service {
  width: auto;
}

label[for="terms_of_service"] a {
  color: #02835b;
  text-decoration: none;
}

small {
  color: #000;
  font-size: 12px;
}

.sng-cc-note {
  font-size: 80%;
  margin-bottom: 10px;
  color: #000;
  line-height: normal;
}

/* Contact */

.elementor-custom-embed iframe {
  border-radius: 25px;
}

/* Things To Do */

.things_to_do .elementor-image-box-img {
  margin-bottom: 0px !important;
  padding-bottom: 0px;
}

.things_to_do .elementor-image-box-img img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.things_to_do .elementor-image-box-content {
  background: #fff;
  padding: 20px 15px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-top: -5px;
}

.things_to_do .elementor-image-box-content h3 {
  margin-top: 0px;
}

.things_to_do .elementor-image-box-content h3 a {
  text-decoration: underline;
}

/* Single Post */

.content-container header.entry-header {
  width: 100%;
  background-image: radial-gradient(at center center, #02835b 0%, #013b29 100%);
  padding: 30px 150px;
  min-height: 250px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.content-container header.entry-header .page-breadcrumbs {
  width: 100%;
}

.content-container header.entry-header .page-breadcrumbs .breadcrumbs-url {
  color: #fff;
}

.content-container header.entry-header .page-breadcrumbs .breadcrumbs-url a {
  text-decoration: underline;
  color: #fff;
}

.content-container header.entry-header .page-breadcrumbs h2,
.content-container header.entry-header h1.entry-title {
  color: #fff !important;
  margin: 5px 0px 0px 0px;
  font-weight: bold;
  font-size: 60px;
}

.content-sidebar {
  width: 100%;
  padding: 80px 150px;
  display: flex;
  gap: 40px;
}

.content-sidebar article {
  max-width: 80%;
  width: 100%;
}

.content-sidebar article .post-title h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
  margin-top: 0px;
}

.content-sidebar article .entry-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  font-size: 15px;
  color: #202020;
}

.content-sidebar article .entry-meta span.posted-on::before {
  content: "\f133";
  font-family: "Font AWesome 6 Free";
  font-weight: 800;
  color: #202020;
  margin-right: 5px;
  font-size: 17px;
}

.content-sidebar article .entry-meta span.cat-links::before {
  content: "\f02b";
  font-family: "Font AWesome 6 Free";
  font-weight: 800;
  color: #202020;
  margin-right: 5px;
  font-size: 17px;
}

.content-sidebar article .entry-meta span.cat-links a {
  text-decoration: none;
  color: #202020;
}

.content-sidebar article .post-thumbnail {
  margin-bottom: 30px;
}

.content-sidebar article .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.content-sidebar article .entry-content p {
  font-size: 16px;
  line-height: 24px;
  word-break: break-word;
  color: #202020;
}

.content-sidebar aside {
  max-width: 20%;
  width: 100%;
}

.postShare span {
  margin-right: 10px;
}

.postShare a {
  background: #3a3a3a;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.postShare a:hover {
  opacity: 0.8;
}

.postShare a i {
  color: #fff;
  line-height: 26px;
  font-size: 14px;
}

/* Search Widget */

.widget_scoop_latest_post_widget {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 35px 20px;
}

.widget_scoop_latest_post_widget .search-widget form {
  display: flex;
}

.widget_scoop_latest_post_widget .search-widget form input {
  width: 100%;
}

.widget_scoop_latest_post_widget .search-widget form button {
  margin-left: -50px;
  padding: 15px;
  border-radius: 50%;
}

.widget_scoop_latest_post_widget .sng-latest-post {
  margin-top: 30px;
}

.widget_scoop_latest_post_widget .sng-latest-post h5 {
  font-size: 26px;
  line-height: 33px;
  margin-bottom: 20px;
  color: #202020;
}

.widget_scoop_latest_post_widget .sng-latest-post .sng-latest-single {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.widget_scoop_latest_post_widget
  .sng-latest-post
  .sng-latest-single:last-child {
  margin-bottom: 0px;
}

.widget_scoop_latest_post_widget
  .sng-latest-post
  .sng-latest-single
  .sng-latest-info {
  display: flex;
  flex-direction: column;
}

.widget_scoop_latest_post_widget
  .sng-latest-post
  .sng-latest-single
  .sng-latest-info
  a {
  font-size: 16px;
  color: #fb3502;
  line-height: 18px;
  text-decoration: none;
}

.widget_scoop_latest_post_widget
  .sng-latest-post
  .sng-latest-single
  .sng-latest-info
  span {
  font-size: 13px;
  color: #606060;
  margin-top: 10px;
}

.widget_scoop_latest_post_widget .sng-latest-post .sng-latest-thumbnail img {
  width: 45px;
  height: 45px;
  border-radius: 5px;
}

aside h2.widget-title {
  font-size: 26px;
  line-height: 33px;
  margin-bottom: 20px;
  color: #202020;
}

aside .widget_categories ul {
  list-style: none;
  padding-left: 0px;
}

aside .widget_categories ul li {
  margin-bottom: 10px;
}

aside .widget_categories ul li:last-child {
  margin-bottom: 0px;
}

aside .widget_categories ul li a {
  color: #fb3502;
  text-decoration: none;
}

aside .widget_categories ul li a::before {
  content: "\f02c";
  font-family: "Font AWesome 6 Free";
  font-weight: 800;
  color: #202020;
  margin-right: 5px;
  font-size: 17px;
}

/* 404 page */

.error-header {
  width: 100%;
  min-height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-not-found-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0px;
}

.page-not-found-content h1 {
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 110px;
  line-height: 66px;
  font-weight: bold;
  color: #202020;
}

.page-not-found-content h2 {
  margin: 0px;
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
  color: #202020;
}

.page-not-found-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 30px;
  color: #202020;
}

/* Simple Page */

.entry-content p img {
  border-radius: 25px;
}

.entry-content p a {
  color: #fb3502;
}

.entry-content ul {
  list-style-type: none;
  padding-left: 0px;
}

.entry-content ul li {
  margin-bottom: 10px;
}

.entry-content ul li:last-child {
  margin-bottom: 0px;
}

.entry-content ul li::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #02835b;
  padding-right: 10px;
}

blockquote {
  border-left-color: #e8e8e8;
  border-left-width: 8px;
  border-left-style: solid;
  margin-left: 0px;
  padding-left: 15px;
  color: #000;
  margin-bottom: 0px;
  font-style: italic;
}

/* Search Container */

.search-container .sng-blog-posts-grid {
  gap: 60px;
  padding: 90px 150px;
}

.search-container .sng-blog-posts-grid .post-item a img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.search-container .sng-blog-posts-grid .post-item {
  border-radius: 25px 25px 25px 25px;
}

.search-container .sng-blog-posts-grid .post-item h3 a {
  font-size: 20px;
  font-weight: 500;
  color: #202020;
  text-decoration: none;
}

/* Button Hover Animation */

button,
.elementor-button-wrapper a,
.all-articles-container a {
  transition: all 0.3s;
  overflow: hidden !important;
  position: relative;
}

button::before,
.elementor-button-wrapper a:before,
.all-articles-container a::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-45deg);
  -moz-transform: skewX(-45deg);
  -o-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

button:hover::before,
.elementor-button-wrapper a:hover::before,
.all-articles-container a:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

/* Fixes */

.sng-blog-posts-grid .post-item h3 a:hover,
.sng-latest-post .sng-latest-single .sng-latest-info a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1540px) {
  #full-height-slider .full-height-first-col {
    margin-top: -50px;
  }
}

@media only screen and (max-width: 1210px) {
  .site-header .container.header-container .menu-main-navigation-container ul {
    gap: 25px;
  }

  .site-header
    .container.header-container
    .menu-main-navigation-container
    ul
    li
    a {
    font-size: 16px;
  }

  .site-header .container.header-container .site-header-phone a,
  .site-header .container.header-container .site-header-phone a::before {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  .site-header .container.header-container .site-header-phone {
    display: none;
  }
}

@media only screen and (max-width: 912px) {
  .site-header .container.header-container .site-header-nav {
    display: none;
  }

  .site-header .container.header-container .site-header-phone,
  .site-header .container.header-container .mobile-navigation-trigger {
    display: block;
  }

  .site-header .container.header-container .site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .site-header .container.header-container .site-logo i {
    font-size: 30px;
    color: #000000;
  }

  .site-header .mobile-navigation-container.active {
    left: 0;

    visibility: visible;
    padding: 20px 10px;
  }

  .site-header .mobile-navigation-container .mobile-navigation-close i {
    color: #000000;
    font-size: 30px;
  }

  .site-header .mobile-navigation-container-content {
    padding: 40px 20px;
  }

  .site-header
    .mobile-navigation-container-content
    .menu-main-navigation-container
    ul {
    flex-direction: column;
    gap: 35px;
  }

  .site-header
    .mobile-navigation-container-content
    .menu-main-navigation-container
    ul
    li
    ul.sub-menu {
    position: relative;
    top: 0;
    left: 0;
    gap: 10px;
    margin-left: 10px;
    margin-top: 10px;
  }

  .site-header
    .mobile-navigation-container-content
    .menu-main-navigation-container
    ul
    li
    ul.sub-menu
    li
    a {
    font-weight: 400;
    color: #202020;
  }

  .site-header .mobile-navigation-container-content .mobile-navigation-phone,
  .site-header .mobile-navigation-container-content .mobile-navigation-address,
  .site-header .mobile-navigation-container-content .mobile-navigation-email,
  .mobile-navigation-socials,
  .mobile-navigation-zip-code {
    margin-top: 40px;
  }

  .site-header .mobile-navigation-container-content .mobile-navigation-phone a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #202020;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-phone
    a::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #202020;
    padding-right: 10px;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-address
    .full-address,
  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-email
    .full-email {
    font-size: 16px;
    margin-top: 5px;
    margin-left: 23px;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-email
    .full-email {
    margin-left: 30px;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-email
    .full-email
    a {
    text-decoration: none;
    color: #202020;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-address-icon::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #202020;
    padding-right: 10px;
  }

  .site-header
    .mobile-navigation-container-content
    .mobile-navigation-email-icon::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #202020;
    padding-right: 10px;
  }

  .mobile-navigation-socials .social-icons-list {
    display: flex;
    gap: 15px;
    padding: 0px;
    margin: 7px 0px;
  }

  .mobile-navigation-socials .social-icons-list li {
    list-style-type: none;
    background: #3a3a3a;
    border-radius: 50px;
    width: 34px;
    height: 34px;
    text-align: center;
    transition: opacity 0.3s;
    cursor: pointer;
  }

  .mobile-navigation-socials .social-icons-list li a {
    color: #fff;
    line-height: 35px;
  }

  .mobile-navigation-socials .social-icons-list li a i {
    font-size: 18px;
  }

  .mobile-navigation-zip-code input {
    border: 1px solid #f5f5f5;
    width: 100%;
    max-width: 80%;
  }

  .mobile-navigation-zip-code button {
    width: 100%;
    max-width: 80%;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .site-header .top-header {
    display: none;
  }

  .site-header .top-header.show-top-header {
    display: block !important;
  }

  .site-header .top-header.show-top-header .container {
    padding: 0px 10px !important;
  }

  .site-header .container.header-container {
    padding: 20px 10px;
  }

  .site-header .container.header-container .site-header-phone a,
  .site-header .container.header-container .site-header-phone a::before {
    font-size: 18px;
  }

  #full-height-slider {
    height: calc(100vh - 70px);
  }

  #full-height-slider .full-height-first-col {
    margin-top: -150px;
  }

  footer .footer-section .container {
    flex-direction: column;
    padding: 50px 10px;
    text-align: center;
    gap: 30px;
  }

  footer .footer-section .container .row-25 {
    width: 100%;
  }

  .footer-contact-widget-container .footer-widget-info i {
    display: none;
  }

  .footer-contact-widget-container .footer-widget-info {
    justify-content: center;
  }

  footer .social-icons-list {
    justify-content: center;
  }

  .footer-contact-widget-container .footer-contact-widget-call {
    flex-direction: column;
  }

  footer .sng-zip-code {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .sng-zip-code input,
  footer .sng-zip-code button {
    width: 100%;
    max-width: 70%;
  }

  footer .sng-zip-code button {
    margin-top: 10px;
  }

  footer .copyright-bar .container {
    justify-content: space-between;
    padding: 10px;
    gap: 15px;
    flex-direction: column-reverse;
  }

  footer .copyright-bar a {
    margin-right: 20px;
    margin-left: 20px;
  }

  .elementor-shortcode .sng-zip-code {
    flex-direction: column;
    align-items: center;
  }

  .elementor-shortcode .sng-zip-code input,
  .elementor-shortcode .sng-zip-code button {
    width: 100%;
    max-width: 70%;
  }

  .elementor-shortcode .sng-zip-code button {
    margin-left: 0px;
    margin-top: 10px;
  }

  .change_dog_order div:nth-child(1) {
    order: 2;
  }

  .change_dog_order div:nth-child(2) {
    order: 1;
  }

  .change_dog_order div:nth-child(3) {
    order: 3;
  }

  .newsletter-shortcode .mailchimp_newsletter {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-shortcode .mailchimp_newsletter input[type="submit"] {
    margin-left: 0px;
    width: 100%;
  }

  body.sng_page-template-sng-client-onboarding-template-php
    .content-area
    .type-sng-page {
    padding: 30px 20px;
    margin: 0px 10px 40px;
  }

  .site-header .site-logo img {
    max-width: 110px !important;
  }

  body.sng_page-template:not(
      .sng_page-template-sng-client-onboarding-template-php
    )
    .sng-page-content
    form {
    padding: 0px 10px;
  }

  .sng-pricing-table #sng-pricing .sng-price,
  .sng-pricing-table #sng-pricing .sng-initial-price,
  .sng-pricing-table #sng-pricing .sng-billing-interval {
    font-size: 26px;
  }

  body.sng_page-template-sng-client-onboarding-template-php
    .content-area
    .type-sng-page
    .page-header
    h1.entry-title,
  body.sng_page-template-sng-out-of-area-template
    .content-area
    .type-sng-page
    .page-header
    h1.entry-title {
    font-size: 30px;
    width: 100%;
  }

  .gallery {
    margin: 0px !important;
  }

  .gallery-item {
    padding: 0 0px 40px 0 !important;
  }

  .content-sidebar {
    padding: 40px 10px;
    gap: 20px;
    flex-direction: column;
  }

  .content-sidebar article,
  .content-sidebar aside {
    min-width: 100%;
  }

  .content-sidebar article .post-title h1 {
    font-size: 30px;
    line-height: 30px;
  }

  .content-container header.entry-header {
    padding: 30px 10px;
    min-height: 200px;
  }

  .content-container header.entry-header .page-breadcrumbs h2,
  .content-container header.entry-header h1.entry-title {
    font-size: 40px;
    line-height: 40px;
  }

  .search-container .sng-blog-posts-grid {
    padding: 40px 10px;
  }
}
