/* Resetters  */
html, body{
    overflow-x: hidden;
}

body.page .wp-site-blocks{
    padding: 0;
}

.wp-site-blocks > * + *{
    margin-top: 0;
}

body .is-layout-constrained > * + *{
    margin-block-start: 0;
}

#inner-hero *:not(figure),
#inner-hero *:not(img){
    position: relative;
    z-index: 2;
}

svg#hero-arrows{
    position: absolute;
    bottom: 0px;
    left: 125px;
    max-width: 500px;
    transform: rotate(-15deg);
}

/* Temp animation for hero arrows */
.arrows-move{
    transform: translate(0%, 0%) rotate(0deg)!important;
    transition: transform ease 3s;
}

/* Globals */
.wp-block-group.is-style-contained{
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.wp-block-group.is-style-contained-small{
    width: 100%;
    max-width: 980px !important;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.full-results{
    display: none !important;
}

/* Menu styles */
body.admin-bar #main-menu.sticky {
    top: 26px;
}

header.wp-block-template-part{
    z-index: 10;
}

#main-menu.prepare-sticky {
    position: fixed;
    top: -100px; /* Adjust this to your actual menu height */
}

#main-menu.sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    top: 0;
}

#main-menu{
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    transition: top 0.3s ease-in-out;
}

header nav.wp-block-navigation ul li a{
    font-size: 16px;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li{
    padding: 15px 0;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:nth-child(5):after{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../imgs/icon-avatar.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:last-child:hover{
    border-bottom: 3px solid transparent;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:last-child a{
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    border-radius: 5px;
    padding: 9px 25px;
    transition: all ease 300ms;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:last-child a:hover{
    background: var(--wp--preset--color--secondary);
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li > ul.wp-block-navigation__submenu-container{
    z-index: 11;
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li a:hover,
header nav.wp-block-navigation ul.wp-block-navigation__container > li > ul.wp-block-navigation__submenu-container > li a:hover{
    color: var(--wp--preset--color--primary);
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:last-child a:hover{
    color: #fff;
}

header nav.wp-block-navigation ul.wp-block-navigation__container li.current-menu-item > a{
    color: var(--wp--preset--color--primary);
}

header nav.wp-block-navigation ul.wp-block-navigation__container > li:last-child.current-menu-item > a{
    color: #fff;
}

header nav.wp-block-navigation ul.wp-block-navigation__container .wp-block-navigation-item{
    border-bottom: 3px solid transparent !important;
    transition: all ease 300ms;
}

header nav.wp-block-navigation ul.wp-block-navigation__container .wp-block-navigation-item:hover{
    border-bottom: 3px solid var(--wp--preset--color--primary);
}

header nav.wp-block-navigation ul.wp-block-navigation__container .wp-block-navigation-item.current-menu-item{
    border-bottom: 3px solid var(--wp--preset--color--primary);
}

header nav.wp-block-navigation li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container{
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}

#hero{
    overflow: hidden;
}

#hero .is-style-contained{
    position: relative;
}

figure.homepage-hero-image{
    position: absolute;
    top: -10px;
    left: -200px;
    max-width: 800px;
}

#hero.homepage-hero .wp-block-columns .wp-block-column:nth-child(2){
    position: relative;
    z-index: 3;
}

#hero.homepage-hero{
    background: linear-gradient(rgba(234, 239, 238, 0.6) 0%, #fff 100%);
}


#testimonials figure{
    position: relative;
    -webkit-mask-image: url('../imgs/testimonial-mask.svg');
    mask-image: url('../imgs/testimonial-mask.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1;
    transition: all ease 1000ms;
    transform: rotate(0deg);
    transform-origin: 0%;
}

#testimonials .col-quote figure{
    mask-image: none;
    -webkit-mask-image: none;
}

#testimonials .owl-testimonials{
    margin-top: 0;
}

#testimonials .col-media{
    position: relative;
}

#testimonials .col-media.active figure{
    transition: all ease 1000ms;
    transform: rotate(3deg);
}

#testimonials .col-media:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
    background-image: url('../imgs/testimonial-shape.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 522px;
    height: 493px;
    transition: all ease 800ms;
    transform: rotate(0deg);
}

#testimonials .col-media.active:after{
    transition: all ease  800ms;
    transform: rotate(3deg);
    background-image: url('../imgs/testimonial-shape-red.svg')
}

