/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway-VariableFont_wght.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway-Italic-VariableFont_wght.woff2") format("woff2");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/

:root {
    /* Brand Color */
    --ee-red: #CC3333;

    /* Text Colors */
    --ee-dark: #212529;
    --ee-white: #FFFFFF;

    /* Background Colors */
    --ee-dark-bg: #151515;
    --ee-input-bg: #F7F7F7;

    /* Border Colors */
    --ee-border: #E9ECEF;
    --ee-heading-line: #CFCFCF;

    /* Layout */
    --ee-header-height: 80px;
    --ee-logo-height: 60px;
    --ee-hero-height: 420px;
    --ee-hero-height-mobile: 360px;
    
    /* Footer */
    --ee-footer-top: #555555;
    --ee-footer-bottom: #313131;
    --ee-footer-text: rgba(255,255,255,.65);
    --ee-footer-muted: rgba(255,255,255,.55);
    --ee-footer-link: rgba(255,255,255,.70);
    --ee-footer-image-size: 140px;

    /* Animation */
    --ee-transition: .2s ease;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scrollbar-gutter: stable;
}

body {
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ee-dark);
    background: var(--ee-white);
}

p a {
    color: var(--ee-red);
    text-decoration: none;
    font-weight: 500;
}

p a:hover,
p a:focus {
    color: var(--ee-dark);
}

.text-brand {
    color: var(--ee-red);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--ee-white);
    border-bottom: 1px solid var(--ee-border);
    transition:
        transform .3s ease,
        box-shadow var(--ee-transition);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.is-scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.navbar {
    min-height: var(--ee-header-height);
}

.navbar-brand {
    padding: 0;
    flex-shrink: 0;
}

.navbar-brand img {
    height: var(--ee-logo-height);
    width: auto;
    display: block;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: .4rem;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

.desktop-menu {
    align-items: center;
}

.desktop-menu .nav-item {
    margin-left: .5rem;
}

.desktop-menu .nav-link {
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ee-dark);
    transition: color var(--ee-transition);
}

.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active {
    color: var(--ee-red);
}

/*--------------------------------------------------------------
# Mobile Offcanvas Navigation
--------------------------------------------------------------*/

.offcanvas-header {
    min-height: var(--ee-header-height);
    padding-block: calc((var(--ee-header-height) - var(--ee-logo-height)) / 2);
    padding-inline: 1rem;
}

.offcanvas-title img {
    display: block;
    height: var(--ee-logo-height);
    width: auto;
}

.offcanvas .btn-close,
.offcanvas .btn-close:focus,
.offcanvas .btn-close:focus-visible {
    box-shadow: none;
    outline: 0;
}

.mobile-nav {
    align-items: stretch;
}

.mobile-nav .nav-link {
    padding: .75rem 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color var(--ee-transition), padding-left var(--ee-transition);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--ee-red);
}

.mobile-nav .nav-link:hover {
    padding-left: .5rem;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
    position: relative;
    overflow: hidden;
    min-height: var(--ee-hero-height);
    text-align: center;
    color: var(--ee-white);
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url("../images/Drawing-A-Caricature.webp") center / cover no-repeat;
}

