@charset "UTF-8";

/*
Theme Name: eagle-realstate
Theme URI: https://
Author: Gustavo Longon
Autor URI: http://
Description: Tema Wordpress para uso exclusvido dos clientes de Eagle Realstate.
Text Domain: eagle-realstate
Version: 1.0

*/




.construction {
    width: 100%;
    height: auto;
    display: flex;
}

.construction__img {
    width: 100%;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    margin-top: 0 !important;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    max-width: 1920px;
    margin: 0 auto !important;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    background: #FFF;
    color: #132323 !important;
}

input:focus,
input {
    outline: none;
    border: 0;
}

h2 {
    font-size: unset;
    display: inline-block;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --primary-color: #288011;
    --secondary-color: #BB6500;
    --terciary-color: #132323;
}

.main {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
    min-height: 760px;
    position: relative;
}

.ui__icon {
    margin-bottom: 10px;
}

.ui__display--none {
    display: none;
}

.ui__display--block {
    display: block;
}

.ui__title-box {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui__title-content {
    position: relative;
}

.ui__title {
    margin-bottom: 0px;
    font-size: 42px;
    font-weight: bold;
    line-height: 46px;
}

.ui__title-right {
    display: flex;
}

.ui__title-right {
    display: flex;
    width: 100%;
    max-width: 195px;
    justify-content: space-between;
}

.ui__back {
    display: flex;
    align-items: center;
    text-decoration: underline !important;
    margin-left: auto;
}

.ui__back:last-child {
    margin-left: auto;
}

.ui__btn-icon {
    margin-right: 10px;
}

.ui__title.white,
.ui__text.white {
    color: #FFF;
}

.ui__title-icon {
    position: absolute;
    bottom: -6px;
    left: 5px;
}

.ui__text {
    width: 100%;
    height: auto;
    margin-top: 30px;
    font-size: 16px;
    line-height: 20px;
}



/* ==========================================================================
   = breakpoint full ( 1600px - 100% )
   ========================================================================== */

/* = accordion
========================================================================== */

.custom-accordion {
    width: 100%;
    overflow: hidden;
}

.custom-accordion {
    width: 100%;
    overflow: hidden;
}

.custom-accordion.active {
    overflow: initial;
}

.custom-accordion-button {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    display: block;
    text-align: left;
    color: white;
    background-color: rgba(87, 87, 87, .8);
    font-size: 16px;
    font-weight: bold;
    border: 0   ;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    position: relative;
    line-height: 40px;
    overflow: hidden;
}

.custom-accordion:last-child  .custom-accordion-button {
    margin-bottom: 0px;
}

.custom-accordion-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
}

.custom-accordion-button-box {
    width: 100%;
    padding: 0 70px 0 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.custom-accordion-icon {
    width: 40px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: 0px;
    background: url('svg/arrow-accordion.svg') center no-repeat;
    transition: transform .3s;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.custom-accordion-button.active .custom-accordion-icon {
    transform: translate(-50%, -50%) rotate(180deg);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
}

.custom-accordion-content {
    max-height: 0;
    opacity: 0;
    transition: 0.3s ease-out;
}

.custom-accordion-content.active {
    opacity: 1;
}

.custom-accordion__item {
    display: block;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    color: #4b4b4b;

}

.custom-accordion__item.active {
    padding-left: 45px;
    color: var(--primary-color);
}

.custom-accordion__item.active::before {
    content: url('svg/check.svg');
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* = animation
========================================================================== */

@keyframes slide {
    0% {
       opacity: 0;
   } 8.333% {
       opacity: 1;
   } 33.333% {
       opacity: 1;
   } 41.666% {
      opacity: 0;
   } 100% {
       opacity: 0;
   }
 }

 @keyframes scale {
    0% {
       transform: scale(1);
   } 8.333% {
       transform: scale(1.1);
   } 33.333% {
       transform: scale(1);
   } 41.666% {
      transform: scale(1.1);
   } 100% {
       transform: scale(1);
   }
 }

 @keyframes rotateSending {
    100% {
        transform: rotate(360deg);
    }
}

 .page-transition {
    display: block;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
    animation: loading 2.5s normal;
}

    #wickylogo {
    width: 100%;
    height: auto;
    max-width: 350px;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: opacity 3s ease-out;
    }

    #wickylogo img{
        width: 100%;
    }

    #wickylogo::before {
        animation: fadeOut 5s ease-in-out;
        content: '';
        display: block;
        position: absolute;
        width: 360px;
        height: 500px;
        top: 0;
        background-color: #FFF;

    }

    @keyframes loading {
    0% {
    height: 100%
    }
    60% {
    height: 100%
    }
    100% {
    height: 0%;
    }

    }

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

    }

    @keyframes fadeOut {
    30% {transform: translateX(-125%);}
    100% {transform: translateX(255%)}
    }
    
    @media only screen and (max-width: 820px) {
    #wickylogo svg{width: 100px;}
    }