#testimonials .owl-dots{
    margin: 0;
    text-align: left;
}

#testimonials .owl-dots button.owl-dot{
    position: relative;
}

#testimonials .owl-dots button.owl-dot span{
    background: #C8CBCC;
    box-shadow: inset 0 0 0 3px #C8CBCC;
    width: 16px;
    height: 16px;
}

#testimonials .owl-dots button.owl-dot.active span{
    background: #C8CBCC;
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
    border: 2px solid #D4310F;
    display: block;
    box-shadow: inset 0 0 0 3px #F5F7F7;
}

#testimonials .owl-dots button.owl-dot.active span{
    background: #D4310F;
}

.hd-bcve-wrapper .play-button:after{
    display: none;
}

.hd-bcve-wrapper .play-button:before{
    content: '';
    display: block;
    background-image: url('../imgs/icon-play-btn.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 28px;
    margin-left: 10px;
}

.hd-bcve-wrapper .play-button{
    background: #D4310F;
    border-radius: 50%;
}

img.hd-bcve-thumbnail{
    border-radius: 20px;
}

.service-group{
    min-height: 500px;
}

.service-group .owl-stage{
    padding-top: 60px;
}

.owl-services .owl-nav,
.owl-stats .owl-nav{
    position: absolute;
    top: -100px;
    right: 150px;
}

@media (max-width:600px){
    .owl-stats .owl-nav{
        top: -60px!important;
        right: 20px!important;
    }
}

.owl-services .owl-nav .prev-slide,
.owl-stats .owl-nav .prev-slide,
.owl-services .owl-nav .next-slide,
.owl-stats .owl-nav .next-slide{
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 25px;
    opacity: 0.5;
}

.owl-services .owl-nav .prev-slide:hover,
.owl-stats .owl-nav .prev-slide:hover
.owl-services .owl-nav .next-slide:hover,
.owl-stats .owl-nav .next-slide:hover{
    opacity: 1;
    transition: all ease 300ms;
}

.owl-services .owl-nav button:hover,
.owl-stats .owl-nav button:hover,
.owl-services .owl-nav button:hover,
.owl-stats .owl-services .owl-nav button:hover{
    background: transparent !important;
}

.owl-services .owl-nav .next-slide,
.owl-stats .owl-nav .next-slide{
    background-image: url('../imgs/icon-owl-arrow-right.svg');
    margin-left: 15px;
}

.owl-services .owl-nav .prev-slide,
.owl-stats .owl-nav .prev-slide{
    background-image: url('../imgs/icon-owl-arrow-left.svg');
}

.owl-services .owl-item{
    transition: all ease 0.5s;
}

.owl-services .owl-item.active:hover {
    transform: translateY(-20px);
    transition: all ease 0.5s;
}

.service-group .service-item{
    max-width: 375px;
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #E9E9E9;
    position: relative;
}

.service-group .service-item .service-icon{
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -59px;
    margin-bottom: 25px;
}

.service-group .service-item .service-icon img{
    display: block;
    max-width: 40px;
}

.service-group .service-item h3{
    font-size: 1.65rem;
    margin-bottom: 15px;
}

.service-group .service-item p{
    min-height: 140px;
}

.service-group .service-item hr{
    color: #E9E9E9;
    height: 1px;
    border-top: none;
    margin: 20px 0;
}

.owl-services.wp-block-group{
    position: absolute !important;
}

.wp-block-button.is-style-txt{
    position: relative;
}

.wp-block-button.is-style-txt a{
    background: none;
    border: none;
    color: #1D1D1D;
    display: flex;
    align-items: center;
    transition: all ease 300ms;
}

.wp-block-button.is-style-txt a:after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-left: 9px solid #D13017;
    border-bottom: 4px solid transparent;
    margin-left: 10px;
    margin-top: 4px;
    transition: all ease 300ms;
}

.wp-block-button.is-style-txt a:hover{
    color: #D13017;
}

