/*!
Theme Name: realis
Theme URI: https://owlet.studio/clients/realis
Author: Owlet Studio
Author URI: https://owlet.studio/
Description: A theme for RealisEstates
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: realis

*/


body {
    margin: 0;
}

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

iframe {
    max-width: 100%;
}

.rounded-25 {
    border-radius: 25px;
}

.rounded-t-25 {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

h1,h2,h3,h4,h5,h6,p,a,span, ul, li, ol {
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

a {
    text-decoration: none;
    transition: 300ms color ease;
}

a:hover {
    color: #e12739;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

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

#navigation-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    flex-direction: column;
    z-index: 10;
}

#navigation-wrapper.open {
    display: flex;
}

#navigation-wrapper .menu {
    padding: 0;
    margin: 0;
    gap: 20px;
    list-style: none;
    text-transform: uppercase;
    font-size: 1.75em;
    font-weight: 400;
    text-align: center;
}

#menu-button {
    cursor: pointer;
}
#menu-button span {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #174182;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    transition: ease all 300ms;
}

#menu-button:hover span:nth-of-type(1) {
    width: 20px;
}
#menu-button:hover span:nth-of-type(2) {
    width: 30px;
}
#menu-button:hover span:nth-of-type(3) {
    width: 35px;
}

.mobile-wrap {
    position: absolute;
    top: 25px;
    right: 25px;
}

.mobile-wrap svg{
    fill: #174182;
}

.social-links svg {
    width: 25px;
    transition: ease all 300ms;
}
.social-links svg:hover {
    fill: #e12739;
}

.footer-wrapper {
    padding-top: 45px;
}

.footer-wrapper .logo {
    text-align: center;
}

.footer-content h4 {
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
}

.menu-wrapper .menu {
    list-style: none;
    padding: 0;
}

