:root {
    --White: #ffffff;
    --Red: #BB7659;
    --LightRed: #ff6666;
    --Black: #000000;
    --Black-1: #222222;
    --Grey-1: #F0EDEA;
    --Btn-Focus-Color: #333333;
    --Btn-Light-Focus-Color: #E0E0E0;
    --Btn-Active-Bg: #C47A6E;
}

* {
    transition: all 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Visby CF', sans-serif;
    color: var(--Black) !important;
    font-weight: 400;
    background-color: var(--Grey-1);
}

cite {
    font-style: normal;
}

.debug {padding: 20px; font-size: 13px; background-color: #fff; color: #444;}
.debug .d-title {color: #ff4949; font-size: 11px; font-weight: bold; margin-bottom: 10px;}

.container {
    max-width: 1224px !important;
}

.container, .row {
    --bs-gutter-x: 40px;
}

.color-primary {
    color: var(--Red);
}

.owl-custom-prev,
.owl-custom-next {
    position: relative;
    width: 121px;
    height: 45px;
    border-radius: 76px;
    background: var(--White);
    cursor: pointer;
    outline: none;
    border: solid 2px var(--White);
}

.owl-custom-prev:focus,
.owl-custom-next:focus {
    border: solid 2px var(--Btn-Focus-Color);
}

.owl-custom-prev:after,
.owl-custom-next:after {
    content: url("../icons/review-slider-arrow.png");
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0 !important;
}

.owl-custom-next:after {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.owl-custom-prev span,
.owl-custom-next span {
    display: none !important;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    gap: 10px;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.owl-stage-outer {
    /*margin-top: 20px;*/
}
.owl-carousel .owl-item img {
    width: auto;
}


/* BUTTONS */
.main-btn {
    display: flex;
    height: 80px;
    padding: 0 55px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    background-color: var(--Red);
    border-radius: 76px;
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.15);
    color: var(--White);
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    cursor: pointer;
    border: 2px solid var(--Red);
}

.main-btn:hover,
.main-btn:focus,
.main-btn.main-btn--light-outline:focus {
    background-color: var(--Btn-Active-Bg);
}

.main-btn:focus {
    border: 2px solid var(--Btn-Focus-Color);
}

.main-btn.main-btn--light-outline:focus {
    border: 2px solid var(--Btn-Light-Focus-Color);
}

.secondary-btn {
    background: var(--Black-1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 53px;
    border-radius: 76px;
    color: var(--White);
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    outline: none;
    border: 2px solid var(--Black-1);
}

.secondary-btn:hover,
.secondary-btn:focus {
    background-color: #323232;
}

.secondary-btn:focus {
    border: 2px solid var(--Btn-Light-Focus-Color);
}

.rounded-btn {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--Red);
}

.outline-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding: 0;
    background-color: transparent;
    border: 1px solid rgb(34, 34, 34);
    border-radius: 76px;
    color: rgb(34, 34, 34);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.outline-btn:hover,
.outline-btn:focus,
.outline-btn.active {
    background-color: var(--Red);
    border-color: var(--Red);
    color: var(--White);
}

.link-1 {
    color: var(--Red);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.play-button {
    outline: none;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--White);
    cursor: pointer;
    position: relative;
    border: none;
}

.play-button:after {
    content: url("../images/play-icon.svg");
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    margin-top: 3px;
    transform: translate(-50%, -50%);
}

.play-button:hover,
.play-button:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.full-width-button {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
    background-color: var(--Red);
    cursor: pointer;
    border: 2px solid var(--Red);
}

.full-width-button:focus {
    background-color: var(--Btn-Active-Bg);
    border: 2px solid var(--Btn-Focus-Color);
}

.link-1:hover,
.link-1:focus {
    opacity: 0.85;
}

/* Content */
.main-title {
    color: var(--Black-1);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: capitalize;
    text-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
}

.text-1 {
    color: var(--Black);
    font-size: 20px;
    font-weight: 300;
}

footer .text-1 {
    font-size: 16px;
}

.section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.container {
    max-width: 1240px !important;
}

.container, .row {
    --bs-gutter-x: 40px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    padding: 35px 0;
    z-index: 10;
}
@media screen and (max-width: 767px) {
    .header {
        padding: 30px 0;
    }
}

.active-menu__menu {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    height: 100vh;
}

.active-menu__right-menu {
    height: 100vh;
    padding: 80px 160px 80px 80px;
}

.right-menu__link {
    width: 320px;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    color: var(--Black-1);
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
}

.right-menu__link:hover {
    text-decoration: underline;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: var(--Black);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    right: 0;
    top: 0;
    height: 100vh;
    width: 110px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.active-menu__link {
    display: flex;
    align-items: center;
    height: 118px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    text-decoration: none;
    color: var(--Black-1);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}
@media screen and (max-width: 767px) {
    .active-menu__link {
        padding-right: 70px;
    }
}

.menu-icon {
    cursor: pointer;
}

.menu__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 1px solid var(--Black);
    text-decoration: none;
}

.header__subtitle {
    font-size: 50px;
}

.active-menu {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/active-menu-bg.png") no-repeat;
    background-size: cover;
    z-index: 15;
    opacity: 0;
    transform: translateX(-100%);
    transition: all .25s linear;
}

.menu-icon__container {
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
}

.active-menu.active {
    opacity: 1;
    left: 0;
    transform: translateX(0);
    transition: all .25s linear;
}

.close-btn span {
    transform: rotate(-90deg);
}

/* FOOTER */
.footer__links-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 150%;
    margin-bottom: 17px;
}

.footer__link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: var(--Black);
    margin-bottom: 15px;
}

.footer__link:last-child {
    margin-bottom: 0;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__link--text:hover {
    cursor: default;
    text-decoration: none;
}

.footer__subtitle {
    font-size: 16px;
    line-height: 150%;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

.footer-line {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright span {
    color: var(--Red);
    font-weight: 700;
}

.main-input {
    height: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 50px;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* HOME HERO */
.first-screen {
    background-repeat: no-repeat;
    background-size: cover;
}

.first-screen.pages-hero {
    height: 500px;
}

.first-screen.home-hero {
    height: 100vh;
}

.full-width-section {
    margin: 55px 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.full-width-section div {
    height: 100vh;
}

.full-width-section__title span:last-child {
    color: var(--Red);
}

.full-width-section__title {
    width: 100%;
    position: relative;
    height: 150px;
}

.full-width-section .main-btn {
    position: relative;
    bottom: 0;
}


.fitting-box-header {
    display: flex;
    align-items: center;
    height: 115px;
    background-color: var(--White);
    color: var(--Black-1);
    font-size: 42px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.274px;
    padding: 33px;
}

.fitting-box__btn {
    text-decoration: none;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
    background-color: var(--Red);
    cursor: pointer;
    border: 2px solid var(--Red);
}

.fitting-box__btn:focus {
    background-color: var(--Btn-Active-Bg);
    border: 2px solid var(--Btn-Focus-Color);
}



.space-btn {
    position: relative;
    height: 80px;
    display: flex;
    padding: 23px 30px;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    color: var(--Black-1);
    background-color: transparent;
    border: 1px solid var(--Black-1);
    cursor: pointer;
    text-decoration: none;
    outline: none;
    width: 100%;
}

.space-btn:hover,
.space-btn.active,
.space-btn:focus {
    background: var(--Red);
    color: var(--White);
    border-color: var(--Red);
}

.space-btn:after {
    content: url("../icons/link.png");
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.space-btn:hover:after,
.space-btn:focus:after,
.space-btn.active:after {
    content: url("../icons/link-white.png");
}

.video-box {
    position: relative;
}

.play-video-button {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    background: url("../icons/watch-video-btn.svg") no-repeat center;
    background-size: cover;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    outline: none;
    border: 0;
    z-index: 2;
}

.play-video-button.small {
    top: 50%;
    background: url("../icons/play-video.svg") no-repeat center;
    width: 100px;
    height: 100px;
}

.play-video-button:focus {
    border: 2px solid var(--Btn-Light-Focus-Color);
}

.video-slider .owl-stage-outer {
    /*padding-bottom: 100px;*/
}

.video-container {
    /*padding: 45.8% 0 0 0;*/
    position:absolute;
    top: -50%;
    bottom: -50%;
    left:0;
    width:100%;
    height:100%;
    margin: auto;
}

.video-container.sq {
    padding: 65.8% 0 0 0;
}

.video-box-inner {
    overflow: hidden;
    position: relative;
}
.video-item {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.quote-box {
    margin: 0 50px;
    padding: 30px 47px;
    position: relative;
    z-index: 2;
    margin-top: -110px;
    background-color: var(--Red);
}

.quote-box__author {
    color: var(--White);
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
}

.video-box.paused .video-item {
    opacity: 0;
    display: none;
}
.video-box:not(.paused) .video-box__preview,
.video-box:not(.paused) .quote-box,
.video-box:not(.paused) .play-button,
.video-box:not(.paused) .play-video-button {
    opacity: 0 !important;
    z-index: -10;
    position: relative;
}
.video-box .video-box__preview {
    width: 100%;
    max-width: none;
}


.accordion {
    margin-bottom: 15px;
}

.accordion__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 33px 22px 33px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

.accordion__header:after {
    content: "";
    position: absolute;
    left: 33px;
    right: 33px;
    bottom: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}

.accordion__header:focus {
    border-color: solid 2px var(--Btn-Focus-Color);
}

.accordion__content {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.accordion__header.active + .accordion__content,
.accordion__header.active {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
    background-color: var(--White);
}

.accordion__header.active + .accordion__content {
    padding: 22px 33px 41px 33px;
}

.accordion__header.active img {
    transform: rotate(-180deg);
}



.first-screen__title {
    color: var(--White);
    text-shadow: 0 10px 60px rgba(0, 0, 0, 0.30);
    font-size: 80px;
    font-weight: 700;
    line-height: 100%;
}

.first-screen__subtitle {
    color: var(--White);
    text-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
    font-size: 30px;
    font-weight: 500;
    line-height: 150%;
}

.first-screen {
    padding: 61px 0 85px 0;
}

.gallery-desktop {
    display: block;
}

.gallery-mobile {
    display: none;
}

.first-screen__box {
    height: calc(100vh - (50px + 88px));
}

.or-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: var(--White);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    color: var(--Black-1);
    font-size: 38px;
    font-weight: 700;
}

#animatedTextFullWidthScreen {
    opacity: 0;
    transition: none;
    margin-left: 13px;
}

#animatedTextFullWidthScreen.show {
    opacity: 1;
    transform: translateY(0px);
}

.tab-content {
    opacity: 0;
    transition: opacity .3s ease-in;
}

.tab-content.active {
    opacity: 1;
    transition: opacity .3s ease-in;
}

.make-it-own-slider .owl-nav {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
}

.make-it-own-slider .image-title {
    color: var(--White);
    font-size: 40px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.8px;
    position: absolute;
    left: 0;
    bottom: 48px;
    width: 100%;
    padding: 0 200px 0 30px;
}

.make-it-own-slider-arrow-prev,
.make-it-own-slider-arrow-next {
    position: relative;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    background-color: var(--White);
    outline: none;
    border-radius: 50%;
    font-size: 0;
    border: solid 2px var(--White);
}

.make-it-own-slider-arrow-prev:after,
.make-it-own-slider-arrow-next:after {
    content: url("../icons/make-it-own-slider-arrow.svg");
    position: absolute;
    left: 50%;
    top: 50%;
}

.make-it-own-slider-arrow-prev:after {
    transform: translate(-50%, -50%);
}

.make-it-own-slider-arrow-next:after {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.make-it-own-slider-arrow-prev:focus,
.make-it-own-slider-arrow-next:focus {
    border: solid 2px var(--Btn-Focus-Color);
}

.before-after-label {
    background-color: var(--Red);
    color: var(--White);
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding: 30px;
}

@keyframes exitAnimation {
    0%, 40% {
        opacity: 1;
        transform: translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateY(-12px);
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes enterAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1010px) {
    .make-it-own-slider .owl-nav {
        margin-top: -55px;
    }

    .make-it-own-slider .owl-nav:before {
        font-size: 20px;
        left: 10px;
    }

    .make-it-own-slider-arrow-prev,
    .make-it-own-slider-arrow-next {
        width: 40px;
        height: 40px;
    }

    .make-it-own-slider-arrow-prev:after,
    .make-it-own-slider-arrow-next:after {
        content: url("../icons/make-it-own-slider-arrow-mobile.svg");
    }
}


@media screen and (max-width: 992px) {
    .first-screen__title {
        font-size: 50px;
    }

    .fitting-box-header {
        font-size: 20px;
        height: 55px;
    }

    .fitting-box__btn {
        font-size: 14px;
        height: 40px;
    }

    .play-video-button {
        top: 40%;
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .first-screen {
        padding: 50px 0 88px 0;
    }

    .first-screen__subtitle {
        font-size: 20px;
    }

    .accordion__header {
        font-size: 16px;
        padding: 35px 12px;
    }

    .accordion__header.active + .accordion__content {
        font-size: 14px;
        padding: 12px 27px 36px 12px;
    }

    .accordion__header img {
        margin-left: 10px;
    }

    .quote-box {
        margin: -35px 15px 0 15px;
    }

    .accordion__header:after {
        left: 12px;
        right: 16px;
    }

    .fitting-box:first-child {
        margin-bottom: 90px;
    }

    .or-circle {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }

    .space-btn {
        font-size: 16px;
        height: 53px;
    }


    .quote-box {
        padding: 13px 18px;
    }

    #animatedTextFullWidthScreen {
        margin-left: 0;
    }

    .quote-box__author {
        font-size: 16px;
    }

    .quote-box__body {
        font-size: 12px;
    }

    .full-width-section {
        background-repeat: no-repeat;
    }

    .make-it-own-slider .owl-nav {
        padding: 0 50px;
    }

    .before-after-label {
        font-size: 14px;
        padding: 12px;
    }

    .play-video-button {
        top: 45%;
    }
}

@media screen and (max-width: 720px) {
    .make-it-own-slider .owl-nav {
        padding: 0 10px;
    }
}

@media screen and (max-width: 576px) {
    .full-width-section__title {
        height: 200px;
    }

    .play-video-button {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 390px) {
    .gallery-desktop {
        display: none;
    }

    .gallery-mobile {
        display: block;
    }

    .first-screen__title {
        font-size: 40px;
    }

    .make-it-own-slider .owl-nav:before {
        font-size: 16px;
    }

    .play-video-button {
        width: 40px;
        height: 40px;
    }
}


/* REVIEW SLIDER */
body.home #reviews-section {
    padding-top: 15px;
}

.review-slider .owl-stage {
    align-items: unset;
}

.review-vertical-line {
    height: 84px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.16);
}

.review {
    width: 100%;
    max-width: 352px;
    flex-shrink: 0;
    background: var(--White);
    box-shadow: 0 50px 30px -48px rgba(7, 9, 13, 0.08);
    padding: 26px 32px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.review__date {
    color: var(--Red);
    font-size: 11px;
    font-weight: 700;
    line-height: 100%;
}

.review__title {
    color: var(--Black);
    font-size: 16px;
    font-weight: 700;
}

.review__content {
    font-size: 16px;
    flex: 1;
}

.review__author-name {
    font-size: 16px;
    font-weight: 700;
}

.review__author-avatar {
    width: 48px;
    height: 48px;
}


@media screen and (max-width: 1060px) {
    .review {
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .review__author-name {
        font-size: 15px;
    }

    .review__author-avatar {
        width: 44px;
        height: 44px;
    }

    .review {
        padding: 24px 30px;
    }

}

/* LOGO CAROUSEL */
#logo-carousel-section.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.companies-slider {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.companies-slider .owl-stage-outer::before,
.companies-slider .owl-stage-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 1;
}

.companies-slider .owl-stage-outer::before {
    left: 0;
    background: linear-gradient(to right, rgba(240, 237, 234, 1) 0%, transparent 100%);
}

.companies-slider .owl-stage-outer::after {
    right: 0;
    background: linear-gradient(to left, rgba(240, 237, 234, 1) 0%, transparent 100%);
}

.companies-title {
    color: var(--Black-1);
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    margin-right: 25px;
    white-space: nowrap;
}

/* SUBSCRIBE-FORM */
.subscribe-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    font-size: 16px;
    font-weight: 400;
    width: 105px;
}

.subscribe-input {
    padding-right: 115px;
}

.media-button {
    height: 52px;
    border-radius: 30px;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.17);
    background: var(--White);
    color: var(--Black-1);
    font-size: 14px;
    font-weight: 700;
    line-height: 23px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border: none;
}

#gform_fields_4 {
    display: block;
    position: relative;
}
.footer-subscription-form_wrapper {
    position: relative;
}
#gform_fields_4 .ginput_container_email input {
    outline: none !important;
    line-height: 50px !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10) !important;
    background: #FFF !important;
    height: 50px !important;
    padding: 0 125px 0 13px !important;
    color: rgba(0, 0, 0, 0.60) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    width: 100% !important;
    box-shadow: none !important;
}
#gform_fields_4 .ginput_container_email input:first-letter {
    text-transform: uppercase !important;
}
#gform_fields_4 .ginput_container_email input:focus {
    border-bottom: 1px solid var(--Btn-Focus-Color) !important;
}
.footer-subscription-form_wrapper label {
    display: none !important;
}
#gform_fields_4 #field_submit {
    position: absolute;
    right: 5px;
    top: 5px;
}
#gform_fields_4 #field_submit input[type="submit"] {
    display: flex !important;
    /*padding: 0 55px !important;*/
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    outline: none !important;
    background-color: var(--Red) !important;
    border-radius: 76px !important;
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.15) !important;
    color: var(--White) !important;
    line-height: 100% !important;
    text-transform: capitalize !important;
    cursor: pointer !important;
    border: 2px solid var(--Red) !important;
    height: 35px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: 105px !important;
}
#gform_fields_4 #field_submit input[type="submit"]:hover,
#gform_fields_4 #field_submit input[type="submit"]:focus {
    background-color: var(--Btn-Active-Bg) !important;
}
#gform_fields_4 #field_submit input[type="submit"]:focus {
    border: 2px solid var(--Btn-Focus-Color) !important;
}