.signup-bar{
    background-image: url('../imgs/signup-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
    padding: 15px 25px 25px !important;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.signup-bar form{
    background: #F2F5F5;
    border-radius: 15px;
    display: flex;
    padding: 20px 25px;
    gap: 25px;
}

.signup-bar .gform_wrapper form label.gfield_label{
    color: #999999;
    font-weight: 400;
    font-family: Glober, sans-serif;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.signup-bar form input.gform_button{
    box-shadow: none;
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 1rem;
    background: var(--wp--preset--color--primary);
    margin-bottom: 0 !important;
}

.signup-bar .gform-body{
    width: 100%;
    box-sizing: border-box;
}

.signup-bar .gform_wrapper form .gform-body input{
    border: none;
    background: none;
    padding: 10px 2px;
    border-bottom: 1px solid #999999;
    margin-right: 15px;
    box-sizing: border-box;
    color: #000000;
    outline: none;
}

.signup-bar .gform_footer{
    margin: 0 !important;
    padding: 0 !important;
}

.signup-bar h4{
    margin-bottom: 0 !important;
}

.signup-bar h4:before{
    display: none !important;
}

.signup-bar h4 mark{
    padding-right: 7px;
}

.signup-bar p{
    margin-top: 10px !important;
}

.signup-bar figure.wp-block-image{
    position: absolute;
    bottom: 0;
    left: 65px;
}

.signup-bar .gform_wrapper .validation_message{
    background: none;
    border: none;
    padding: 0;
}

.signup-bar .gform_validation_errors{
    display: none;
}

#inner-hero{
    position: relative;
}

#inner-hero:after{
    content: '';
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(234, 239, 238, 0.6) 0%, #fff 100%);
    z-index: -2;
}

#inner-hero .is-style-contained{
    position: relative;
}

#inner-hero figure{
    -webkit-mask-image: url('../imgs/inner-hero-mask.svg');
    mask-image: url('../imgs/inner-hero-mask.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top right;
    mask-position: top right;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 15px;
    z-index: 0;
}

.wp-block-pb-accordion-item{
    background: #fff;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    margin: 25px 0 !important;
}

.wp-block-pb-accordion-item h2:after,
.wp-block-pb-accordion-item h3:after{
    right: 25px;
    font-size: 42px;
    top: 46%;
}

.wp-block-pb-accordion-item h2,
.wp-block-pb-accordion-item h3{
    margin: 0;
    padding: 18px 20px 20px 20px;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.wp-block-pb-accordion-item h3{
    font-size: 1.5rem;
}

.wp-block-pb-accordion-item .wp-block-columns{
    padding: 10px 100px 25px 25px;
}

.wp-block-pb-accordion-item figure img{
    border-radius: 10px;
}

.wp-block-pb-accordion-item .c-accordion__content{
    padding: 22px;
}

ul.is-style-woods-bullet{
    margin: 10px 0;
    padding: 0;
}

ul.is-style-woods-bullet li{
    list-style: none;
    margin-bottom: 10px;
}

ul.is-style-woods-bullet li:before{
    content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="13" height="9" viewBox="0 0 13 9"%3E%3Cpath id="Polygon_7" data-name="Polygon 7" d="M3.555,2.73a1,1,0,0,1,1.89,0l3.1,8.943A1,1,0,0,1,7.6,13H1.4a1,1,0,0,1-.945-1.327Z" transform="translate(13) rotate(90)" fill="%23d4310f"/%3E%3C/svg%3E');
    display: inline-block;
    width: 13px;
    height: 9px;
    margin-right: 5px;
}

figure.is-style-woods-arrow{
    position: relative;
    -webkit-mask-image: url('../imgs/testimonial-mask.svg');
    mask-image: url('../imgs/testimonial-mask.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1;
    transition: all ease 1000ms;
}

figure.is-style-woods-blob{
    position: relative;
    -webkit-mask-image: url('../imgs/Wood-Valldata_Case Study Image.svg');
    mask-image: url('../imgs/Wood-Valldata_Case Study Image.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: 1;
    transition: all ease 1000ms;
}

@media screen and (max-width: 781px) {
    .mob-col-rev{
    flex-direction: column-reverse!important;
    }
    .mob-align-center{
        align-items: center!important;
        justify-content: center!important;
    }
    figure.is-style-woods-blob{
    right: -10%;
    }
}

#main-footer{
    position: relative;
}

#main-footer .wp-block-template-part{
    position: absolute;
    left: 0;
    right: 0;
    top: -150px;
}

#main-footer nav ul{
    gap: 10px;
}