/* = scroll animations
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transition: none;
    pointer-events: none;
}

[data-animate="fade"].animated {
	opacity: 1;
	transition: transform 2.05s cubic-bezier(.19, 1, .22, 1), opacity 2.05s cubic-bezier(.19, 1, .22, 1);
    pointer-events: initial;
}

[data-animate="slide-top"] { transform: translateY(-150px); }
[data-animate="slide-bottom"] { transform: translateY(150px); }


[data-animate="slide-top"].animated,
[data-animate="slide-bottom"].animated {
    opacity: 1;
	transition: transform 1.2s cubic-bezier(.19, 1, .22, 1), opacity 1.05s cubic-bezier(.19, 1, .22, 1);
	transform: translateY(0);
    pointer-events: initial;
}

[data-animate="slide-left"] { transform: translateX(-150px); }
[data-animate="slide-right"] { transform: translateX(150px); }

[data-animate="slide-left"].animated,
[data-animate="slide-right"].animated {
    opacity: 1;
	transition: transform 1.2s cubic-bezier(.19, 1, .22, 1), opacity 1.05s cubic-bezier(.19, 1, .22, 1);
	transform: translateX(0);
    pointer-events: initial;
}

[data-animate="slide-diagonal-top-left"] { transform: translate(-150px, -150px); }
[data-animate="slide-diagonal-top-right"] { transform: translate(150px, -150px); }

[data-animate="slide-diagonal-top-left"].animated,
[data-animate="slide-diagonal-top-right"].animated {
    opacity: 1;
	transition: transform 1.2s cubic-bezier(.19, 1, .22, 1), opacity 1.05s cubic-bezier(.19, 1, .22, 1);
	transform: translate(0);
    pointer-events: initial;
}

[data-animate="scale"] { transform: scale(0); }

[data-animate="scale"].animated {
    opacity: 1;
	transition: transform .75s cubic-bezier(.19, 1, .22, 1), opacity .75s cubic-bezier(.19, 1, .22, 1);
	transform: scale(1);
    pointer-events: initial;
}


/* = header
========================================================================== */

header {
    width: 100%;
    background-color: transparent;
    padding: 0px 15px;
    position: relative;
    z-index: 1;
}

.header__content {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    width: 100%;
    height: auto;
    max-width: 260px;
    display: block;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__right {
    width: 100%;
    height: auto;
}

.header__border {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}


/* = nav
========================================================================== */

.nav__menu {
    width: 100%;
    height: auto;
}

.nav__list {
    width: 100%;
    height: auto;
    max-width: 365px;
    margin-left: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.nav__btn {
    display: block;
    color: var(--terciary-color) !important;
    font-weight: bold;
    position: relative;
}

.nav__btn::before {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    transition: 0.3s;
}

.nav__btn:hover::before,
.nav__btn.active::before {
    width: 100%;
}

.nav__language-btn {
    background-color: transparent;
    border: 0;
}


/* = index
========================================================================== */

.index__bg {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 900px;
    position: relative;
}

.index__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* opacity: 0;
    animation-name: slide;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
    overflow: hidden;
}

/* .index__bg-img-first { opacity: 1; }
.index__bg-img-second { animation-delay: 6s; }
.index__bg-img-third { animation-delay: 12s; } */

.index__bg-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 50%, #FFF 100%);

}

.index__top-content {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 190px;
}

