html {
    overflow-x: hidden;
}

/* Text colors */
.text-p-yellow {
    color: var(--p-yellow);
}

.text-og-gray {
    color: var(--p-og-gray);
}

/* Text sizes */
.text-size-subtitle {
    font-size: 24px;
}

/* Buttons */
.btn {
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    font-size: 15px;
    padding: 5px 10px;
}

.btn-lg {
    padding: 5px 10px;
    font-size: 18px;
}

.btn-gray-fill {
    border-color: var(--p-gray);
    color: #fff;
    background-color: var(--p-gray);
}

/* Backgrounds */
.bg-light-gray {
    background-color: var(--p-light-gray);
}

#mainnav ul li a {
    color: var(--p-og-gray) !important;
}

.footer-list-header {
    font-size: 16px;
    font-weight: bold;
    font-family: WhitneyBold;
}

.footer-social-icons {
    list-style-type: none;
    float: right
}

.footer-social-icons li {
    display: inline;
    margin-left: 20px;
}

.wp-block-group.has-background,
.wp-block-media-text__content {
    padding-left: 0px !important
}

.wp-block-button a {
    border-radius: 5px !important;
}

.wp-block-group.has-background {
    padding: 20px 0px !important
}

.wp-block-group.has-background p,
.wp-block-group.has-background h1,
.wp-block-group.has-background h2,
.wp-block-group.has-background h3,
.wp-block-group.has-background h4,
.wp-block-group.has-background h5,
.wp-block-group.has-background h6,
.wp-block-group.has-background .wpforms-container.wpforms-container-full,
.wp-block-group.has-background .wp-block-social-links {
    padding: 10px 30px !important
}

.wp-block-media-text.has-background p,
.wp-block-media-text.has-background .wp-block-button,
.wp-block-media-text.has-background h4 {
    padding: 20px 30px !important
}

.wp-block-media-text.is-image-fill p,
.wp-block-media-text.is-image-fill h1,
.wp-block-media-text.is-image-fill h2,
.wp-block-media-text.is-image-fill h3,
.wp-block-media-text.is-image-fill h4,
.wp-block-media-text.is-image-fill h5 {
    padding: 20px 30px !important
}

.petralon-header-desc {
    color: #fff !important;
    font-size: 1em !important;
    padding-left: 15%;
    padding-right: 15%;
}

h3,
h4,
h5,
h6 {
    background: linear-gradient(to right, #F5EC33, #D9A649);
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0, 0, 0, 1);
    display: block;
    transition: color .2s ease-in-out;
    text-transform: uppercase;
    font-weight: 900;
}

h3:hover,
h4:hover,
h5:hover,
h6:hover {
    color: rgba(0, 0, 0, 0);
}
.btn {
    color: #fff;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn:focus {
    outline: none;
}

.btn-gray-fill {
    background-image: linear-gradient(to right, #29323c, #485563, #F5EC33, #D9A649);
    box-shadow: 0 2px 5px 0 rgb(45 54 65 / 75%)
}

@keyframes rainbow {
    0% {
        background-position: left
    }

    50% {
        background-position: right
    }

    100% {
        background-position: left
    }
}