#main-footer nav ul li a{
    font-size: 18px;
    transition: all ease 200ms;
    color: #fff;
}

.main-footer-copyright nav ul li a{
    color: #fff !important;
}

#main-footer a:hover{
    text-decoration: underline;
    transition: all ease 200ms;
}

#main-footer a{
    text-decoration: none;
}

#main-footer .wp-block-columns .wp-block-column h4{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

#main-footer .wp-block-columns .wp-block-column h4:before{
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

#main-footer .wp-block-columns .wp-block-column:nth-child(2) h4:before{
    background-image: url('../imgs/icon-accent-arrow-pink.png');
}

#main-footer .wp-block-columns .wp-block-column:nth-child(3) h4:before{
    background-image: url('../imgs/icon-accent-arrow-orange.png');
}

#main-footer .wp-block-columns .wp-block-column:nth-child(4) h4:before{
    background-image: url('../imgs/icon-accent-arrow-green.png');
}

#main-footer p.address{
    display: flex;
    align-items: flex-start;
}

#main-footer p.address:before{
    content: '';
    display: block;
    width: 30px;
    height: 17px;
    background-image: url('../imgs/icon-location.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    margin-top: 8px;
}

#main-footer p.phone:before{
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('../imgs/icon-phone.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 7px;
}

#main-footer p.email:before{
    content: '';
    display: inline-block;
    width: 19px;
    height: 14px;
    background-image: url('../imgs/icon-email.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.case-study-image{
    position: relative;
}