@media screen and (max-width: 576px) {
    .companies-slider .owl-stage-outer::before {
        background: none;
    }

    .companies-slider .owl-stage-outer::after {
        background: none;
    }
}

/* FORM */
.main-label {
    color: rgba(0, 0, 0, 0.60);
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-label.required.main-label:after {
    content: "*";
    color: rgba(255, 0, 0, 0.60);
    font-size: 22px;
    font-weight: 500;
    margin-left: 4px;
}

.radio-label {
    font-size: 20px;
    font-weight: 400;
}

.radio-label.required.main-label:after {
    content: none;
}

.main-input {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    height: 50px;
    padding: 0 13px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 500;
    outline: none;
}

.main-input:first-letter {
    text-transform: uppercase;
}

.main-input:focus {
    border: 1px solid var(--Btn-Focus-Color);
}

.radio-btn {
    position: relative;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid var(--Red);
    margin-right: 15px;
}

input[type=radio]:checked + .radio-btn:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--Red);
    transform: translate(-50%, -50%);
}

.custom-checkbox {
    width: 23px;
    height: 23px;
    border: 1px solid #BB7659;
    margin-right: 14px;
    position: relative;
}

input[type=checkbox]:checked + .custom-checkbox:after {
    content: url("../icons/checkbox.svg");
    position: absolute;
    top: 1px;
    left: 1px;
}

