/* Global */
:root {
    /* color for the text when the site secondary color has the opposite brightness vs the primary & highlight colors. Could replace with var(--color-theme-btn-text) if they all match (primary, secondary, highlight) */
    --cw-secondary-text: #000;
}

.container {
    max-width: 1500px;
}

.cw-muted {
    color: #CCCCCC;
}

.btn-secondary,
.btn-secondary:focus {
    color: var(--cw-secondary-text);
}

.angled-btn {
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    padding: 0.75rem 2rem;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.angled-btn:hover {
    background: var(--inventory-secondary) 3;
    color: #fff;
}

/* Header */
.cw-header {
    padding: 1em 0;
    background: var(--header-background);
    color: var(--header-text);
    background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/7BECC7933F12BF903E63B16EEA175B0E.png);
    background-size: 100%;
}

.cw-header .container {
    max-width: 1320px;
}

.cw-header i {
    font-size: 1.5rem;
    margin-bottom: .75em;
}

.cw-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

.cw-header a {
    color: inherit;
}

.cw-header a:hover {
    color: var(--color-theme-highlight);
}

.cw-header img {
    width: 300px;
    margin-bottom: 1rem;
}
@media (min-width: 1200px) {
    .cw-header img {
    width: 350px;
    }
}

.header .navbar,
.header .navbar.bg-primary {
    border-top: 5px solid var(--color-theme-border);
}

.header .navbar .active>.nav-link {
    color: #000 !important;
}

.header .navbar .dropdown-item.active {
    color: #000 !important;
}

@media (min-width: 330px) {
    .cw-header h2 {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .cw-header img {
        margin-bottom: 0;
    }
}

@media (min-width: 1400px) {
    .cw-header h2 {
        font-size: 1.3rem;
    }
}

.title+.text {
    margin-top: 0;
}

section:not(.page-home) .title {
    position: relative;
    margin-bottom: 0rem;
    background: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/ACB5A22B48F9EB938CD632B6FB8437A1.jpg") no-repeat center;
    background-size: cover;
    text-align: center;
}

section:not(.page-home) .title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section:not(.page-home) .title .title-heading {
    position: relative;
    z-index: 1;
    margin: auto;
    padding: 2rem 0;
    color: #fff;
    text-shadow: 0 0 4px #000;
}

section:not(.page-home) .title h1 {
    font-size: 2rem;
}

section:not(.page-home) .form {
    padding-top: 1rem;
}

/* Hero */
.cw-wood {
    background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/D62B00BAB25BFF9A3FFCA6F90777C0D5.jpg);
    background-size: cover;
}

.cw-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
    text-align: center;
}

/* Subtle zoom-in effect */
.cw-hero .cw-hero-image {
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    animation: subtleZoom 10s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.09);
    }
}

.cw-hero .container {
    max-width: 1500px;
}

.cw-hero .cw-main-img-text {
    padding: 1.5rem .5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cw-hero .cw-main-img-text h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-weight: 700;
}

.cw-hero .cw-main-img-text .cw-button-group {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
}

.cw-hero .cw-main-img-text .cw-button-group .btn {
    width: 280px;
    max-width: 100%;
}

/* Finance Button */
.cw-wood .cw-finance-btn a {
    text-align: center;
    border: 2px solid #F15F23;
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 30px;
    margin: 0 auto;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    border-radius: 10px;
    -webkit-transition: 200ms;
    -o-transition: 200ms;
    transition: 200ms;
    margin-top: 30px;
    z-index: 10;
    position: relative;
    font-size: 1.1em;
    font-weight: 800;
}

.cw-wood .cw-finance-btn a:hover {
    background-color: #F68C1F;
    border: 2px solid #F68C1F;
    color: #000000;
}

.cw-finance-btn {
    margin-bottom: -3%;
}

@media (min-width: 576px) {
    .cw-hero {
        padding: 3rem 0;
        text-align: left;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        min-height: clamp(350px, 35vw, 650px);
    }



    .cw-hero .cw-main-img-text h1 {
        font-size: 3rem;
    }


}

/* MEDIA 768PX */
@media (min-width: 768px) {
    .cw-wood .cw-finance-btn a {
        font-size: 1.5em;
    }
}

@media(min-width: 800px) {
    .cw-hero .cw-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
    }

    .cw-hero .cw-main-img-text {
        text-align: left;
    }

    .cw-hero .cw-main-img-text .cw-button-group {
        margin-top: 1rem;
        gap: 0.75rem;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .cw-hero .cw-main-img-text h1 {
        font-size: 5rem;
    }
}

.employees-email {
    font-size: 0.85rem;
}