.case-study-image img{
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.resource-loop .resource-item .case-study-image span.resource-category {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 5px;
    color: #fff;
}

.resource-loop{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}

.resource-filter-group{
    display: flex;
}

.resource-loop .resource-item{
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    overflow: hidden;
    transition: all ease 300ms;
    position: relative;
    padding-bottom: 75px;
}

.resource-loop .resource-item:hover{
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all ease 300ms;
}

.resource-loop .resource-item .resource-image{
    position: relative;
}

.resource-loop .resource-item .resource-image span.resource-category{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 5px;
    color: #fff;
}

.resource-loop .resource-item .resource-image img{
    width: 100%;
    height: auto;
    display: block;
}

.resource-loop .resource-item .resource-content{
    padding: 0 20px;
}

.resource-loop .resource-item .resource-footer{
    padding: 20px;
    border-top: 1px solid #E9E9E9;
    margin-top: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.resource-loop .resource-item .resource-footer a{
    color: #1D1D1D;
    transition: all ease 300ms;
    position: relative;
    text-decoration: none;
}

.resource-loop .resource-item:hover .resource-footer a{
    color: #D4310F;
}

.resource-loop .resource-item .resource-content a{
    text-decoration: none;
    color: inherit;
}

.resource-loop .resource-item:hover .resource-content h3{
    color: #D4310F;
    transition: all ease 300ms;
}

.resource-loop .resource-item .resource-content h3{
    color: #1D1D1D;
    font-size: 1.65rem;
    transition: all ease 300ms;
}

.resource-filter-group {
    border-bottom: 2px solid #E9E9E9;
    padding-bottom: 50px;
}

.resource-filter p{
    font-size: 16px;
}

.resource-filter select{
    padding: 10px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    color: #1D1D1D;
    font-size: 16px;
    margin-top: 10px;
}

.facetwp-facet-resource_pagination{
    margin: 75px 0 25px 0 !important;
    text-align: center;
}

.facetwp-facet-resource_pagination a{
    color: #414349;
    text-decoration: none;
    transition: all ease 300ms;
}

.facetwp-facet-resource_pagination a.active,
.facetwp-facet-resource_pagination a:hover{
    color: #D4310F;
}

.facetwp-pager a.facetwp-page{
    font-size: 1.25rem;
}


/* Form styles */

form.wppb-user-forms input[type="text"],
form.wppb-user-forms input[type="text"]:focus,
form.wppb-user-forms input[type="email"],
form.wppb-user-forms input[type="email"]:focus,
form.wppb-user-forms input[type="password"],
form.wppb-user-forms input[type="password"]:focus,
.wppb-user-forms form input[type="text"],
.wppb-user-forms form input[type="text"]:focus,
.wppb-user-forms form input[type="email"],
.wppb-user-forms form input[type="email"]:focus,
.wppb-user-forms form input[type="password"],
.wppb-user-forms form input[type="password"]:focus{
    border-radius: 4px;
    background: #f2f5f5;
    border: none;
    padding: 13px 18px;
    color: #4F555A;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    font-family: Glober, sans-serif;
    width: 100% !important;
}

form.wppb-user-forms ul li.wppb-form-field,
.wppb-user-forms form p.wppb-form-field{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

form.wppb-user-forms ul li.wppb-form-field label,
.wppb-user-forms form p.wppb-form-field label{
    width: 100% !important;
    margin-bottom: 5px;
    color: #4F555A;
}

form.wppb-user-forms input[type="submit"],
input#wppb-submit[type="submit"]{
    box-shadow: none;
    border: none;
    background-color: #D4310F;
    color: #fff;
    border-radius: 5px;
    padding: 15px 30px;
    font-family: Glober, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all ease 300ms;
    letter-spacing: 0.5px;
}

form.wppb-user-forms input[type="submit"]:hover,
input#wppb-submit[type="submit"]:hover{
    background-color: #C32E0F;
    transition: all ease 300ms;
}

span.wppb-description-delimiter{
    display: none !important;
}

.woods-card{
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 35px;
    transition: all ease 350ms;
    cursor: pointer;
}

.woods-card:hover{
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all ease 350ms;
}

.woods-card h4{
    margin-bottom: 15px;
}

.comparison-table{
    gap: 0 !important;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table p{
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    margin: 0;
    padding: 10px 35px;
    min-height: 58px;
}

.comparison-table p:before{
    content: '';
    display: block;
    min-width: 23px;
    width: 23px;
    height: 23px;
    background-image: url('../imgs/icon-green-tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.comparison-table .wp-block-column p:nth-child(even){
    background: #F5F7F7;
}

.comparison-table .wp-block-column:nth-child(1) p,
.comparison-table .wp-block-column:nth-child(2) p{
    border-right: 1px solid #E9E9E9;
}

@keyframes slide-in {
    0% {
      right: -1500px;
    }
    100% {
      right: 0;
    }
}

@keyframes slide-out {
    0% {
      right: 0;
    }
    100% {
      right: 1500px;
    }
}

.stats-block .service-item .service-icon{
    width: 150px;
    height: 150px;
}

.stats-block .service-item{
    max-width: 300px;
    padding-bottom: 40px !important;
}

.stats-block .owl-stage .owl-item:nth-child(even) .service-item{
    margin-top: 50px;
}

.stats-block .service-item p{
    min-height: auto;
}

.team-block .team-member{
    position: relative;
    padding: 120px 25px 25px 25px;
    border: 1px solid #E9E9E9;
    border-radius: 15px;
    margin-top: 75px;
}

.team-block .team-member img{
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.team-block .team-member figure{
    position: absolute;
    top: -75px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.team-block .team-member p:last-child{
    margin-top: 15px;
}

.team-block hr{
    border-bottom: none;
    border-color: #DDDDDD;
}

.green-arrow{
    position: relative;
    height: 0;
    margin: 0 auto !important;
    width: 100%;
}

.green-arrow figure{
    position: absolute;
    top: -98px;
    right: 0;
}

.woods-popup{
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 15px;
    position: fixed;
    right: 35px;
    bottom: 35px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
}

.woods-popup button{
    box-shadow: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
}

.woods-popup .image{
    flex: 0 0 35%;
}

.woods-popup .image img{
    width: 100%;
    height: auto;
    display: block;
}

.woods-popup .content{
    flex: 0 0 60%;
}

.woods-popup h3,
.woods-popup h4,
.woods-popup h5,
.woods-popup h6{
    margin: 0;
    color: #1D1D1D;
    font-size: 1.2rem;
}

.woods-popup p{
    font-size: .95rem;
    margin-top: 5px;
}

.woods-popup a.hubspot-btn{
    background: #007577;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    padding: 8px 20px 10px;
    font-size: 1rem;
    font-weight: 400;
    box-sizing: border-box;
}

figure.wp-block-image.is-style-rounded img{
    border-radius: 25px !important;
}

.c-accordion__content p:first-child{
    margin-top: 0;
}

@keyframes resourceFadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.calc-flexy-hold{
    color: #fff;
    padding: 50px 0;
    margin-top: 0 !important;
}

.calc-flexy-hold table{
    width: 100%;
}

.calc-flexy-hold table thead th{
    text-align: left;
    padding: 7px;
}

.calc-flexy-hold table td{
    padding: 7px;
}

.yearly-calculations-tbl{
    display: none;
}

.calc-flexy-hold .calc-btn-hold a{
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: block;
    margin: 50px 0 0 0;
}

.calc-flexy-hold input{
    background: none;
    box-shadow: none;
    border: none;
    border-bottom: 2px dotted #fff;
    padding: 8px;
    font-size: 1rem;
    color: #fff;
}

@media (max-width:780px){
.tobesecond{
    order: 2;
        margin-top: 40px;
}
}

.total-display p,
.total-display a,
.total-display-err p,
.total-display-err a{
    color: #fff;
}

table.full-results{
    display: none;
}

.team-member .wp-block-group{
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.team-member .wp-block-group.active{
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.just-cont a{
    justify-content: center;
}

.lottery-hero figure.hero-bg-img{
    position: absolute;
    right: 15px;
    z-index: 0;
}

.lottery-hero .lottery-hero-content{
    position: relative;
    z-index: 2;
}

.facetwp-pager{
    text-align: center;
}

/* Glossary Styling */

.glos-fac .facetwp-input-wrap{
    width: 100%;
} 

.glos-fac .facetwp-input-wrap input{
font-size: 1.5rem; 
padding-left: 10px!important;
}

.glos-fac .facetwp-icon{
    right:10px; 
} 

.glos-fac .facetwp-search{ 
    height: 55px; 
    width: calc( 100% - 43px );
    border: 2px #e94270 solid;
    border-radius: 10px; 
}
    
.glos-fac .facetwp-search::placeholder{
    font-size: 1.5rem; 
}

.glos-fac .facetwp-facet-glossary_a_z{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly; 
}

.glos-fac .facetwp-facet-glossary_a_z span{
z-index: 3;
}


.glos-fac .facetwp-facet-glossary_categories{
    border-right: 2px #eff1f0 solid;
}
    
.glossary-item h3{
    margin-bottom: 0px;
}

.glossary-item h3 a{
    text-decoration: none;
}

.glossary-item p{
    margin-top: 10px;
}

@media screen and (max-width:600px){ 
    .glos-fac .facetwp-facet-glossary_a_z{
        justify-content: center; 
    }
}

/* Contact */

.contactConsent .gfield_consent_description{
    border: none!important;
    overflow-y: auto!important;
}

.contactForm input.gform_button, .lotteryForm input.gform_button{
    box-shadow: none;
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 1rem;
    background: var(--wp--preset--color--primary);
    margin-bottom: 0 !important;
}

.contactForm input.gform_button:hover, .lotteryForm input.gform_button:hover{
    background: #a82417;
    cursor: pointer;
}


/* hides label BUT keeps it visible for screen readers */
.contactForm .gfield_label, .lotteryForm .gfield_label{
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    width: 1px;
}

.contactForm .gform_fields, .lotteryForm .gform_fields{
    grid-row-gap: 20px!important;
}


.contactForm .gfield input.large, .contactForm .gfield select.large {
width: 100%;
height: 65px;
background: #eff1f0;
border: none;
border-radius: 5px;
padding-left: 20px;
font-family: 'Glober';
}

.contactForm .gfield textarea.small {
    height: 96px;
    background: #eff1f0;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    font-family: 'Glober';
}

.lotteryForm .gfield input.large, .lotteryForm .gfield select.large {
    width: 100%;
    height: 65px;
    background: #ffffff;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    font-family: 'Glober';
    }
    
.lotteryForm .gfield textarea.small {
    height: 96px;
    background: #ffffff;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    font-family: 'Glober';
}

#wv-top-circle, #wv-bottom-circle {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#wv-blue-content:hover #wv-bottom-circle,
#wv-red-content:hover #wv-top-circle {
  opacity: 1;
}

#wv-quad-shape g#left_plus,
#wv-quad-shape g#right_plus,
#wv-quad-shape g#bottom_plus,
#wv-quad-shape g#top_plus{
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

#wv-quad-shape g#top:hover g#top_plus,
#wv-quad-shape g#bottom:hover g#bottom_plus,
#wv-quad-shape g#left:hover g#left_plus,
#wv-quad-shape g#right:hover g#right_plus{
    opacity: 1;
}


svg#wv-homepage-hero-graphic{
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
}

.woods-img-mask{
    position: relative;
}

.woods-img-mask:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: -30px;
    bottom: 0;
    margin: auto;
    z-index: 0;
    background-image: url('../imgs/testimonial-shape.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 380px;
    height: 493px;
    transition: all ease 1700ms;
    transform: rotate(-9deg);
    margin-right: -50px;
}

.woods-img-mask.active:after{
    right: 100px;
    transform: rotate(0deg);
}

.woods-img-mask figure{
    left: -50px;
    transition: all ease 1500ms;
    transform: rotate(6deg);
}

.woods-img-mask.active figure{
    left: 0;
    transform: rotate(0deg);
}

form#gform_wrapper_4 .gform_heading h2.gform_title{
    padding: 0 0;
}

form#gform_wrapper_4 label{
    color: #999999;
    font-weight: 400;
    font-family: Glober, sans-serif;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

form#gform_wrapper_4 input{
    width: 100%;
    height: 65px;
    background: #eff1f0;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    font-family: 'Glober';    
}

.modal-popup{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
}

.modal-popup.active{
    display: flex;
}

.modal-popup .modal-content .modal-scroller{
    min-height: 250px;
    max-width: 700px;
    max-height: 500px;
    margin: 0 15px;
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    position: relative;
    overflow-y: scroll;
}

.modal-popup button.close-modal{
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    z-index: 90;
}

.modal-popup .modal-content{
    position: relative;
}

.modal-popup .modal-content .modal-scroller h2{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2rem;
    max-width: 95%;
}

.modal-popup .modal-content .modal-scroller h3{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.65rem;
    max-width: 95%;
}

.modal-popup .modal-content .modal-scroller h4{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
    max-width: 95%;
}

.modal-popup button.close-modal svg{
    width: 19px;
    height: 19px;
}

.wp-block-button .wp-element-button{
    margin-bottom: 15px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-button .wp-element-button svg{
    padding-left: 10px;
}

.wp-block-button .wp-element-button svg path{
    fill: #fff;
}

footer.wp-block-template-part #main-footer{
    padding: 0 25px;
}

.tabbed-content-hold .tabs ul li:nth-child(2) .wp-block-button a.wp-block-button__link.wp-element-button,
.tabbed-content-hold .tabs ul li:nth-child(7) .wp-block-button a.wp-block-button__link.wp-element-button{
    background-color: var(--wp--preset--color--orange);
}

.tabbed-content-hold .tabs ul li:nth-child(3) .wp-block-button a.wp-block-button__link.wp-element-button,
.tabbed-content-hold .tabs ul li:nth-child(9) .wp-block-button a.wp-block-button__link.wp-element-button{
    background-color: var(--wp--preset--color--pink);
}

.tabbed-content-hold .tabs ul li:nth-child(4) .wp-block-button a.wp-block-button__link.wp-element-button,
.tabbed-content-hold .tabs ul li:nth-child(8) .wp-block-button a.wp-block-button__link.wp-element-button{
    background-color: var(--wp--preset--color--green);
}

.tabbed-content-hold .tabs ul li:nth-child(5) .wp-block-button a.wp-block-button__link.wp-element-button,
.tabbed-content-hold .tabs ul li:nth-child(1) .wp-block-button a.wp-block-button__link.wp-element-button{
    background-color: var(--wp--preset--color--teal);
}

span.btn-icon{
    display: inline-block;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
    position: absolute;
    top: 9px;
}

span.btn-icon.sign-up{
    background-image: url('../imgs/icon-read-more.svg');
}

span.btn-icon.download-insight{
    background-image: url('../imgs/icon-feather-download.svg');
    width: 15px;
    height: 15px;
    top: 5px;
}

span.btn-icon.watch-now{
    background-image: url('../imgs/icon-feather-play-circle.svg');
    width: 16px;
    height: 16px;
    top: 6px;
}

.case-study-image br{
    display: none;
}

.social-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 150px;
}

.social-grid .social-item{
    width: 45px;
    height: 45px;
    border-radius: 5px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 300ms;
}

.social-grid .social-item svg path{
    fill: #fff;
}

.social-grid .social-item:hover{
    background: #D13017;
    border-color: #D13017;
}

.social-grid p{
    display: none;
}

body.page-id-8944 table.calc-tbl,
body.page-id-8944 table#input-table{
    position: relative;
    z-index: 5;
    display: table !important;
    width: 100%;
    margin: 50px 0px 0px!important;
}