.textarea {
    height: auto;
    min-height: 50px;
    resize: vertical;
    line-height: 110%;
    padding: 13px;
}

/* ARROWS */
.main-prev-arrow,
.main-next-arrow {
    position: relative;
    width: 121px;
    height: 45px;
    border-radius: 76px;
    background: var(--White);
    cursor: pointer;
    outline: none;
    border: solid 2px var(--White);
}

.main-prev-arrow:focus,
.main-next-arrow:focus,
.main-prev-arrow:hover,
.main-next-arrow:hover {
    background-color: var(--Red);
}

.main-prev-arrow:focus.main-prev-arrow:after,
.main-next-arrow:focus.main-next-arrow:after,
.main-prev-arrow:hover.main-prev-arrow:after,
.main-next-arrow:hover.main-next-arrow:after {
    content: url("../icons/review-slider-arrow-white.svg");
}

.main-prev-arrow:after,
.main-next-arrow:after {
    content: url("../icons/review-slider-arrow.svg");
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0 !important;
}

.main-next-arrow.main-next-arrow:after {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.main-prev-arrow:focus.main-prev-arrow:after,
.main-prev-arrow:hover.main-prev-arrow:after {
    content: url("../icons/review-slider-arrow-white.svg");
    transform: translate(-50%, -50%) rotate(-180deg);
}

.main-next-arrow:focus.main-next-arrow:after,
.main-next-arrow:hover.main-next-arrow:after {
    transform: translate(-50%, -50%);
}

.main-prev-arrow span,
.main-next-arrow span {
    display: none !important;
}

/* Video */
.video-player-container {
    position: relative;
}

.video-player {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.video-player-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Card */
.main-card {
    position: relative;
    background: linear-gradient(0.00deg, rgb(0, 0, 0) -18.839%,rgba(0, 0, 0, 0) 63.152%);
}

.main-card__title {
    color: var(--White);
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    position: absolute;
    bottom: 15px;
    padding: 40px;
}

/* POST CARD */
.post-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0;
}

.post-card__description {
    color: rgba(0, 0, 0, 0.58);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    .main-btn,
    .outline-btn {
        height: 42px;
        padding: 0 22px;
        font-size: 16px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .full-width-button {
        font-size: 14px;
        height: 40px;
    }

    .main-title {
        font-size: 40px;
    }

    .container, .row {
        --bs-gutter-x: 40px !important;
    }

    .text-1 {
        font-size: 16px;
    }

    .secondary-btn {
        height: 42px;
        padding: 0 30px;
        font-size: 16px;
    }

    .menu__icon {
        height: 32px;
        width: 32px;
    }

    .menu__icon img {
        width: 20px;
        height: 20px;
    }

    .logo {
        margin-left: 50px;
        margin-right: 25px;
    }

    .menu-icon {
        width: 26px;
        height: 7px;
    }

    .footer__links-title {
        font-size: 20px;
    }

    .footer__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 390px) {
    .header__subtitle {
        font-size: 35px;
    }
}

.gallery-grid {
    display: flex;
    flex-flow: row wrap;
    /*gap: 16px;*/
    margin: -8px;
}
.grid-sizer,
.grid-item {
    width: 30%;
    padding: 8px;
}
@media screen and (min-width: 768px) {
    .grid-item--width2 {
        width: 40%;
    }
}
.grid-item img {
    object-fit: cover;
    height: 100%;
    width: auto;
    margin: auto;
    display: block;
    position: relative;
}
@media screen and (max-width: 767px) {
    .grid-item {
        width: 50%;
        overflow: hidden;
    }
    .grid-item:nth-child(3n+3){
        width: 100%;
    }
    .grid-item img {
        height: 400px;
        width: 100%;
        max-width: none;
    }
}
@media screen and (max-width: 680px) {
    .grid-item img {
        height: 300px;
    }
}
@media screen and (max-width: 575px) {
    .grid-item img {
        height: 250px;
    }
}
@media screen and (max-width: 480px) {
    .grid-item img {
        height: 197px;
    }
}

.max-w-520 {
    max-width: 520px;
}

.max-w-620 {
    max-width: 620px;
}

.max-w-720 {
    max-width: 720px;
}

.max-w-740 {
    max-width: 740px;
}

.w-90 {
    width: 90px;
}
.h-17 {
    height: 17px;
}

/* GET QUOTE PAGE */

.gform_heading {
    display: none !important;
}
.gform-theme--foundation .gform_fields {
    column-gap: 40px !important;
}
.gform-theme--framework .gfield_label {
    display: block;
    width: 100%;
    color: rgba(0, 0, 0, 0.60) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    margin-bottom: 18px !important;
}
.gform-theme--framework .partition-style .gfield_label {
    margin-bottom: 29px !important;
}
.gform-theme--framework .gform-field-label > .gfield_required .gfield_required_asterisk {
    color: rgba(255, 0, 0, 0.60);
    font-size: 22px;
    font-weight: 500;
    margin-left: 4px;
}
.gform-theme--framework .gfield--type-choice .gfield_radio {
    gap: .5rem !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-flow: row wrap !important;
}
.gform-theme--framework .gfield--type-choice .gfield_radio .gchoice {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.gform-theme--framework .gform-field-label--type-inline {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.60) !important;
    text-transform: capitalize !important;
    line-height: 1 !important;
}
.gform-theme--framework input[type="radio"] {
    border: 1px solid var(--Red) !important;
}
.gform-theme--framework input[type="radio"]:before {
    content: "";
    width: 16px !important;
    height: 16px !important;
    background-color: var(--Red) !important;
}
.range-input__control:active,
.range-input__control:focus,
.gform-theme--foundation .gfield select:focus,
.gform-theme--framework input[type="radio"]:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 3px rgba(178, 118, 89, 0.3) !important;
}
.gform-theme--foundation .gfield select {
    display: block;
    padding: 8px 16px;
    height: auto !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.gform-theme--foundation .gfield select option {
    color: rgba(0, 0, 0, 0.60);
}

.form__subtitle {
    font-style: normal;
}

.form {
    padding: 80px 85px;
    background-color: var(--White);
}

.form hr {
    height: 2px;
    background: rgba(187, 118, 89, 0.10);
}
.gform-theme--framework .term-label {
    margin-bottom: 30px !important;
}
.gform-theme--framework .term-label .gfield_label {
    display: block !important;
    width: 100%;
    color: var(--Black-1) !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 100% !important;
    margin-bottom: 60px !important;
}
.gform-theme--framework .ginput_container_checkbox .gfield_checkbox {
    display: flex !important;
    gap: 30px !important;
    align-items: center !important;
    flex-flow: row wrap !important;
}
@media screen and (min-width: 768px) {
    .gform-theme--framework .ginput_container_checkbox .gfield_checkbox {
        gap: 80px !important;
    }
}
.gform-theme--framework .ginput_container_checkbox .gfield_checkbox .gchoice {
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
}
.gform-theme--framework input[type="checkbox"] {
    border: 1px solid var(--Red) !important;
}
.gform-theme--framework input[type="checkbox"]:before {
    content: "";
    color: var(--Red) !important;
}
.gform-theme--foundation .gfield textarea,
.gform-theme--foundation .gfield input[type="number"],
.gform-theme--foundation .gfield input[type="text"],
.gform-theme--foundation .gfield input[type="tel"],
.gform-theme--foundation .gfield input[type="email"] {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    height: 50px;
    padding: 0 13px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}
.gform-theme--framework input[type="checkbox"]:focus,
.gform-theme--foundation .gfield textarea:focus,
.gform-theme--foundation .gfield input[type="number"]:focus,
.gform-theme--foundation .gfield input[type="text"]:focus,
.gform-theme--foundation .gfield input[type="tel"]:focus,
.gform-theme--foundation .gfield input[type="email"]:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 3px rgba(178, 118, 89, 0.3) !important;
}
.gform-theme--foundation .gform_footer {
    margin-top: 60px !important;
}
.gform-theme--foundation .gform_footer input[type="submit"] {
    display: flex !important;
    padding: 27px 55px !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    outline: none !important;
    background-color: var(--Red) !important;
    border-radius: 76px !important;
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.15) !important;
    color: var(--White) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 100% !important;
    text-transform: capitalize !important;
    cursor: pointer !important;
    border: 2px solid var(--Red) !important;
}
.gform-theme--foundation .gform_footer input[type="submit"]:hover,
.gform-theme--foundation .gform_footer input[type="submit"]:focus {
    background-color: var(--Btn-Active-Bg) !important;
}
.gform-theme--foundation .gform_footer input[type="submit"]:focus {
    border: 2px solid var(--Btn-Focus-Color) !important;
}