@media (min-width: 992px) {
    section:not(.page-home) .title .title-heading {
        padding: 3.5rem 0;
    }

    section:not(.page-home) .title h1 {
        font-size: 2.5rem;
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--color-theme-secondary);
}

/* Why Choose Section */
.why-choose-us {
    background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/6528323A391718ED24262C6A824CB6A4.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    margin: 2% 0;
}

@media (max-width: 991px) {
    .why-choose-us hr {
        width: 60%;
    }

    .why-choose-us .btn {
        display: inline-block;
        margin: 15px auto 0;
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--color-theme-secondary);
}

.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-left.appear,
.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-up-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon i {
    color: var(--color-theme-background);
    transition: transform 0.3s ease, color 0.3s ease;
}

.content-box:hover .icon i {
    transform: scale(1.1);
    color: #000;
}

/* what we do cards */
.what-we-do {
    padding: 2rem 0 1rem;
}

.what-we-do .cw-underline {
    width: 50px;
    height: 3px;
    background: var(--color-theme-secondary);
    border-radius: 2px;
    margin: 0.5rem auto;
}

.what-we-do .cw-img-stretch {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    max-height: 420px;
}

.what-we-do h5 {
    font-size: 2.5rem;
}

.what-we-do h5 a {
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.what-we-do h5 a:hover {
    transform: scale(1.15);
}

/* unified colored background cards */
.what-we-do .service-card {
    height: 100%;
    background-color: var(--color-theme-secondary);
    color: var(--cw-secondary-text);
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.what-we-do .service-card h5,
.what-we-do .service-card p {
    color: inherit;
}

@media (min-width: 576px) {
    .what-we-do .service-card {
        padding: 1.5rem 2rem;
    }
}

@media (min-width: 992px) {
    .what-we-do .service-card {
        padding: 1.5rem 3rem;
    }
}

/* Why Choose Us */
.service-text {
    padding-left: 2rem;
    padding-right: 2rem;
}

.cw-letters-spaced {
    letter-spacing: 2px;
}

.about-dealer {
    background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/6528323A391718ED24262C6A824CB6A4.jpg");
    padding-top: 1rem;
    padding-bottom: 4rem;
    color: #fff;
}

.about-dealer .overlay {
    z-index: 1;
}

.about-dealer .cw-intro {
    position: relative;
    z-index: 2;
}

.about-dealer .big-stat {
    z-index: 3;
}

.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

@media (max-width: 991.98px) {
    .about-dealer .big-stat {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (min-width: 992px) {
    .about-dealer p {
        max-width: 700px;
        line-height: 1.6;
    }
}

/* Ensure button never overlaps */
@media (max-width: 991px) {
    .about-dealer .btn {
        display: block;
        width: max-content;
        margin: 20px auto 0;
    }
}

/* parallax */
.cw-parallax-about {
    padding: 4rem 0;
    background: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/63964A9366D3A0747F97F7BCA49D60A8.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cw-parallax-about:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cw-parallax-about h5 {
    font-size: 2.5em;
}

.cw-parallax-about [class^="col"] {
    z-index: 1;
}

@media (min-width: 768px) {
    .cw-parallax-about {
        padding: 6rem 0;
    }

    .cw-parallax-about h3 {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .cw-parallax-about {
        background-attachment: fixed;
    }
}

@media (min-width: 1340px) {
    .cw-parallax-about h3 {
        font-size: 3rem;
    }
}

/* service page */
.maintenance-step {
    background-color: var(--color-theme-secondary);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--cw-secondary-text);
    transition: transform 0.3s ease;
}

.maintenance-step:hover {
    transform: translateY(-5px);
}

.maintenance-step i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
    display: block;
}

/* -------------------- Testimonial ---------------------- */

/* Testimonial Section */
.cw-testimonial-section {
    background-color: #000;
    color: #fff;
    position: relative;
}

.cw-testimonial-section .cw-test-wrapper {
    width: 100%;
    text-align: left;
    padding: 0 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cw-testimonial-section .cw-test-card {
    width: 100%;
    /* max-width: 400px; */
    box-sizing: border-box;
    margin: 0;
    padding: 1rem;
    position: relative;
    text-align: center;
}


.cw-testimonial-section .cw-text-column {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.cw-testimonial-section .custom-arrow {
    background: none;
    border: none;
    position: absolute;
    top: 100%;
    transform: translateY(-10%);
    z-index: 2;
    width: 30px;
    height: 30px;
    padding: 3px 3px;
}


.cw-testimonial-section .carousel-control-prev.custom-arrow {
    left: 10px;
}

.cw-testimonial-section .carousel-control-next.custom-arrow {
    right: 10px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .cw-testimonial-section .custom-arrow {
        top: 50%;
        transform: translateY(-50%);
    }

    .cw-testimonial-section .cw-top-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }

    .cw-testimonial-section .cw-test-wrapper {
        padding: 0 30px;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {

    .cw-testimonial-section .cw-text-column {
        position: relative;
        padding-top: 3rem;
        padding-bottom: 3rem;
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-flow: column;
    }

    .cw-testimonial-section .cw-text-column:before {
        content: "";
        position: absolute;
        z-index: 5;
        right: calc(100% - 1px);
        top: 0;
        bottom: 0;
        width: 100px;
        background: #000;
        pointer-events: none;
        -webkit-clip-path: polygon(90% 0%, 100% 0%, 100% 100%, 0 100%);
        clip-path: polygon(90% 0%, 100% 0%, 100% 100%, 0 100%);
    }

    .cw-testimonial-section .cw-test-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .cw-testimonial-section .cw-test-card {
        text-align: left;
    }

    .cw-testimonial-section .carousel-control-prev.custom-arrow {
        left: 1px;
    }

    .cw-testimonial-section .carousel-control-next.custom-arrow {
        right: 1px;
    }

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


/* -------------------- SECTIONTITLE ---------------------- */

.inventoryslideshow .btn-primary {
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: .6em 2em;
}

/* Inventory SRP */
.page-cars-for-sale .breadcrumb-container .breadcrumb-item.active {
    color: inherit;
    opacity: .5;
}

.inventory .card-header {
    background: var(--inventory-secondary);
    color: var(--cw-secondary-text);
}

.inventory .btn-link.btn-clear-filter {
    color: var(--cw-secondary-text);
}

/* VDP vehicle details */

/* Financing button and most modal buttons */
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:focus {
    background-color: var(--color-theme-primary);
    color: var(--color-theme-text-btn);
    border-color: var(--color-theme-primary)
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:hover,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:hover:focus,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:not([disabled]):not(.disabled).active,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:not([disabled]):not(.disabled):active,
.inventorydetails .vdp-module-canvas-razor-wrapper .show>.btn-secondary.dropdown-toggle {
    background-color: var(--color-theme-secondary);
    color: var(--cw-secondary-text) !important;
    border-color: var(--color-theme-secondary)
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary {
    border-color: var(--color-theme-border);
    color: var(--color-theme-text);
    background-color: var(--color-theme-background);
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:hover,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:hover:focus,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:not([disabled]):not(.disabled).active,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:not([disabled]):not(.disabled):active,
.inventorydetails .vdp-module-canvas-razor-wrapper .show>.btn-outline-secondary.dropdown-toggle {
    background-color: var(--color-theme-secondary);
    color: var(--cw-secondary-text) !important
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:before {
    background: var(--color-theme-secondary)
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-check:checked+.btn-outline-secondary {
    color: var(--color-theme-text-btn);
    background-color: var(--color-theme-primary);
    border-color: var(--color-theme-primary);
}

/* .vdp__veh__info__mod .veh__info__item {
	background-color: #000 !important;
} */
.inventorydetails .vdp__veh__info__mod .veh__info__item:nth-child(even)[VehicleInfoWidgetCssScope] {
    background: rgba(150, 150, 150, 0.1)
}

.inventorydetails .vdp__title__mod .veh__price[VehicleHeadingWidgetCssScope] {
    color: var(--color-theme-text);
}

body [b-h85p0r54yf] .businessHours .sn_business_open,
body [b-h85p0r54yf] .businessHours .sn_business_close {
    color: var(--cw-secondary-text);
}

body .hours__status.hours__status__closed,
body .hours__status.hours__status__closed[b-aadgpb1mmy],
body .sn_business_close[b-aadgpb1mmy] {
    color: var(--cw-secondary-text);
}

/* Footer */
.cw-footer {
    padding: 4rem 0;
    background-color: #000;
    color: #fff;
    text-align: left;
}

.cw-footer::before {
    content: "";
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    opacity: 7%;
}

.cw-footer h5 {
    margin-bottom: 1rem;
    color: inherit;
    font-size: 2rem;
}

.cw-footer img {
    width: 250px;
}

.cw-footer iframe {
    width: 100%;
}

.cw-footer a {
    color: #fff;
}

.cw-footer a:hover {
    color: var(--color-theme-secondary);
}

.cw-footer .cw-address,
.cw-footer .cw-phone {
    position: relative;
    line-height: 1.35;
    font-size: 1.1rem;
}

.cw-footer .cw-address:before {
    font-family: FontAwesome;
    content: "\f3c5";
    display: inline-block;
    padding-right: 0.5rem;
    color: inherit;
}

.cw-footer .cw-phone:before {
    font-family: FontAwesome;
    content: "\f2a0";
    display: inline-block;
    padding-right: 0.5rem;
    color: inherit;
}

.cw-footerMenu a {
    display: block;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.cw-footerMenu a:hover,
.cw-footer .cw-phone:hover {
    color: var(--color-theme-secondary);
}

.cw-footer .business-hours {
    font-size: 20px;
    margin-top: 1rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.17;
    margin-bottom: 1rem;
    color: var(--color-theme-secondary);
    padding-left: 0;
    border: none;
    font-size: 1.25rem;
}

h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.2px;
    /* margin-bottom: 1rem; */
    color: #fff;
    padding-left: 0;
    border: none;
    font-size: 1.25rem;
    
}


.cw-footer .business-hours .today {
    color: var(--color-theme-secondary);
}

@media (min-width: 768px) {
    .cw-footer {
        text-align: left;
    }
}

/* default footer */
.footer {
    padding-top: 0;
}

footer>.container {
    display: none;
}


/*get pre-qualified text:hover*/

.btn-pre-qualified:hover {
    color: #e9e9e9 !important;
}

.page-home button.btn.btn-pre-qualified:hover[b-zeb2b4pwk5] {
    color: #e9e9e9 !important;
}


.page-cars-for-sale button.btn.btn-pre-qualified:hover[b-zeb2b4pwk5] {
    color: #e9e9e9 !important;
}

/* Buttons */
.cw-main-buttons {
    background: #f25f24;
    background: -moz-linear-gradient(top, #333 0%, #333 75%, #1e1e1e 75%, #1e1e1e 100%);
    background: -webkit-linear-gradient(top, #333 0%, #333 75%, #1e1e1e 75%, #1e1e1e 100%);
    background: linear-gradient(to bottom, #333 0%, #333 75%, #1e1e1e 75%, #1e1e1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333', endColorstr='#1e1e1e ', GradientType=0);
    padding: 2% 0;
}

.cw-main-buttons .row {
    max-width: 1320px;
    margin: auto;
}

.cw-btn {
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.cw-btn::after {
    content: '';
    position: absolute;
    background: #1f1f1f;
    box-shadow: 0px 0px 0 12px #1f1f1f;
    border: 4px solid var(--color-theme-secondary);
    width: 200px;
    height: 100%;
    border-radius: 50%;
    padding: 7rem;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cw-btn i {
    font-size: 34px;
    margin-bottom: 17px;
    position: relative;
    top: 0;
    transition: .2s ease-in-out;
}

.cw-btn a:hover i {
    color: var(--color-theme-primary) !important;
    top: -5px;
    transition: .2s ease-in-out;
}

.cw-btn a:hover {
    color: #fff;
}

.cw-btn .btn-text {
    text-transform: uppercase;
    line-height: 30px;
}

.btn-text .big {
    font-size: 2rem;
    font-weight: 800;
}


@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");

.footer {
    padding-bottom: 6em;
}

.cw-cta-wiget {
    position: fixed;
    z-index: 10001;
    bottom: 1em;
    right: 1em;
}

.cw-cta-wiget .card {
    background-color: var(--color-theme-primary);
    border-radius: 10px;
    padding: 0.2em;
}

.cw-cta-wiget .card .card-body {
    border: 1px solid #fff;
    background-color: #222;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0.3em;
}

.cw-cta-wiget p {
    color: #fff;
    margin: 0.3em 0.5em;
    font-weight: 700;
    animation: cw-shake 2s infinite;
}

@keyframes cw-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateY(-3px);
    }

    35% {
        transform: translateY(-3px) rotate(6deg);
    }

    55% {
        transform: translateY(-3px) rotate(-6deg);
    }

    65% {
        transform: translateY(-3px) rotate(6deg);
    }

    75% {
        transform: translateY(-3px) rotate(-6deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.cw-cta-wiget .material-symbols-outlined {
    font-variation-settings: "FILL"0, "wght"400, "GRAD"0, "opsz"24;
}

.cw-cta-wiget a {
    color: #fff;
    transition: 0.3s;
    width: auto;
    height: 23px;
    margin: 0.3em 0.5em;
}

.cw-cta-wiget a:hover {
    color: var(--color-theme-primary);
}

.cw-cta-wiget svg {
    fill: #fff;
    transition: 0.3s;
}

.cw-cta-wiget a:hover svg {
    fill: var(--color-theme-primary);
    width: 23px;
    height: 23px;
}