body.page-id-8944 table th{
    text-align: left;
}

body.page-id-8944 table{
    background: #f3f3f3;
    padding: 20px;
    border-radius: 15px;
}

form.post-password-form{
    margin: 100px 0 250px;
    text-align: center;    
}

.oddimageposition img{
    object-position: -45px -45px!important;
}



@media (max-width:999px){
.myacc{
    display: flex!important;
    flex-direction: row!important;
    align-items: center!important;
}

.contmenu a {
    padding: 0.5rem!important;
}
}



.has-modal-open .custom-logo{
    z-index: 9999999;
    position: fixed;
    top: 27px;
}
.wp-block-navigation__responsive-container.is-menu-open{
    padding: 1.5rem 2rem 0rem 1.5rem;
}


.gform_confirmation_message{
    margin: 120px 0rem 8rem!important;
    font-weight: 700!important;
    font-size: 1.3rem!important;
    background: #e94270!important;
    color: white!important;
    padding: 1rem!important;
    border-radius: 15px!important;
    text-indent: 1rem!important;
}

form#select_user_to_edit_form {
    display: none !important;
}

.bg-dark-circle{
    position: relative;
    overflow: hidden;
}

.bg-dark-circle:after{
    content: '';
    display: block;
    background: #000;
    border-radius: 50%;
    position: absolute;
    opacity: 0.25;
    z-index: 0;
    width: 1400px;
    height: 1700px;
    top: -500px;
    left: -200px;
}