.menu-wrapper .menu-item {
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact-wrap .title {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-wrap p {
    margin-top: 0;
    margin-bottom: 0;
}

.hero .container {
    padding-bottom: 25px;
    display: flex;
    flex-direction: column-reverse;
}
.hero .headlines {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .headlines h1 {
    font-size: 1.8em;
    margin: 0;
}

.button {
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #000000;
    padding: 7px 20px;
    border-radius: 15px;
    text-align: center;
    width: calc(100% - 40px);
    display: block;
    margin: 20px 0;
    transition: ease all 300ms;
}

.button:hover {
    background-color: #174182;
    color: white;
    border-color: #174182;
}

.slider-wrapper .slider {
    position: relative;
    margin-bottom: 25px;
    margin-top: 25px;
}

.slider-wrapper .slider img.active {
    opacity: 1;
}

.slider-wrapper .slider img.hidden {
    opacity: 0;
    pointer-events: none;
}

.slider-wrapper img {
    opacity: 0;
    pointer-events: none;
    width: 100%;
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    transition: ease all 1s;
    box-shadow: 0px 8px 30px 3px rgba(0,0,0,0.25);
}

.slider-wrapper .slide-0 {
    display: block;
    position: relative;
}

section.services {
    margin-top: 45px;
}

.services .top-headlines  h2 {
    font-size: 2.5em;
}
.services .top-headlines {
    /* text-align: center; */
    /* max-width: 576px;
    margin-left: auto;
    margin-right: auto; */
}

.service-wrapper {
    margin-top: 45px;
    margin-bottom: 45px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.service-wrapper h3 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    margin: 0;
}
.service-wrapper .title .underline {
    width: 0%;
    height: 2px;
    background: #ffffff;
    z-index: 2;
    position: relative;
    transition: ease all 300ms;
    margin: auto;
}

.service-wrapper:hover .title .underline {
    width: 25%;
}

.service-wrapper .background,
.service-wrapper .background-image,
.background-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: ease opacity 300ms;
}

.service-wrapper .background-shadow {
    background-color: #000000;
    opacity: 0.1;
    z-index: 1;
}

.service-wrapper:hover .background-shadow {
    opacity: 0.4;
}

.service-wrapper .background-image {
    opacity: 1;
}

.service-wrapper .background span {
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    transition: ease all 300ms;
    background-color: #ffffff;
    z-index: 2;
}

.service-wrapper .background .top,
.service-wrapper .background .right {
    top: -1px;
    right: -1px;
}

.service-wrapper .background .left,
.service-wrapper .background .bottom {
    bottom: -1px;
    left: -1px;
}

.service-wrapper .background .top,
.service-wrapper .background .bottom {
    height: 32%;
}

.service-wrapper .background .right,
.service-wrapper .background .left {
    width: 16%;
}

.service-wrapper:hover .background .top,
.service-wrapper:hover .background .bottom {
    /* height: 80%; */
    height: 100%;
}

.service-wrapper:hover .background .right,
.service-wrapper:hover .background .left {
    /* width: 54%; */
    width: 100%;
}

.footer-divider {
    margin-top: 25px;
    margin-bottom: 25px;
}

footer .notice {
    text-align: right;
    font-size: 13px;
}

section.colored {
    background-color: #f7f7f7;
}

.featured-wrapper,
.team-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.featured-wrapper .headlines,
.team-wrapper .headlines {
    padding-bottom: 50px;
}

.featured-wrapper .featured-info {
    margin-top: 0;
    background: #ffffff;
    padding: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.featured-wrapper .featured-info h3 {
    margin-top: 0;
}


.team-outer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-outer .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    background: #ffffff;
    padding-bottom: 10px;
}

.team-outer .position {
    color: #e12739;
    padding: 2px 10px;
    margin: 0;
    margin-top: -14px;
    background: #ffffff;
    border-radius: 25px;
}

.team-outer .name {
    margin: 0;
    margin-top: 15px;
    font-size: 1.2em;
}

.team-outer .social-links {
    margin-top: 15px;
}


.featured-outer .image {
    padding: 25px;
    background: #ffffff;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

.banner-wrapper {
    background-size: cover; 
    background-position: center; 
    padding: 100px 0;
    position: relative;
}
 

.background-shadow {
    background-color: #174182;
    opacity: 0.8;
}

.banner-content p {
    color: #ffffff;
}

.banner-content .pre-headline {
    color: #e12739;
    margin: 0;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 2em;
    margin: 0;
} 

.content-wrapper {
    padding: 50px 0;
}

.embed-wrapper iframe {
    width: 100%;
}

.wpcf7-form p br:first-of-type {
    display: none;
}

.wpcf7-form textarea,
.wpcf7-form input {
    padding: 13px 24px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #000000;
    border-radius: 15px;
    margin-top: 5px;
    width: calc(100% - 50px);
}

.wpcf7-form .wpcf7-submit {
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 8px 30px;
    width: 100%;
    transition: ease all 300ms;
    cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #174182;
    color: #ffffff;
}

.form .top-headlines {
    text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #174182;
    border-radius: 15px;
    margin: 0px 0px 50px 0px;
    padding: 8px 15px;
}

.wpcf7-not-valid-tip {
    color: #e12739;
    font-size: 0.6em;
    padding: 8px 15px;
}

.form-wrapper .wpcf7 {
    width: 100%;
    max-width: 520px;
}

.top-headlines h2 {
    margin-top: 40px;
}

.tai-content h2:first-of-type {
    font-size: 1.5em;
    margin-top: 0;
}

.projects-wrapper {
    padding: 5px 0 45px 0;
}

.projects-wrapper .top-headlines h2 {
    margin-bottom: 40px;
    text-align: center;
}

.projects-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.projects-outer .box{
    background-color: #ffffff;
    border-radius: 25px;
}

.project-info {
    padding: 10px;
}

.project-info h4 {
    margin: 0;
    font-weight: 500;
}

.project-info p {
    margin: 5px 0;
    font-size: 13px;
}
.projects-outer .box a:hover h4,
.projects-outer .box a:hover ~ .project-info a h4 {
    color: #e12739;
}

.slider-wrapper.project-slider .slider {
    margin: 0;
    margin-left: 0;
}

.project-slider {
    position: relative;
}

.project-slider .entry-header {
    position: absolute;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,212,255,0) 100%);
    border-radius: 25px;
}

.project-slider .entry-title {
    color: #ffffff;
    padding-left: 25px;
}

.entry-content .featured-info {
    padding: 0;
}

.entry-content .featured-info h2:first-of-type {
    margin-top: 0;
}

/* .small-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0; 
}*/
/* 
.info-box {
    width: 27%;
    text-align: center;
} */

.info-box .headline {
    color: #e12739;
    font-weight: 500;
    margin-bottom: 5px;
}

.small-info p:not(.headline) {
    margin-top: 0;
}

hr.middle-small {
    width: 15%;
    margin: auto;
}

.entry-content .image {
    padding: 0;
    margin-bottom: 25px;
}

.member_info .image img {
    width: 100%;
}

/**
 * Responsive
 */
@media (min-width: 576px) {
    .container {
        width: 540px;
    }
    .container-sm {
        width: 540px;
    }
    .footer-content {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-section {
        width: 50%;
    }
    .footer-wrapper .logo {
        text-align: left;
    }
    .footer-content .logo {
        order: 1;
    }
    .footer-content .pages {
        order: 3;
    }
    .footer-content .contact-info {
        order: 4;
    }
    .footer-content .social-info {
        order: 2;
    }
}


@media (min-width: 768px) {
    .container {
        width: 720px;
    }
    .container-sm {
        width: 720px;
    }
    .container-md {
        width: 720px;
    }
    #navigation-wrapper {
        display: block;
        font-size: 18px;
        font-weight: 500;
        position: relative;
        width: unset;
    }
    #navigation-wrapper .mobile-wrap {
        display: none;
    }
    #navigation-wrapper .menu {
        display: flex;
        font-size: 18px;
    }
    .menu-button-wrapper {
        display: none;
    }

    .hero .container {
        flex-direction: row;
    }
    .slider-wrapper .slider {
        margin-left: 25px;
    }
    .hero .headlines .button {
        display: inline-block;
        width: unset;
    }

    .services-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .services-wrapper .service-wrapper {
        width: 30%;
        max-width: 350px;
    }
    
    .form-wrapper {
        display: flex;
        justify-content: center;
    }

    .team-outer {
        justify-content: flex-start;
        gap: 20px;
    }

    .team-outer .box {
        margin-bottom: 20px;
    }

    .projects-wrapper .top-headlines h2 {
        text-align: left;
    }

    .projects-outer {
        justify-content: flex-start;
    }
}