.hero-content {
    min-height: var(--ee-hero-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-kicker {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
}

.hero-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.hero-actions {
    margin: 1.5rem 0 0;
}

@media (max-width: 767.98px) {
    .hero {
        min-height: var(--ee-hero-height-mobile);
    }

    .hero-content {
        min-height: var(--ee-hero-height-mobile);
    }

    .hero-kicker {
        font-size: 34px;
    }

    .hero-title {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    background: var(--ee-dark-bg);
    padding: 1.25rem 0;
}

.page-header .kicker{
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: var(--ee-white);
}

.page-header .kicker span{
    color: var(--ee-red);
}

.page-header h1{
    margin: .5rem 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.67);
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

.heading-line {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.heading-line::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-left: 1rem;
    background: var(--ee-heading-line);
}

h2.heading-line {
    margin: 0 0 1.25rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
    border-radius: 0;
    transition:
        color var(--ee-transition),
        background-color var(--ee-transition),
        border-color var(--ee-transition),
        box-shadow var(--ee-transition);
}

.btn-brand {
    --bs-btn-color: var(--ee-white);
    --bs-btn-bg: var(--ee-red);
    --bs-btn-border-color: var(--ee-red);
    --bs-btn-hover-color: var(--ee-white);
    --bs-btn-hover-bg: #B82D2D;
    --bs-btn-hover-border-color: #AD2A2A;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-focus-shadow-rgb: 204, 51, 51;
    --bs-btn-active-color: var(--ee-white);
    --bs-btn-active-bg: #AD2A2A;
    --bs-btn-active-border-color: #A32727;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: var(--ee-white);
    --bs-btn-disabled-bg: var(--ee-red);
    --bs-btn-disabled-border-color: var(--ee-red);
}

.btn-outline-text {
    color: var(--ee-dark);
    background: var(--ee-white);
    border: 1px solid var(--ee-dark);
    text-decoration: none;
}

.btn-outline-text:hover,
.btn-outline-text:focus {
    color: var(--ee-dark);
    background: #e8e8e8;
    border-color: var(--ee-dark);
}

.btn-outline-text:active {
    color: var(--ee-dark);
    background: #ddd;
    border-color: var(--ee-dark);
}

.btn-outline-text.active {
    color: var(--ee-white);
    background: var(--ee-dark);
    border-color: var(--ee-dark);
}

/*--------------------------------------------------------------
# Roster
--------------------------------------------------------------*/

.roster-grid {
    overflow-anchor: none;
}

.roster-grid .mix {
    will-change: transform, opacity;
}

.roster-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.roster-card:hover,
.roster-card:focus {
    color: inherit;
    text-decoration: none;
}

.roster-card img {
    display: block;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto .5rem;
    transition: filter var(--ee-transition);
}

.roster-card:hover img,
.roster-card:focus img {
    filter: brightness(.85);
}

.roster-card h3 {
    margin: .25rem 0 .15rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.roster-card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.3;
}

.roster-filter {
    color: var(--ee-dark);
    background: var(--ee-white);
    border: 1px solid var(--ee-dark);
    font-weight: 400;
    padding: .375rem .875rem;
}

.roster-filter:hover,
.roster-filter:focus {
    color: var(--ee-dark);
    background: #e8e8e8;
    border-color: var(--ee-dark);
}

.roster-filter.mixitup-control-active {
    color: var(--ee-white);
    background: var(--ee-dark);
    border-color: var(--ee-dark);
}

/*--------------------------------------------------------------
# Fancybox
--------------------------------------------------------------*/

.fancybox__backdrop {
    background: rgba(0, 0, 0, .5);
}

/* Toolbar buttons */
.f-button {
    background: rgba(0, 0, 0, .25);
    border-radius: 0;
    box-shadow: none;
    transition: background-color var(--ee-transition);
}

.f-button:hover,
.f-button:focus-visible {
    background: rgba(0, 0, 0, .5);
}

.f-button:focus-visible {
    outline: 2px solid var(--ee-white);
    outline-offset: 2px;
}

/*--------------------------------------------------------------
# Artist Portfolio
--------------------------------------------------------------*/

[data-fancybox="portfolio"] {
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

[data-fancybox="portfolio"] img {
    display: block;
    width: 100%;
    transition: filter var(--ee-transition);
}

[data-fancybox="portfolio"]:hover img,
[data-fancybox="portfolio"]:focus-visible img {
    filter: brightness(.85);
}

/*--------------------------------------------------------------
# Maps
--------------------------------------------------------------*/

.artist-map {
    width: 100%;
    height: 360px;
    background: #f5f5f5;
    overflow-anchor: none;
    contain: layout paint;
}

/*--------------------------------------------------------------
# Shared Swiper
--------------------------------------------------------------*/

.services-swiper,
.caricaturists-swiper,
.topten-swiper {
    overflow: hidden;
    overflow-anchor: none;
    contain: layout paint;
}

.testimonial-swiper,
.ratings-swiper,
.footer-swiper {
    overflow-anchor: none;
}

/*--------------------------------------------------------------
# Services Swiper
--------------------------------------------------------------*/

.services-swiper {
    width: 100%;
    aspect-ratio: 3 / 2;
}

.services-swiper .swiper-wrapper,
.services-swiper .swiper-slide,
.services-swiper img {
    width: 100%;
    height: 100%;
}

.services-swiper img {
    object-fit: cover;
    display: block;
}

/*--------------------------------------------------------------
# Top Ten Swiper
--------------------------------------------------------------*/

.topten-swiper {
    min-height: 140px;
}

.topten-swiper .lead {
    font-size: 1.125rem;
}

/*--------------------------------------------------------------
# Anchor Targets
--------------------------------------------------------------*/

.fees-anchor-target {
    scroll-margin-top: 1rem;
}

.clients-anchor-target {
    scroll-margin-top: .175rem;
}

/*--------------------------------------------------------------
# Price Cards
--------------------------------------------------------------*/

.price-card {
    background: var(--ee-dark-bg);
    border: 0;
    border-radius: 0;
    color: var(--ee-white);
    overflow: hidden;
}

.price-card img {
    display: block;
    width: 100%;
    height: auto;
}

.price-card .card-body {
    padding: 1.5rem;
}

.price-card h3 {
    color: var(--ee-white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.price-card .display-4 {
    color: var(--ee-white);
    line-height: 1;
}

.price-description {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,.67);
    font-weight: 600;
    line-height: 1;
}

.price-card .display-4 + .price-description {
    margin-top: .25rem;
}

.price-currency {
    font-size: .5em;
    font-weight: 600;
    vertical-align: .5em;
}

/*--------------------------------------------------------------
# Fees CTA
--------------------------------------------------------------*/

.fees-cta {
    background: var(--ee-dark-bg);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients-jump-nav .clients-anchor {
    color: var(--ee-dark);
    background: var(--ee-white);
    border: 1px solid var(--ee-dark);
}

.clients-jump-nav .clients-anchor:hover,
.clients-jump-nav .clients-anchor:focus {
    color: var(--ee-dark);
    background: #e8e8e8;
}

.clients-jump-nav .clients-anchor:active {
    color: var(--ee-dark);
    background: #ddd;
}

.clients-jump-nav .clients-anchor.active {
    color: var(--ee-white);
    background: var(--ee-dark);
}

/*--------------------------------------------------------------
# Baby Reveal
--------------------------------------------------------------*/

.baby-section {
    overflow-x: clip;
}

.baby-wrapper {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content img {
    display: block;
    margin: 0 auto 1.5rem;
    width: auto;
    height: 75px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--ee-dark);
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--ee-dark);
}

.testimonial-content cite span {
    display: block;
    margin-top: .25rem;
    font-size: .95rem;
    font-weight: 400;
    color: #6c757d;
}

/*--------------------------------------------------------------
# Five-Star Ratings
--------------------------------------------------------------*/

.rating-slide img {
    display: block;
    margin: 0 auto;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--ee-red);
    letter-spacing: .1rem;
    line-height: 1;
}

.rating-slide p {
    margin: 0;
    font-style: italic;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

.form-card {
    padding: 1.5rem;
    background: var(--ee-white);
    box-shadow: 0 0 15px rgba(0,0,0,.25);
}

@media (max-width: 767.98px) {
    .form-card {
        padding: 1.5rem;
    }
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    margin-bottom: .5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-section {
    display: flex;
    align-items: center;
    margin: 1rem 0 0;
    font-weight: 200;
    color: #555;
}

.form-section::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-left: 1rem;
    background: var(--ee-heading-line);
}

.form-label {
    font-weight: 600;
}

.form-control,
.form-select {
    font-family: inherit;
    color: var(--ee-dark);
    background-color: var(--ee-input-bg);
    border: 1px solid var(--ee-heading-line);
    border-radius: 0;
    transition:
        border-color var(--ee-transition),
        box-shadow var(--ee-transition),
        background-color var(--ee-transition);
}

.form-select option {
    color: var(--ee-dark);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--ee-red);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ee-red);
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(204,51,51,.12);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled,
.form-select:disabled {
    background-color: #f8f9fa;
}

.invalid-feedback {
    font-size: .875rem;
}

.btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: none;
}

/*--------------------------------------------------------------
# Completed Field
--------------------------------------------------------------*/

.form-control.filled:valid,
.form-select.filled:valid {
    background-color: #F0FFF0;
    border-color: var(--ee-heading-line);
}

.form-control.filled:valid:focus,
.form-select.filled:valid:focus {
    background-color: #F0FFF0;
    border-color: var(--ee-red);
    box-shadow: 0 0 0 .2rem rgba(204,51,51,.12);
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--ee-heading-line);
    background-image: none;
}

.time_pick:focus-within .form-control {
    border-color: var(--ee-red);
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(204,51,51,.12);
}

.alert {
    border-radius: 0;
}

.alert-success {
    color: #155724;
    background-color: #eef9f1;
    border-color: #b9e2c3;
}

textarea.form-control {
    min-height: 220px;
    line-height: 1.6;
    resize: vertical;
}

.form-label span.text-brand {
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1;
    vertical-align: text-top;
}

/*--------------------------------------------------------------
# Flatpickr
--------------------------------------------------------------*/

.flatpickr-calendar {
    border: 1px solid var(--ee-heading-line);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    z-index: 1019 !important;
}

.flatpickr-calendar.open,
.flatpickr-calendar.animate.open {
    animation: flatpickrFadeIn var(--ee-transition);
}

@keyframes flatpickrFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.flatpickr-day {
    border-radius: 0;
    transition:
        background-color var(--ee-transition),
        border-color var(--ee-transition),
        color var(--ee-transition);
}

.flatpickr-day:hover {
    background: #F5F5F5;
}

.flatpickr-day.today {
    border-color: var(--ee-red);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--ee-red);
    border-color: var(--ee-red);
}

.was-validated .flatpickr-input:invalid + .invalid-feedback {
    display: block;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-phone {
    display: inline-block;
    margin-top: .5rem;
    color: var(--ee-dark);
    text-decoration: none;
    transition: color var(--ee-transition);
}

.contact-phone:hover,
.contact-phone:focus {
    color: var(--ee-red);
}

.contact-social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    color: var(--ee-white);
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 0;
    transition:
        transform var(--ee-transition),
        box-shadow var(--ee-transition),
        filter var(--ee-transition);
}

.contact-social-icon.facebook {
    background: #1877F2;
}

.contact-social-icon.instagram {
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}

.contact-social-icon:hover,
.contact-social-icon:focus {
    color: var(--ee-white);
    filter: brightness(.85);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
    background: linear-gradient(
        to bottom,
        var(--ee-footer-top) 0%,
        var(--ee-footer-bottom) 100%
    );
    color: var(--ee-footer-text);
}

/* Homepage Only */
.home .site-footer {
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}

.home .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,.15);
}

