/* 
Theme Name: A&H Theme
Description: Custom WordPress Theme
Author: Archer & Hound Advertising
Author URI: https://archerandhound.com/
Template: hello-elementor
Version: 2.0.0
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


html, body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

* {
	scroll-behavior: smooth;
	scroll-margin-top: 100px;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

/* --- */


footer {
  margin-top: auto;
}

h1, h2, h3, h4, h5, h6, .elementor-heading-title, .balance * {
  text-wrap: balance;
}

p {
	text-wrap: pretty;
}

.p-no-margin p:last-of-type{
    margin: 0 !important;
}

ul, ol {
	margin: 30px 0px;
}

li {
	margin-bottom: 10px;
}

button, .elementor-button, a {
    cursor: pointer;
}



/* Animations */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate3d(0,-100px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInDown {
    animation-name: fadeDown
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate3d(-100px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInLeft {
    animation-name: fadeLeft
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translate3d(100px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInRight {
    animation-name: fadeRight
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0,100px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInUp {
    animation-name: fadeUp
}