@media (min-width: 992px) {
    .container {
        width: 960px;
    }
    .container-sm {
        width: 960px;
    }
    .container-md {
        width: 960px;
    }
    .container-lg {
        width: 960px;
    }

    .footer-section {
        width: 25%;
    }
    .footer-content .logo {
        order: 1;
    }
    .footer-content .pages {
        order: 2;
    }
    .footer-content .contact-info {
        order: 3;
    }
    .footer-content .social-info {
        order: 4;
    }
    section.hero {
        padding-bottom: 25px;
        padding-top: 25px;
    }
    .hero .headlines h1 {
        font-size: 3em;
    }
    .featured-outer {
        display: flex;
    }
    .featured-outer.text_image {
        flex-direction: row-reverse;
    }
    
    .featured-outer .image {
        width: calc(50% - 30px);
        padding-right: 30px;
    }
    .featured-outer .featured-info {
        width: 50%;
        margin-top: 0;
    }
    .small-headline {
        width: 75%;
    }
    .featured-wrapper h2,
    .team-wrapper h2 {
        font-size: 2.5em;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .team-outer .box a:hover h4,
    .team-outer .box a:hover ~ a h4{
        cursor: pointer;
        color: #e12739;
    }
    .featured-wrapper .headlines,
    .team-wrapper .headlines {
        padding-bottom: 25px;
    }
    .featured-info a.button {
        display: inline-block;
        width: auto;
    }
    .team-outer .box {
        margin-bottom: 0;
        transition: all ease 300ms;
    }

    .team-outer .box:hover,
    .projects-outer .box:hover {
        box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    }

    .featured-wrapper .image {
        background-color: transparent;
        padding: 0;
        padding-right: 25px;
        cursor: pointer;
    }
    .featured-wrapper .featured-outer.text_image .image {
        padding-right: 0;
        padding-left: 25px;
    }
    .featured-wrapper .featured-info {
        border-radius: 25px;
    }
    .banner-content .post-headline {
        width: 50%;
    }
    .project-info .button {
        display: inline-block;
        width: unset;
        margin: 10px 0;
    }
}


@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
    .container-sm {
        width: 1140px;
    }
    .container-md {
        width: 1140px;
    }
    .container-lg {
        width: 1140px;
    }
    .container-xl {
        width: 1140px;
    }
    .team-outer {
        justify-content: flex-start;
    }
}


@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
    .container-sm {
        width: 1320px;
    }
    .container-md {
        width: 1320px;
    }
    .container-lg {
        width: 1320px;
    }
    .container-xl {
        width: 1320px;
    }
    .container-xxl {
        width: 1320px;
    }
}