.form__contacts-subtitle {
    color: rgba(0, 0, 0, 0.60);
    font-size: 22px;
    font-weight: 700;
}

.range-input {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    height: 50px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-input__control {
    width: 38px;
    height: 38px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: rgba(187, 118, 89, 0.20) !important;
    background-repeat: no-repeat;
    background-position: center;
    outline: none !important;
    border: 2px solid rgba(187, 118, 89, 0.20) !important;
    text-indent: -50px;
}

.range-input__control.decrease {
    background-image: url(../icons/minus.svg);
}

.range-input__control.increase {
    background-image: url(../icons/plus.svg);
}

.range-input__control:active,
.range-input__control:focus {
    outline: none !important;
    border: 2px solid var(--Btn-Active-Bg) !important;
}

.range-input__value {
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
}

.range-value {
    color: rgba(0, 0, 0, 0.60);
    font-weight: 500;
}

#patishon-ceiling-height-slider,
#patishon-linear-length-slider {
    height: 4px;
}

#patishon-ceiling-height-slider .noUi-connect,
#patishon-linear-length-slider .noUi-connect {
    background-color: var(--Red);
}

#patishon-ceiling-height-slider .noUi-handle,
#patishon-linear-length-slider .noUi-handle {
    height: 24px;
    width: 24px;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    cursor: pointer;
}