@media only screen and (max-width: 1950px) {
    .bg-dark-circle:after{
        width: 1200px;
        height: 1400px;
        top: -350px;
        left: -200px;
    }
}


@media only screen and (max-width: 1650px) {
    .bg-dark-circle:after{
        width: 1100px;
        top: -350px;
    }
}

@media only screen and (max-width: 1450px) {
    .bg-dark-circle:after{
        width: 950px;
    }
}

@media only screen and (max-width: 1200px) {
    .bg-dark-circle:after{
        width: 850px;
        height: 1200px;
        top: -280px;
        left: -200px;
    }
}

@media only screen and (max-width: 1000px) {
    .bg-dark-circle:after{
        width: 780px;
    }
}

@media only screen and (max-width: 781px) {
    .bg-dark-circle:after{
        width: 2000px;
        height: 750px;
        top: -320px;
        left: -615px;
    }
}

.z-index-10{
    z-index: 10;
}

.affinity-hero-split{
    position: relative;
    overflow: hidden;
}

.affinity-hero-split figure.hero-bg-image{
    position: absolute;
    right: 0;
    top: -100px;
    clip-path: circle(50% at 76% 50%);
}

@media only screen and (max-width: 1325px) {
    .affinity-hero-split figure.hero-bg-image{
        clip-path: circle(50% at 84% 50%);
    }
    .page-id-11129 h1,
    .page-id-11129 .lottery-hero-content p{
        max-width: 400px !important;
    }
}

@media only screen and (max-width: 1055px) {
    .affinity-hero-split figure.hero-bg-image{
        clip-path: circle(50% at 95% 50%);
    }
}

@media only screen and (max-width: 781px) {
    .page-id-11129 h1{
        max-width: auto !important;
    }
}

.pos-rela{
    position: relative;
}

.affinity-intro figure.affinity-accent-circles{
    position: absolute;
    width: 320px;
    height: 280px;
    right: 450px;
    top: -200px;
}

@media only screen and (max-width: 781px) {
    .affinity-intro figure.affinity-accent-circles,
    .affinity-hero-split figure.hero-bg-image{
        display: none;
    }
}