.index__top-title {
    color: #FFF;
    font-size: 44px;
    font-weight: bold;
    line-height: 56px;
}

.index__top-subtitle {
    color: #ff7a11;
    font-size: 32px;
    font-weight: bold;
}

.index__top-btn {
    width: 100%;
    max-width: 180px;
    height: 45px;
    margin: 15px 0 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(40, 128, 17, .5);
    border-radius: 10px;
    color: #FFF;
    font-weight: bold;
    transition: .3s;
}

.index__top-btn:hover {
    color: #FFF;
    background-color: var(--primary-color);
}

.index__benefits {
    width: 100%;
    height: auto;
    margin-top: 60px;
    position: relative;
}

img.index__benefits-img {
    position: absolute;
    width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}
.grid-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

}

.grid-item:first-child {
    box-shadow: none;
    border-radius: 0px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.info-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.info-box div {
    text-align: center;
    max-width: 200px;
}

.info-box h3 {
    margin: 0;
    color: #f57c00;
    font-size: 18px;
    font-weight: bold;
}

.index__benefits-title {
    font-size: 80px;
    line-height: 82px;
    font-weight: bold;
}

.index__benefits-bottom {
    width: 100%;
    height: auto;
    margin-top: 60px;
    padding: 30px 0px;
    background: url('svg/bg-benefits.svg') 50% 0 no-repeat;

}

.benefits {
    width: 100%;
    max-width: 960px;
    height: calc(8 * (45px + 10px));
    position: relative;
  }
  
  .charts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  
  .chart__title {
    display: block;
    margin: 0 0 10px;
    font-weight: bold;
    opacity: 0;
    animation: 1s anim-lightspeed-in ease forwards;
  }
  
  .chart--horiz {
    overflow: hidden;
  }
  
  .chart__bar {
    height: 45px;
    margin-bottom: 10px;
    background: #3b8712;
    border-radius: 5px;
    opacity: 0;
  }

  .chart--horiz.animated .chart__bar {
    animation: 1.5s anim-lightspeed-in ease forwards;
  }


  .chart__bar:nth-of-type(8) {
    animation-delay: 2.1s;
  }
  
  .chart__bar:nth-of-type(7) {
    animation-delay: 1.9s;
  }
  
  .chart__bar:nth-of-type(6) {
    animation-delay: 1.7s;
  }
  
  .chart__bar:nth-of-type(5) {
    animation-delay: 1.5s;
  }
  
  .chart__bar:nth-of-type(4) {
    animation-delay: 1.3s;
  }
  
  .chart__bar:nth-of-type(3) {
    animation-delay: 1.1s;
  }
  
  .chart__bar:nth-of-type(2) {
    animation-delay: 0.9s;
  }
  
  .chart__bar:nth-of-type(1) {
    animation-delay: 0.7s;
  }
  
  .chart__label {
    padding-left: 10px;
    font-size: 20px;
    line-height: 45px;
    color: #FFF;

}
  
  @keyframes anim-lightspeed-in {
    0% {
      transform: translateX(-200%);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .index__localization {
    width: 100%;
    height: auto;
    margin-top: 60px;
    padding: 80px 0;
    background: url('img/banner-index4.jpg') 50% 0 no-repeat;

  }

  .index__localization-img {
    width: 100%;
    height: auto;
  }

  .index__partner {
    width: 100%;
    height: auto;
    padding: 60px 0;
    position: relative;
  }

  .index__partner-text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
  }

  .index__partner-content {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .index__partner-col {
    width: 100%;
    height: auto;
    padding-left: 2px !important;
    padding-right: 2px !important;
    position: relative;
  }

  .index__partner-box {
    width: 100%;
    height: 550px;
    border-radius: 3px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  }

  .index__partner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .index__partner-description {
    width: 100%;
    height: auto;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #FFF;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .8));
}

.index__partner-btn {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.index__partner-video {
    width: 100%;
    height: calc(100% - 30px);
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    transform: translateY(100%);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease-in-out;
}

.index__partner-video.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.index__partner-video-close {
    width: 100%;
    height: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
}

.index__partner-youtube {
    width: 100%;
    height: 100%;
}

.index__partner-link {
    width: 100%;
    height: auto;
    min-height: 85px;
    max-width: 200px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index__partner-link img {
    width: 100%;
    object-fit: contain;
}



/* = contact
========================================================================== */

.page-template-page-contact .main {
    padding: 0;
    min-height: auto;
}

.contact {
    width: 100%;
    height: 100%;
}

.contact__bg {
    width: 100%;
    height: 100%;
    min-height: 950px;
    position: relative;
}

.contact__bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.contact__form {
    width: 100%;
    max-width: 750px;
    padding: 40px 85px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

h1.contact__title {
    position: relative;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.contact__form-bg {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
}

/* = form
========================================================================== */

.form__contact {
    width: 100%;
    height: auto;
}

.form__input-box {
    width: 100%;
    height: auto;
    margin: 25px 0 0;
}

.form__label {
    width: 100%;
    height: auto;
    font-weight: bold;
    display: block;
}

.form__required {
    color: #ff0000;
}

.form__input,
.form__textarea {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #CCC;
    outline: 1px solid transparent;
    border-radius: 10px;
    transition: .3s;
}

.form__textarea {
    height: 160px;
}

.form__input:hover,
.form__textarea:hover,
.form__input:focus,
.form__textarea:focus {
    outline: 1px solid var(--primary-color) !important;
}

.form__btn {
    width: 100%;
    height: 40px;
    margin-top: 30px;
    display: block;
    background: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    border-radius: 10px;
}

.form__login .form__input {
    border: 1px solid #DDD !important;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.form__login .form__btn {
    max-width: 300px;
    margin: 20px auto 0;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

/* = projects
========================================================================== */

body.page-template-page-projects header {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.projects {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
}

.projects__subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 24px;
}

.projects__title {
    width: 100%;
    height: auto;
    margin: 60px 0px 30px; 
    text-align: center;
}

.projects__text {
    text-align: center;
}

.projects__tags {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.projects__tag-list {
    width: 100%;
    height: auto;
    max-width: 590px;
    margin: 0 0 30px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.projects__tag {
    width: auto;
    height: auto;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    display: block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-weight: bold;
    transition: .4s;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.projects__tag-item:last-of-type .projects__tag {
    margin-right: 0px;
}

.projects__tag.active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #FFF !important;
}

.projects__cards {
    height: auto;
    display: flex;
    align-items: center;
    transition: .5s;
    position: relative;
}

.projects__loading {
    width: 50px !important;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .8s;
    opacity: 0;
    z-index: -1;
}

.projects__icon {
    animation: rotateSending .6s linear infinite;
}

.projects__cards.loading {
    transform: translateY(30px);
    opacity: 0;
}

.projects__loading.loading {
    opacity: 1;
    bottom: -130px;
    z-index: 1;
}

.projects__item {
    width: 100%;
    height: 300px;
    display: block;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    transition: .5s;
    position: relative;
}

.projects__item:hover {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.4);
}

.projects__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 1s;
}

.projects__item:hover img {
    transform: scale(1.1);
}

.projects__item-title {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow-wrap: break-word;
    padding: 10px;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 1s;
}

.projects__item-title span {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 22px;
    line-height: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #CCC;
}

.projects__item:hover .projects__item-title {
    opacity: 1;
}

/* = project
========================================================================== */

body.single header {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.project {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
}

.project__title {
    width: 100%;
    height: auto;
    margin: 60px 0px 30px; 
    text-align: center;
}

.project__article {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.project__article-image {
    width: 100%;
    height: auto;
    position: relative;
}

.project__article-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    max-height: 600px;
    object-fit: cover;
}

.project__article-description {
    width: 100%;
    max-width: 429px;
    position: absolute;
    left: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateX(-50%);
    bottom: 17px;
    background: rgba(255, 255, 255, .8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.project__detail {
    display: flex;
    flex-direction: column;
    font-size: 32px;
    gap: 10px;
    align-items: center;
    color: #6e6e6ecc;
}

.project__detail-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.project__description-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}

.project__text p {
    font-size: 16px;
    line-height: 24px;
}


/* = login
========================================================================== */

.login {
    width: 100%;
    height: auto;
    min-height: 750px;
    position: relative;
}

.login-bg__img {
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login__box-title {
    display: block;
    font-size: 20px;
}

.login__box {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 0px auto 0;
    padding: 50px;
}

/* = init
========================================================================== */

.modal-backdrop.show {
    opacity: .9 !important;
}

.init__user-btn {
    margin-left: 20px;
    position: relative;
}

.notification__icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: -16px;
    right: -15px;
    animation: scale 2s linear infinite alternate-reverse;
}

.init__title {
    margin-bottom: 20px;
    font-size: 24px;
}

.empty__img {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: 0 auto;
}

p.empty__text {
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
    color: var(--primary-color);
}

/* USER-DATA */


.user__list {
    display: flex;
    flex-direction: column;
    align-items: start;
}

li.user__item {
    margin-bottom: 5px;
}

.user__item strong {
    text-transform: capitalize;
}

.register__form {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.form-steps-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.form-step {
    flex: 1 0 auto;
    width: 100%;
    height: 0px;
    box-sizing: border-box;
    padding: 20px;
    will-change: height;
    opacity: 0;
    transition: .3s;
}

.form-step.active {
    opacity: 1;
    height: auto;
    
}

.register__data-title {
    font-weight: bold;
    color: var(--primary-color);
}

.register__explain {
    font-size: 16px;
    font-weight: bold;
}

label.register__label {
    font-size: 16px;
}

.register__sublabel {
    color: var(--secondary-color);
    font-size: 14px;
}

input.register__input {
    width: 100%;
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 2px solid #CCC;
    font-size: 16px;
    transition: .3s;
}

.register__input:focus {
    border-bottom: 2px solid var(--primary-color);
}

.error {
    border-bottom: 2px solid red !important;
}

.register__btn-box {
    display: flex;
    justify-content: space-between;
}

.register__next-btn,
.register__prev-btn {
    width: 100%;
    max-width: max-content;
    height: 40px;
    padding: 0 10px;
    display: block;
    margin: 15px 0 0 auto;
    line-height: 40px;
    background-color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    color: #FFF;
    border-radius: 5px;
}

.register__prev-btn {
    margin: 15px auto 0 0;

}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px; 
    font-size: 16px;
}

.radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-input-invalid {
    display: none;
    align-items: center;
    color: red;
    position: absolute;
    padding: 5px 0;
    bottom: -45px;
    background: #FFFF;
    z-index: 1;
}

.radio-input-invalid-icon {
    margin-right: 10px;
}

.radio-input.invalid + .radio-input-invalid {
    display: flex;
}

.radio-custom {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.radio-input:checked ~ .radio-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.radio-input:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.radio-text {
    margin-left: 10px;
    color: #333;
}

.user_data-title {
    font-size: 18px;
    margin-bottom: 10px;
}

#user_names_select {
    width: 100%;
    height: 35px;
    padding: 0px 10px;
    -webkit-appearance: button;
    border-radius: 10px;
    border: 1px solid #CCC;
}

.investor__item {
    width: 100%;
    height: auto;
    display: block;
    padding: 5px;
    border: 1px solid #CCC;
    border-radius: 5px;
}

.investor__item-img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
}

.investor__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease-in-out;
}

.investor__item:hover .investor__item-img img {
    transform: scale(1.1);
}

.investor__item-description {
    width: 100%;
    height: auto;
    padding: 10px;
}

.investor__status {
    color: var(--primary-color);
    font-size: 12px;
}

.investor__item-title {
    width: 100%;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: bold;
}


/* = investor
========================================================================== */

.single-investor_content .main {
    padding-bottom: 0px;
    min-height: 0;
}


.single-investor_content aside {
    display: none;
}

.investor {
    width: 100%;
    height: auto;
    position: relative;
    color: #FFF;
    padding-bottom: 60px;
    background-color: #80808033;
}

.investor__img-box {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    position: absolute;
    background-color: rgba(0, 0, 0, 1);
    top: 0;
    left: 0;
}

.investor__img-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: .5;
    filter: blur(6.5px);
}


.custom-accordion-box {
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, .7);
    padding: 10px;
    border-radius: 10px;
}

.investor__gallery {
    width: 100%;
    height: 190px;
    margin-bottom: 15px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #ccc;
}

.investor__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
    border-radius: 5px;
    transition: .5s;
}

.investor__gallery:hover .investor__gallery-img {
    transform: scale(1.1);
}

.investor-right-box {
    width: 100%;
    height: 400px;
    padding: 10px;
    background: rgba(255, 255, 255, .5);
    border-radius: 10px;
}

.investor-right-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.investor__title {
    width: 100%;
    height: auto;
    margin: 30px 0 15px;
    font-weight: bold;
    text-align: center;
}

.investor__expense-title {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
}

.investor__expense-box {
    padding: 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px dashed var(--secondary-color);
}

.investor__expense-text {
    display: block;
    font-size: 18px;
    line-height: 24px;
}


.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
    overflow: auto;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #dededf;
    background-color: #eceff1;
    color: #000000;
    padding: 10px;
}

.table_component td {
    border: 1px solid #dededf;
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
}

.etapa-gallery__title {
    width: 100%;
    height: auto;
    margin-top: 30px !important;
    font-size: 34px;
    line-height: 38px;
    font-weight: bold;
    position: relative;
    text-align: center;
}

.etapa-gallery__title::before {
    content: '';
    width: 250px;
    height: 5px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.etapa-gallery__title::after {
    content: '';
    width: 200px;
    height: 5px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.etapa-images {
    position: relative;
    margin-top: 15px !important;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--secondary-color);
}

.etapa-title {
    position: relative;
    margin-bottom: 15px;
    
}

.etapa-title::before {
    content: '';
    width: 110px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
}

.etapa-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -3px;
    left: 0;
}

.no-result {
    margin: 60px auto 0;
    display: block;
}

.no-result-title {
    text-align: center;
}

.no-result-back {
    display: block;
    margin: 30px auto;
    text-align: center;
    font-size: 16px;
    text-decoration: underline !important;
}


/* = swiper
========================================================================== */

.swiper-wrapper {
    width: 100%;
    height: auto;
    gap: 5px;
}

.swiper__link {
    width: 100% !important;
    height: 250px !important;
    display: block;
    overflow: hidden;
}

.swiper__link:focus {
    border: 2px solid var(--secondary-color);
}

.swiper__link:hover img {
    transform: scale(1.1);
}

.swiper__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 2s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background-color: #FFF !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
}

/* = aside
========================================================================== */

.aside {
    width: 100%;
    height: 80px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.aside__content {
    width: 100%;
    height: auto;
}

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

.aside__title {
    font-weight: bold;
}

.aside__btn {
    width: 100%;
    height: 45px;
    max-width: 180px;
    margin-left: 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background-color: var(--secondary-color);
}

.aside__btn:hover {
    color: #FFF;
}



/* = footer
========================================================================== */

footer {
    width: 100%;
    height: auto;
    padding: 0 15px;
    border-top: 2px solid var(--secondary-color);
    color: var(--terciary-color) !important;
    position: relative;
}

.footer__whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 5px;
    z-index: 9999;
    animation: shake 6s infinite alternate;
}

.footer__icon {
    width: 50px;
}

.footer__top {
    width: 100%;
    height: auto;
    padding: 60px 0px;
    border-bottom: 1px solid var(--secondary-color);
}

.footer__logo {
    width: 100%;
    height: auto;
    max-width: 160px;
    margin: 0 auto;
    display: block;
}

.footer__logo-img {
    width: 100%;
    height: auto;
}

.footer__text {
    font-size: 12px;
    line-height: 14px;
}

.footer__title {
    font-size: 16px;
}

.footer__social {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__social-item {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    position: relative;
}

.footer__social-item:nth-child(1) {
    margin-right: 20px;
}

.footer__social-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer__social-icon path {
    fill: var(--secondary-color);
}

.footer__bottom {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    font-size: 12px;
}

.footer__copyright-link {
    color: var(--secondary-color) !important;
}

.footer__copyright-link:hover {
    text-decoration: underline !important;
}


/* ==========================================================================
= breakpoint xl 
========================================================================== */


@media (max-width: 1399px) {

    .ui__display--xl-none {
        display: none;
    }
    
    .ui__display--xl-block {
        display: block;
    }

    /* = accordion
    ========================================================================== */

    /* = animation
    ========================================================================== */

    /* = header
    ========================================================================== */

    /* = nav
    ========================================================================== */

    /* = index
    ========================================================================== */

    /* = contact
    ========================================================================== */

    /* = form
    ========================================================================== */

    /* = projects
    ========================================================================== */

    /* = project
    ========================================================================== */

    /* = login
    ========================================================================== */

    /* = init
    ========================================================================== */

    /* = investor
    ========================================================================== */

    /* = swiper
    ========================================================================== */

    /* = aside
    ========================================================================== */

    /* = footer
    ========================================================================== */




    
}

/* ==========================================================================
   = breakpoint lg 
   ========================================================================== */


@media (max-width: 1199px) {

    .ui__display--lg-none {
        display: none;
    }
    
    .ui__display--lg-block {
        display: block;
    }


    /* = accordion
    ========================================================================== */

    /* = animation
    ========================================================================== */

    /* = header
    ========================================================================== */

    /* = nav
    ========================================================================== */

    /* = index
    ========================================================================== */

    /* = contact
    ========================================================================== */

    /* = form
    ========================================================================== */

    /* = projects
    ========================================================================== */

    /* = project
    ========================================================================== */

    /* = login
    ========================================================================== */

    /* = init
    ========================================================================== */

    /* = investor
    ========================================================================== */

    /* = swiper
    ========================================================================== */

    /* = aside
    ========================================================================== */

    /* = footer
    ========================================================================== */



   

}

/* ==========================================================================
   = breakpoint md 
   ========================================================================== */


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


    .ui__text {
        font-size: 16px;
        line-height: 22px;
    }

    .ui__display--md-none {
        display: none;
    }
    
    .ui__display--md-block {
        display: block;
    }

    .ui__order-1 {
        order: 1;
    }
    
    .ui__order-2 {
        order: 2;
    }
    
    .ui__order-3 {
        order: 3;
    }
    
    .ui__order-4 {
        order: 4;
    }
    
    .ui__order-5 {
        order: 5;
    }
    
    .ui__order-6 {
        order: 6;
    }
    
    .ui__order-7 {
        order: 7;
    }
    
    .ui__order-8 {
        order: 8;
    }



    /* = accordion
    ========================================================================== */

    /* = animation
    ========================================================================== */

    /* = header
    ========================================================================== */

    .header__right {
        max-width: max-content;
        padding-left: 30px;
    }

    .header__menu {
        background-color: transparent;
        border: none;
    }

    /* = nav
    ========================================================================== */

    .nav__menu {
        width: 100%;
        height: 100%;
        background-color: #FFF;
        position: fixed;
        opacity: 0;
        top: 0;
        z-index: 2;
        right: 100%;
        transition: .5s;
    }

    .nav__menu.active {
        transform: translateX(100%);
        opacity: 1;
    }

    .nav__close {
        background-color: transparent;
        border: none;
        position: absolute;
        padding: 20px;
        right: 30px;
        top: 30px;
    }

    .nav__close svg path {
        fill: #000;
    }

    .nav__list {
        height: 100%;
        max-width: 100%;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    .nav__item {
        text-align: center;
        padding: 20px 0;
    }

    .nav__btn {
        color: var(--secondary-color) !important;
        font-size: 24px;
        position: relative;
    }

    /* = index
    ========================================================================== */


    .index__bg {
        height: 550px;
    }

    .index__top-content {
        padding-top: 90px;
    }

    .index__top-title {
        font-size: 40px;
        line-height: 44px;
        text-align: center;
    }

    .index__top-subtitle {
        text-align: center;
    }

    .index__top-btn {
        margin: 15px auto 0;
    }

    .grid-container {
        padding: 0px;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .index__benefits-title {
        font-size: 40px;
        line-height: 44px;
        font-weight: bold;
    }

    .info-box {
        flex-direction: column;
        box-shadow: none;
        padding: 0px;
    }

    .info-box div {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
        padding: 30px 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .info-box div:last-child {
        margin-bottom: 0px;
    }

    .info-box h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .info-box p {
        font-size: 16px;
        line-height: 20px;
        font-weight: bold;
        margin: 0;
    }

    .index__localization  {
        margin-top: 30px;
        padding: 40px 0px;
    }

    .benefits {
        height: calc(8*(35px + 10px));
    }

    .chart__bar {
        height: 35px;
    }

    .chart__label {
        font-size: 16px;
        line-height: 35px;
    }

    .index__partner {
        padding: 0px;
    }


    /* = contact
    ========================================================================== */

    .contact__form {
        border-radius: 0px;
        padding: 30px 15px;
    }

    /* = form
    ========================================================================== */

    /* = projects
    ========================================================================== */

    /* = project
    ========================================================================== */

    /* = login
    ========================================================================== */

    /* = init
    ========================================================================== */

    /* = investor
    ========================================================================== */

    /* = swiper
    ========================================================================== */

    .swiper {
        margin-bottom: 30px;
    }

    .swiper__link  {
        height: 115px !important;
    }

    /* = aside
    ========================================================================== */

    /* = footer
    ========================================================================== */
 


}

/* ==========================================================================
   = breakpoint sm
   ========================================================================== */


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

    .ui__display--sm-none {
        display: none;
    }
    
    .ui__display--sm-block {
        display: block;
    }

    .ui__btn {
        margin: 0 auto;
    }

    /* = accordion
    ========================================================================== */

    .custom-accordion-box {
        margin-bottom: 30px;
    }


    /* = animation
    ========================================================================== */

    /* = header
    ========================================================================== */

    /* = nav
    ========================================================================== */

    /* = index
    ========================================================================== */

    .index__partner-content {
        grid-template-columns: 1fr;
    }

    .index__partner-col {
        margin-bottom: 30px;
    }

    .index__partner-col:last-child {
        margin-bottom: 0px;
    }

    /* = contact
    ========================================================================== */

    /* = form
    ========================================================================== */

    /* = projects
    ========================================================================== */

    /* = project
    ========================================================================== */

    /* = login
    ========================================================================== */

    /* = init
    ========================================================================== */

    /* = investor
    ========================================================================== */

    .investor__item {
        margin-bottom: 30px;
    }

    /* = swiper
    ========================================================================== */

    /* = aside
    ========================================================================== */

    /* = footer
    ========================================================================== */

    .footer__text {
        margin-top: 30px;
    }
    

}

/* ==========================================================================
   = breakpoint xs
   ========================================================================== */


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

    .ui__display--xs-none {
        display: none;
    }
    
    .ui__display--xs-block {
        display: block;
    }

    .ui__title {
        font-size: 26px;
        line-height: 30px;
    }


    /* = accordion
    ========================================================================== */


    /* = animation
    ========================================================================== */

    /* = header
    ========================================================================== */

    /* = nav
    ========================================================================== */

    /* = index
    ========================================================================== */

    .index__top-title {
        font-size: 26px;
        line-height: 30px;
    }

    .index__top-subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .index__benefits-title {
        font-size: 26px;
        line-height: 30px;
    }

    .index__localization {
        padding: 0px;
    }

    /* = contact
    ========================================================================== */

    /* = form
    ========================================================================== */

    /* = projects
    ========================================================================== */

    .projects__tag-list {
        flex-direction: column;
    }

    .projects__tag-item {
        margin-bottom: 15px;
    }

    .projects__tag {
        text-align: center;
    }

    /* = project
    ========================================================================== */

    .project__article-description {
        max-width: 100%;
        position: static;
        transform: none;
        margin: 15px auto;
    }

    /* = login
    ========================================================================== */

    /* = init
    ========================================================================== */

    /* = investor
    ========================================================================== */

    .investor__item {
        margin-bottom: 30px;
    }


    /* = swiper
    ========================================================================== */

    /* = aside
    ========================================================================== */
    
    .aside {
        height: auto;
        padding: 20px 0;
    }

    .aside__box {
        flex-direction: column;
    }

    .aside__btn {
        margin: 20px 0 0 0;
    }


    /* = footer
    ========================================================================== */

    


   }