#patishon-ceiling-height-slider .noUi-handle:before,
#patishon-ceiling-height-slider .noUi-handle:after,
#patishon-linear-length-slider .noUi-handle:before,
#patishon-linear-length-slider .noUi-handle:after{
    content: none;
}

@media screen and (max-width: 767px) {
    .form {
        padding: 15px;
    }
}

/* CONTACT */
.map {
    width: 100%;
    height: 100%;
}

.contact-form {
    padding: 80px 85px;
    background-color: var(--White);
}
.contact-form .gform-theme--foundation .gform_footer {
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .contact-form {
        padding: 20px;
        background-color: var(--White);
    }

    .map {
        height: 300px;
    }
}

/* BLOG */
.post-preview {
    margin-bottom: 130px;
}
@media screen and (max-width: 767px){
    .post-preview {
        margin-bottom: 70px;
    }
}

.blog-item {
    display: block;
    position: relative;
    text-decoration: none;
}

.blog-item__type {
    position: absolute;
    top: 20px;
    left: 25px;
    background-color: var(--White);
    color: var(--Red);
    padding: 13px 20px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-item__body {
    width: calc(100% - 40px);
    background-color: var(--White);
    padding: 30px 23px;
    margin: 0 20px;

    bottom: -20%;
    position: absolute;
    z-index: 1;
}

.blog-item:hover .blog-item__body {

}

.blog-item__description {
    /*position: absolute;
    left: 0;
    right: 0;*/
    opacity: 0;
    padding: 10px 0 0;
    color: var(--White);
}

.blog-item__author {
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.blog-item__title {
    color: var(--Black-1);
    font-size: 30px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.9px;
    overflow: hidden;
}
.blog-item__description.closed,
.blog-item:not(.loading):not(:hover) .blog-item__description {
    height: 0 !important;
}

@media screen and (min-width: 768px) {
    .blog-item__title.closed,
    .blog-item:not(.loading):not(:hover) .blog-item__title {
        height: 99px !important;
    }
}

.blog-item__title a {
    color: var(--Black-1);
    text-decoration: none;
}

.blog-item:hover .blog-item__title {
    /*height: auto;*/
}

.blog-item:hover .blog-item__description {
    opacity: 1;
    /*position: relative;*/
}

.blog-item:hover .blog-item__type,
.blog-item:hover .blog-item__body {
    background-color: var(--Red);
}

.blog-item:hover .blog-item__type,
.blog-item:hover .blog-item__title a,
.blog-item:hover .blog-item__author {
    color: var(--White);
}

.blog-item.loading .blog-item__body {
    opacity: 0;
}

.page-numbers {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

@media screen and (max-width: 1400px) {
    .blog-item__title {
        font-size: 24px;
        max-height: 79px;
    }

    .blog-item__description,
    .blog-item__author {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .blog-item img {
        width: 100%;
        max-width: 100%;
    }

    .blog-item__body {
        bottom: -10%;
    }

    .blog-item__author {
        font-size: 16px;
    }

    .blog-item__title {
        font-size: 24px;
    }

    .page-numbers {
        font-size: 20px;
    }
}

/* BREADCRUMB */
.breadcrumb-row {
    margin-bottom: 30px;
}

.breadcrumb-row .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-row .breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
}

.breadcrumb-row .breadcrumb-item + .breadcrumb-item:before {
    content: url(../icons/breadcrumb-arrow.svg);
    padding-right: 8px;
}

.breadcrumb-row .breadcrumb-item a {
    color: #676879;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.breadcrumb-row .breadcrumb-item a[href="#content"] {
    font-weight: 500;
}

.breadcrumb-row .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* TABLE OF CONTENT */
.table-of-content {
    margin-bottom: 42px;
}

.table-of-content .label {
    font-weight: normal;
    font-size: 14px;
    line-height: 36px;
    text-transform: uppercase;
    color: #0D0D30;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.table-of-content .label:after {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background-color: #C5C7D0;
    margin-left: 18px;
}

.table-of-content ul,
.table-of-content li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.table-of-content li:before {
    display: none;
}

.table-of-content li:not(:last-child) {
    margin-bottom: 16px;
}

.table-of-content a {
    font-weight: normal;
    font-size: 16px;
    text-decoration: underline;
    color: #0D0D30;
}

.table-of-content a:hover {
    text-decoration: none;
}

/* BLOG POST CUSTOM */
.single-post .first-screen {
    position: relative;
}
.single-post .first-screen .container {
    position: relative;
    z-index: 2;
}
.single-post .first-screen:before {
    content: "";
    background: transparent url(../images/post-hero-overlay-bg.png) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* BLOG POST */
.post-author {
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.post-type {
    height: 40px;
    background-color: var(--Red);
    color: var(--White);
    padding: 0 20px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}
.description {
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.48px;
    text-transform: capitalize;
}
.post-article p {
    margin-bottom: 10px;
}
.post-article h2 {
    margin-bottom: 20px;
    font-size: 20px;
}
.post-article h3,
.post-article h4,
.post-article h5,
.post-article h6 {
    margin-bottom: 15px;
}
.post-article h3 {
    font-size: 18px;
}
.post-article h4 {
    font-size: 17px;
}
.post-article h5 {
    font-size: 16px;
}
.post-article h6 {
    font-size: 15px;
}
.post-article a {
    color: var(--Red);
    text-decoration: none;
}
.post-article a:hover,
.post-article a:active,
.post-article a:focus {
    text-decoration: underline;
}
.post-article img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .post-author {
        font-size: 16px;
    }
    .post-type {
        height: 35px;
        padding: 0 15px;
        font-size: 14px;
    }
    .post-article h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .post-article h3,
    .post-article h4,
    .post-article h5,
    .post-article h6 {
        margin-bottom: 10px;
    }
    .post-article h3 {
        font-size: 16px;
    }
    .post-article h4 {
        font-size: 15px;
    }
    .post-article h5 {
        font-size: 14px;
    }
    .post-article h6 {
        font-size: 13px;
    }
}

/* SUBSCRIBE-FORM */
.footer-subscription-form .gform_fields {
    display: block !important;
    position: relative;
}
.footer-subscription-form .gfield input[type="email"] {
    font-size: 16px !important;
    line-height: 50px !important;
    background-color: transparent !important;
    border-width: 0 0 1px 0 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 !important;
    padding: 0 115px 0 0 !important;
}
.footer-subscription-form .gfield input[type="email"]:focus {
    box-shadow: none !important;
}

.footer-subscription-form #field_submit {
    position: absolute;
    right: 0;
    top: 5px;
}
.footer-subscription-form #field_submit input[type="submit"] {
    height: auto;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: auto;
    padding: 8px 20px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    background-color: var(--Red);
    border-radius: 76px;
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.15);
    color: var(--White);
    line-height: 100%;
    text-transform: capitalize;
    cursor: pointer;
    border: 2px solid var(--Red);
}
.footer-subscription-form #field_submit input[type="submit"]:focus,
.footer-subscription-form #field_submit input[type="submit"]:hover {
    background-color: var(--Btn-Active-Bg);
}
.footer-subscription-form #field_submit input[type="submit"]:focus {
    border: 2px solid var(--Btn-Focus-Color);
}
.gform-theme--foundation .footer-subscription-form .gform_footer {
    display: none !important;
}