/*
	Theme Name: Cubo
	Theme URI: https://studio-6.it
	Description: WordPress Theme
	Version: 1.0
	Author: Gabriel Nastase
	Author URI: http://gabrielnastase.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/


/*------------------------------------*\
    MAIN
\*------------------------------------*/


/* global box-sizing */

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* html element 62.5% font-size for REM use */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 1.6rem;
    color: #000;
    overflow-x: hidden;
    background: #f3f3f3;
}


/* clear */

.clear {
    clear: both;
    height: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

video {
    width: 100%;
}
.wp-block-video video,
.wp-video,
.mejs-container {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: unset !important;
}
figure {
    margin: 0;
}

p {
    font-weight: 400;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 200ms;
}

a:hover {
    color: #7C7C7C;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

h1,
h2 {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.8rem;
}

h2.bigger {
    font-size: 9rem;
    margin-bottom: 0;
}

h3 {
    font-size: 2.8rem;
    font-weight: 900;
}

.negative-left {
    margin-left: -70px;
    z-index: 100;
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.wp-block-separator,
hr {
    background: none;
    height: 2px;
    background: #DCDCDC;
    margin-left: 0;
    margin-bottom: 30px;
    border: none;
    width: 80px;
}

hr.center {
    margin: 0 auto 30px auto;
}

.aligncenter,
div.aligncenter {
    text-align: center;
}

.fondo-bianco {
    background: #fff;
}

.slider .fondo-bianco {
    padding: 30px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  

   opacity: 1;

}

input,
textarea,
select {
    background: #fff;
    padding: 7px;
    border: solid 2px #000;
    color: #000;
    transition: all 200ms ease-out;
    border-radius: 0;
    width: 100%;
}
input[type="checkbox"], input[type="radio"] {
    width: auto;
}


input:hover,
textarea:hover,
select:hover {
    border: solid 2px #000;
}

input:focus,
textarea:focus,
select:focus {
    border: solid 2px #7C7C7C;
    background: #fff;
    color: #7c7c7c;
    border-radius: 0!important;
}


  .wpcf7-list-item {
    margin-left: 0;
  }



.wpcf7-submit {
    max-width: 120px;
    border: none!important;
    background: #000!important;
    color: #fff!important;
    text-transform: uppercase;
    font-weight: 500;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 0;
}

.wpcf7-not-valid {
    border-color: #d7272a!important; 
}


/* Shrink */

.shrink {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.shrink:hover {
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}


/* Grow */

.grow {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.grow:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}


/* Bob */

@-webkit-keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

.dark {
    color: #fff;
}
.dark-blue {
    background: #111122;
}

.dark-grey {
    background: #111;
}
.dark a {
    color: #fff;
}
.dark a:hover {
    color: #d7272a;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.box-padding {
    padding: 40px;
}

.box-padding-20 {
    padding: 20px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.col-50 {
    width: 50%;
}

.col-45 {
    width: 45%;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-70 {
    width: 70%;
}

.col-75 {
    width: 75%;
}

.flex-container {
    display: flex;
}

.wrap {
    flex-wrap: wrap
}

.flex-3 .item {
    flex-basis: 33.3%;
}

.center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.fullheight {
    min-height: 100vh;
}
.fullwidth, .fullwidth img {
    width: 100%;
}

.btn {
    display: inline-block;
    color: #fff;
    padding: 7px 15px;
    background: #000;
    transition: all 300ms;
}

.btn:hover {
    background: #000;
    cursor: pointer;
}
.btn-neg {
    background: #fff;
    color: #000;
    border: solid 3px #000;
    border-style: inset;
}
.btn-neg:hover {
    background: #fff;
    color: #000;
}
.text-btn {
    font-style: italic;
    font-weight: 900;
}
.text-btn i {
    margin-left: 12px;
}
.text-btn:hover {
    color: #d7272a;
}

/* wrapper */

.wrapper {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto!important;
    position: relative;
}

.wrap-left {
    padding-left: calc( (100% - 1240px) / 2)!important;
}
.wrap-right {
    padding-right: calc( (100% - 1240px) / 2)!important;
}
.outer-wrapper {
    width: 90%;
    margin: 0 auto!important;
    position: relative;
}

.narrow-wrapper {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    position: relative;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
}
.overlay-dark {
    background-color: rgba(0, 0, 0, .3);
}



/* header */

.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: all 400ms ease-out;
    background: transparent;
}

.header .flex-container {
    justify-content: space-between;
    align-items: center;
}



/* logo */

.logo {
    display: flex;
    align-items: center;
}

.logo .logo-img {
    width: 240px;
    height: auto;
}


/* nav */

.header-icons {
    font-size: 2rem;
}

.header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header ul li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    color: #000;
}

.header ul li a {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 200ms;
    border-bottom: solid 2px transparent;
}

.header ul li a:hover {
    border-bottom: solid 2px #000;
}

.header ul li .notification-dot {
    position: absolute;
    bottom: -3px;
    right: -8px;
    color: #fff;
    background: #D33434;
    width: 16px;
    height: 16px;
    line-height: 15px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
}
.header ul li .cart-empty {
    visibility: hidden;
}
.header ul li .cart-not-empty {
    visibility: visible;
}

.header .nav .current_page_item a, .current_page_item a {
    border-bottom: solid 2px #000;
}
.header-icons li a:hover {
    border-bottom: solid 2px transparent!important;
}
.logged-in .header-icons li a {
    border-bottom: solid 2px #000!important;
}
.search-bar {
    position: fixed;
    top: 120px;
    right: 5%;
    width: 420px;
    display: none;
    z-index: 350;
}
.overlay-search {
    display: none;
    position: fixed;
}
.search-bar input {
    width: calc( 100% - 170px);
}
.search-bar .is-form-style input.is-search-input {
    border: solid 2px #000!important
}
.search-bar .is-form-style input.is-search-input:focus {
    border: solid 2px #7c7c7c!important;
    color: #7c7c7c!important;
}
div.is-ajax-search-details, div.is-ajax-search-result {
    background: #fff!important;
    width: 410px!important;
}
.is-ajax-search-details a, .is-ajax-search-result a {
    color: #000!important;
}
#searchBtn {
    cursor: pointer;
}

.lens-active i {
    color: #7c7c7c;
}

.search-bar button {
    float: right;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px 0;
    border: solid 1px #000;
    background-color: #000;
    color: #fff;
    transition: all 500ms ease-out;
    border-radius: 0;
    font-weight: 500;
    width: 140px;
}

.header-nero {
    background: #000;
}
.header-nero ul li,
.header-nero ul li a {
    color: #fff!important;
}

.header-nero ul li a:hover {
    border-bottom: solid 2px #fff;
}

.header-nero .nav .current_page_item a {
    border-bottom: solid 2px #d7272a;
}

.nav ul li {
    margin: 0 15px;
}

.nav .menu-item-has-children {
    position: relative;
}

.nav ul li .sub-menu {
    position: absolute;
    top: 15px;
    left: 0;
    width: 180px;
    background: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: all 200ms ease-out;
    visibility: hidden;
    opacity: 0;
    padding: 15px;
}

.nav .menu-item-has-children:hover .sub-menu {
    top: 20px;
    visibility: visible;
    opacity: 1;
}

.nav ul li .sub-menu li {
    display: block;
    margin: 10px;
    border-bottom: none;
}

.nav ul li .sub-menu li a:hover {
    color: #333;
}


/* menu btn */

#nav-icon3 {
    width: 20px;
    height: 22px;
    z-index: 995;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon3.open {
    opacity: 1!important;
}


/* menu  button */

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 8px;
}

#nav-icon3 span:nth-child(4) {
    top: 16px;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.margin-top-80 {
    margin-top: 80px;
}

.content-padding, .content  {
    padding: 100px 0;
}

.more-content-padding {
    padding: 120px 0;
    margin-top: -60px;
}

.no-padding-top {
    padding-top: 0;
}

.less-content {
    padding: 20px 0;
}

.first-content {
    padding-top: 180px;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.vertical-center {
    display: table;
    height: 100%;
}

.vertical-center .child {
    display: table-cell;
    vertical-align: middle;
}
.margin-top-80 {
    margin-top: 80px;
}
.no-margin {
    margin: 0!important;
}
.no-gap {
    gap: 0;
}
.no-margin-cols .wp-block-column {
    margin: 0!important;
}
.cover-cols .wp-block-cover {
    padding: 40px;
}
.width-100, .width-100 img {
    width: 100%!important;
}

/* sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: -500px;
    height: 100%;
    width: 320px;
    padding: 80px 5%;
    background: #fff;
    z-index: 992;
    color: #2e251d;
    box-shadow: 10px 10px 60px rgba(50, 50, 84, .15);
    transition: all 500ms ease-out;
    text-align: left;
    z-index: 850;
}

.sidebar .child {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 0;
    padding-top: 50px;
    position: relative;
    box-sizing: content-box;
}

.sidebar .child::-webkit-scrollbar {
    display: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.sidebar h3 {
    margin-top: 30px;
}

.sidebar .sub-menu {
    padding-top: 0;
    padding-left: 10px;
}

.sidebar .woocommerce .widget_shopping_cart .buttons a,
.sidebar .woocommerce.widget_shopping_cart .buttons a {
    background: #999;
}

.sidebar .sub-menu {
    border-left: solid 1px rgba(0, 0, 0, .08);
}

.sidebar .sub-menu li {
    margin-bottom: 10px;
}



.grecaptcha-badge{display:none;}
/* footer */
.footer {
    font-size: 1.4rem;
}
.footer h5 {
    font-size: 1.6rem;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul li {
    display: block;
    margin-bottom: 20px;
}

.footer i {
    font-size: 1.8rem;
    min-width: 30px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/


.slider {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.slider-top {
    margin-top: 45px;
}

.slider .item {
    position: relative;
}

.slider .item .overlay {
    top: 25%;
}

.slider .item .overlay h2 {
    margin: 0;
    color: #000;
}

.owl-nav {
    position: absolute;
    top: 45%;
    left: 1%;
    font-size: 1.8rem;
    width: 98%;
}
.owl-nav img {
    width: 30px;
    height: 30px;
}
.owl-prev {
    float: left;
    margin-left: -40px;
}

.owl-next {
    float: right;
    margin-right: -40px;
}

.wc-block-grid__product {
    text-align: left;
}

.wc-block-grid__product-image img {
    border-radius: 0;
    box-shadow: none;
    border: solid 1px #f2f2f2;
    height: auto;
}

.wc-block-grid__product .add_to_cart_button {
    background-color: #fff;
    color: #5B5B5B;
    width: 100%;
    display: block;
    text-align: left;
}

.wc-block-grid__product-add-to-cart {
    width: 100%;
    text-align: left;
}

.wc-block-grid__product-title {
    font-size: 1.4rem;
}

.wc-block-grid__product-onsale {
    float: right;
    border: none;
    margin-top: -2px;
    color: #d7272a;
}

.loop-thumb {
    max-width: 380px;
    margin-right: 30px;
}

.loop-thumb img {
    width: 100%;
    border-radius: 0;
}

.loop-block {
    margin-bottom: 10px;
}

.loop-block .date {
    font-size: 1.2rem;
    opacity: .5;
    margin: 0;
}

.date {
    font-size: 1.2rem;
    opacity: .5;
    margin: 0;
    display: block;
    margin-bottom: 20px;
}

.loop-block h2 {
    margin-bottom: 0;
    font-size: 2.6rem;
    text-transform: none;
}



.wp-block-button__link {
    font-weight: 900;
    font-size: 1.4rem;
    padding: 20px 30px!important;
}

.testimonials i {
    font-size: 2.2rem;
}
.testimonials .wp-block-column {
    padding: 30px;
    border: solid 2px #111;
}
.cols-staff .wp-block-cover__inner-container {
    padding: 15px;
}

.cols-form .section {
    width: 30%;
    margin-right: 5%;
}
.cols-form .section {
    font-size: 3rem;
}
.cols-form .fields {
    width: 65%;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/


/*------------------------------------*\
	WOOCOMMERCE
\*------------------------------------*/
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    border-radius: 0;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    transition: all 200ms;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background: #d7272a;
    color: #fff;
}
.woocommerce ul.products li.product .price {
    color: #555;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #000;
    transition: all 200ms;
    color: #fff;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background: #d7272a;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #000;
}
.woocommerce span.onsale {
    background-color: #fff;
    color: #d7272a;
    border-radius: 0;
    padding: 7px;
}
#coupon_code {
    border: solid 2px #000;
    min-width: 200px;
    padding: 8px;
}
.woocommerce-tabs {
    background: #fff;
    padding: 18px;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
    display: block;
    padding: 3px;
    background-color: #d7272a;
    transition: all 200ms;
    margin-bottom: 3px;
}
.woocommerce-MyAccount-navigation ul li a {
    color: #fff;
    padding: 10px;
    display: block;
}
.woocommerce-MyAccount-navigation ul li:hover {
    background-color: #111122;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    border-radius: 0;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/



@media (min-width: 782px) {
    .wp-block-column:not(:first-child) {
        margin-left: 12px;
        margin-top: 0;
    }
}

@media only screen and (max-width:1200px) {
    h1, h2 {
        font-size: 4rem;
    }
    h2.bigger {
        font-size: 6rem;
    }

}

@media only screen and (max-width:1000px) {


    .wrapper {
        max-width: 90%;
        width: 90%;
    }

    .wrap-left {
        padding-left: 5%!important;
    }
    .wrap-right {
        padding-right:5%!important;
    }

    .narrow-wrapper {
        max-width: 80%;
    }

    .nav {
        display: none;
    }

    #nav-icon3 {
        display: block;
    }
    .logo img {
        margin-left: 20px;
    }
    h1, h2 {
        font-size: 3.2rem;
    }
    .content-padding, .content {
        padding: 60px 0;
    }
    .more-content-padding {
        padding: 100px 0;
        margin-top: -40px;
    }
    
    .no-padding-top {
        padding-top: 0;
    }
    
    .less-content {
        padding: 20px 0;
    }
    
    .first-content {
        padding-top: 140px;
    }
    
    .no-padding-bottom {
        padding-bottom: 0;
    }
    .testimonials .wp-block-column {
        padding: 10px;
    }


}

@media only screen and (max-width:782px) {
    body {
        font-size: 1.4rem;
    }
    h1, h2 {
        font-size: 2.8rem;
    }
    h3 {
        font-size: 2.2rem;
    }

    h2.bigger {
        font-size: 4rem;
    }
    .logo .logo-img {
        max-width: 140px;
    }
    #coupon_code {min-width: 230px;}
    .search-bar {
        right: 2.5%;
        width: 95%;
    }
    .owl-nav {
        top: 40%;
    }
    .owl-next {
        margin-right: -2%;
    }
    .owl-prev {
        margin-left: -2%;
    }
    .wp-block-cover {
        min-height: 500px!important;
    }
    .wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
        background-attachment: scroll;
    }
    .wp-block-button__link {
        padding: 12px 15px!important;
    }
    .testimonials .wp-block-column {
        margin-bottom: 20px;
    }

}
@media only screen and (max-width:768px) {
    #nav-icon3 {
        top: 45px;
    }
}

@media only screen and (max-width:600px) {
    .content-padding, .content {
        padding: 40px 0;
    }
    .narrow-wrapper {
        max-width: 90%;
    }

    .more-content-padding {
        padding: 60px 0;
        margin-top: -30px;
    }
    
    .no-padding-top {
        padding-top: 0;
    }
    
    .less-content {
        padding: 20px 0;
    }
    
    .first-content {
        padding-top: 100px;
    }
    .wp-block-button__link {
        padding: 15px 20px!important;
    }
    .no-padding-bottom {
        padding-bottom: 0;
    }

    .mobile-center {
        text-align: center;
    }
    .wrap-left {
        padding-right: 5%;
    }
    .wrap-right {
        padding-left:5%;
    } 
    .cols-form .section {
        width: 20%;
        margin-right: 2%;
    }
    .cols-form .section {
        font-size: 1.8rem;
    }
    .cols-form .fields {
        width: 78%;
    }
    .cols-2-mobile {
        flex-wrap: nowrap;
    }
    .cols-2-mobile .wp-block-column {
        margin-left: 7px!important;
    }
    .cols-2-mobile .wp-block-column:first-child {
        margin-left: 0!important;
    }
    .testimonials {
        margin-bottom: 0!important;
    }
   
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}


/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.wp-block-cover, .wp-block-cover-image {
    padding: 0;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}


/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}

table {
    border-radius: 0!important;
}