html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
a:hover{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
blockquote{
    position: relative;
    padding: 10px 0;
}
blockquote::before{
    display: block;
    content: "";
    width: 37px;
    height: 4px;
    background: var(--wp--preset--color--primary);
    position: absolute;
    left: 0;
    top: 0px;
}
blockquote::after{
    display: block;
    content: "";
    width: 37px;
    height: 4px;
    background: var(--wp--preset--color--primary);
    position: absolute;
    right: 0;
    bottom: 0;
}
input{
    -webkit-border-radius:0;
    -webkit-appearance: none;
    border-radius:0;
}
.wpcf7-form .wpcf7-form-control-wrap{
    display: flex;
    margin: 0 auto 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.wpcf7-form .wpcf7-form-control-wrap input{
    border:2px solid var(--wp--preset--color--primary);
    width: 260px;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: var(--wp--preset--font-family--myriad-pro);
    font-size: var(--wp--preset--font-size--small);
}
.wpcf7-form .wpcf7-form-control-wrap input:focus{
    outline: none;
}
.wpcf7-form .wpcf7-form-control-wrap textarea{
    border:2px solid var(--wp--preset--color--primary);
    width: 260px;
    height: 160px;
    padding:  10px;
    box-sizing: border-box;
    font-family: var(--wp--preset--font-family--myriad-pro);
    font-size: var(--wp--preset--font-size--small);
    resize: none;
}
.wpcf7-form .wpcf7-form-control-wrap textarea:focus{
    outline: none;
}
.wpcf7-form  .wpcf7-submit{
    background: transparent;
    color: #000;
    width: 140px;
    height: 40px;
    display: block;
    margin: 0 auto;
    border:2px solid var(--wp--preset--color--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    font-size: var(--wp--preset--font-size--medium);
    font-family: var(--wp--preset--font-family--raleway);
    cursor: pointer;
}
.wpcf7-form  .wpcf7-submit:hover{
    background: var(--wp--preset--color--primary);
    color: #fff;
}
.entry-content{
    position: relative;
    width: var(--wp--style--global--content-size);
    margin: 0 auto;
}
.wp-block-cover,
.wp-block-image{
    width: 100vw;
    margin-left: calc((-100vw +  var(--wp--style--global--content-size)) / 2);
}
footer{
    display: flex;
    width: 100vw;
}
footer .wp-block-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}
footer .wp-block-group .wp-block-separator.has-text-color{
    width: 100vw;
  max-width: inherit !important;
}
footer .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer .footer-nav a span{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
footer .footer-nav a:hover span{
    color: var(--wp--preset--color--primary);
}
@media only screen and (max-width: 1200px) {
    .menu{
        width: 100vw;
        right: -100vw;
    }
    .header-menu ul{
        align-items: center;
    }
}
@media only screen and (max-width: 800px) {
    .block-residential .small-container{
        width: 100%;
    }
    .entry-content{
        width: 100%;
        padding: 0 5vw;
        box-sizing: border-box;
    }
    .wp-block-cover,
    .wp-block-image{
        margin: 0 -5vw;
    }
    .wp-block-image.alignfull img,
    .wp-block-image.alignwide img {
        height: 100%;
        width: 100%;
        min-height: 414px;
        object-fit: cover;
    }

}