.site-footer h2 {
    margin-bottom: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ee-white);
}

.footer-swiper,
.footer-buttons {
    margin-top: 1.5rem;
}

.footer-swiper .swiper-slide {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-swiper img {
    width: var(--ee-footer-image-size);
    height: var(--ee-footer-image-size);
    object-fit: cover;
    flex-shrink: 0;
    border: 0;
    outline: 1px solid rgba(0,0,0,.25);
    box-shadow: 0 2px 4px rgba(0,0,0,.25);
}

.footer-swiper p {
    margin: 0;
    line-height: 1.6;
}

.footer-btn {
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: var(--ee-white);
    --bs-btn-active-bg: #656565;
    --bs-btn-active-border-color: #585858;
    display: block;
    width: 100%;
    padding: .875rem 1.5rem;
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: .05em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--ee-white);
    text-shadow: 0 -1px 0 rgba(0,0,0,.30);
    background: linear-gradient(to bottom, #707070 0%, #5a5a5a 100%);
    border: 1px solid #4d4d4d;
    border-radius: 0;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 1px 2px rgba(0,0,0,.20);
    transition:
        background var(--ee-transition),
        border-color var(--ee-transition),
        box-shadow var(--ee-transition);
}

.footer-btn:hover,
.footer-btn:focus,
.footer-btn:focus-visible {
    color: var(--ee-white);
    background: linear-gradient(to bottom, #7b7b7b 0%, #656565 100%);
    border-color: #585858;
    outline: 0;
}

.footer-btn:active,
.footer-btn.active {
    color: var(--ee-white);
    background: linear-gradient(to bottom, #656565 0%, #585858 100%);
    border-color: #585858;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,.20),
        0 1px 2px rgba(0,0,0,.20);
}

.footer-bottom {
    margin-top: 1.5rem;
}

.footer-trust {
    max-width: 450px;
    font-size: .875rem;
    margin-inline: auto;
    text-align: center;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ee-footer-muted);
}

.footer-stat {
    font-size: 1.25em;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: .5rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-contact a {
    color: var(--ee-footer-link);
    text-decoration: none;
    transition: color var(--ee-transition);
}

.footer-contact a:hover,
.footer-contact a:focus {
    color: var(--ee-white);
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-divider {
    height: 1px;
    margin: .75rem 0;
    border: 0;
    opacity: 1;

    background-image: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
}

.copyright {
    background: var(--ee-dark-bg);
    padding: 1rem 0;
    color: rgba(255,255,255,.45);
    font-size: .9rem;
}

/* Desktop footer balance */
@media (min-width: 992px) {
    .footer-cta {
        display: flex;
        flex-direction: column;
        min-height: calc(var(--ee-footer-image-size) + 1.5rem + 2rem);
    }

    .footer-bottom {
        margin-top: auto;
    }
}

/* md and smaller */
@media (max-width: 991.98px) {
    .footer-bottom {
        margin-top: 1rem;
    }

    .footer-trust {
        margin-bottom: .5rem;
    }
}

/* Footer Responsive */
@media (max-width: 575.98px) {
    .footer-swiper .swiper-slide {
        display: block;
        text-align: center;
    }

    .footer-swiper img {
        margin-bottom: 1rem;
    }

    .footer-contact {
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (min-width: 576px) {
    .footer-buttons {
        --bs-gutter-y: 0;
    }
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    right: .5rem;
    bottom: .5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--ee-dark);
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition:
        opacity var(--ee-transition),
        visibility var(--ee-transition),
        transform .35s ease-out,
        color var(--ee-transition),
        background var(--ee-transition),
        box-shadow var(--ee-transition);
    z-index: 1030;
    pointer-events: none;
}

.scroll-top.no-transition {
    transition: none;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top.show:hover,
.scroll-top.show:focus {
    color: var(--ee-dark);
    background: rgba(255,255,255,.75);
    box-shadow: 0 4px 10px rgba(0,0,0,.20);
}

.scroll-top i {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    transition: transform .2s ease-out;
}

.scroll-top.show:hover i,
.scroll-top.show:focus i {
    transform: translateY(-4px);
}

.scroll-top:focus-visible {
    outline: 2px solid var(--ee-red);
    outline-offset: 4px;
}

.scroll-progress {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-track,
.scroll-indicator {
    fill: none;
    stroke-width: 3;
}

.scroll-track {
    stroke: rgba(33,37,41,.12);
}

.scroll-indicator {
    stroke: var(--ee-red);
    stroke-linecap: round;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    transition: stroke-dashoffset .2s ease-out;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .caricaturists-swiper {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px),
       (min-width: 1200px) {
    .choose-us-gallery {
        margin-top: .75rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .clients-jump-nav .d-md-flex {
        gap: .25rem !important;
    }

    .clients-jump-nav .clients-anchor {
        --bs-btn-padding-y: .25rem;
        --bs-btn-padding-x: .4rem;
        --bs-btn-font-size: .75rem;
    }
}