@font-face {
    font-family: "Averta-Light";
    src: url("/static/fonts/Averta-Light.otf");
}

@font-face {
    font-family: "Averta-Regular";
    src: url("/static/fonts/Averta-Regular.otf");
}

@font-face {
    font-family: "Averta-SemiBold";
    src: url("/static/fonts/Averta-SemiBold.otf");
}

@font-face {
    font-family: "Averta-Bold";
    src: url("/static/fonts/Averta-Bold.otf");
}

@font-face {
    font-family: "Roboto";
    src: url("/static/fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("/static/fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("/static/fonts/Montserrat-Regular.otf");
}

@font-face {
    font-family: "Montserrat-Light";
    src: url("/static/fonts/Montserrat-Light.otf");
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("/static/fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("/static/fonts/Montserrat-Medium.ttf");
}

body {
    font-family: 'Roboto';
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat-Bold';
    margin: 0;
    color: #333;
    text-transform: uppercase;
}

p {
    font-family: 'Montserrat';
    letter-spacing: 1px;
    line-height: 1.25;
}

h1, h2 {
    font-size: 50px;
    letter-spacing: 5px;
}

h3 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 3px;
}

h4 {
    font-size: 20px;
}

span {
    font-size: 12px;
}

@media (max-width: 1023px) {
    h1, h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-family: 'Averta-Regular';
        font-size: 20px;
    }
}

#toast-container > div {
    opacity: 1;
}

/*#region MARQUEE*/

.marquee {
    width: 100%;
    display: flex;
    height: 35px;
    align-items: center;
    background-color: #d9a157;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.marquee ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin: unset;
    padding: unset;
    list-style-type: none;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 12px;
    font-family: Averta-Regular;
    color: white;
}

.marquee-phone{
    display: flex;
}
.marquee-phone img {
    height: 15px;
    fill: white;
    padding-right: 8px;
}

.marquee ul li {
    padding-left: 15px;
}

.marquee ul li span {
    font-weight: bold;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/*#endregion MARQUEE*/

/*#region HEADER*/
.header {
    position: fixed;
    background: white;
    color: black;
    width: 100%;
    height: 105px;
    z-index: 10000;
}

    .header a {
        color: black;
        text-decoration: none;
    }

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1364px;
    height: 70px;
    padding-left: 15px;
    margin: auto;
}

.header__column-left {
    padding: 10px 20px;
}

    .header__column-left img {
        max-height: 50px;
    }

    .header__column-left a {
        display: flex;
        align-items: center;
    }

.header__column-right {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    margin-right: 30px;
}

.header__menu-item {
    font-family: 'Averta-Regular';
    font-size: 12px;
    margin-right: 15px;
}

.header__contact-details {
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    border-left: 1px solid;
    border-right: 1px solid;
    min-width: 275px;
}

.header__phone,
.header__whatsapp {
    display: flex;
    font-family: 'Averta-Regular';
    font-size: 12px;
    white-space: nowrap;
    align-items: center;
}

    .header__phone img,
    .header__whatsapp img {
        width: 20px;
        height: 20px;
    }

    .header__phone img,
    .header__whatsapp img {
        margin-right: 7px;
    }

    .header__phone a,
    .header__whatsapp a {
        text-decoration: none;
    }

.header__social-icons {
    display: flex;
    align-items: center;
    margin: 0;
    padding-left: 25px;
}

    .header__social-icons img {
        width: 20px;
        height: 20px;
    }

    .header__social-icons li::marker {
        content: '';
    }

    .header__social-icons li {
        margin-right: 15px;
    }

.header__get-in-touch {
    font-family: 'Averta-Regular';
    font-size: 12px;
    background: #303030;
    height: 70px;
    border: 0;
    color: white;
    padding: 28px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
}

.property-filter .header {
    display: none;
}

@media (max-width: 1439px) {
    .header__menu {
        margin-right: 0px;
    }

    .header__contact-details {
        padding: 10px 10px;
    }

    .header__social-icons {
        padding-left: 10px;
    }
}

@media (max-width: 1023px) {
    .header__menu,
    .header__contact-details,
    .header__whatsapp,
    .header__social-icons {
        display: none;
    }
   
    .header {
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 767px) {

    .header__column-left {
        padding: 10px;
    }

    .header__column-left img {
        max-width: 143px;
    }

    .header__get-in-touch {
        background: #4D4D4D;
        padding: 21px;
    }
}

/*#endregion HEADER*/

/*#region GET IN TOUCH*/
.contact-dialog {
    background: white;
    position: fixed;
    top: 150px;
    z-index: -10;
    border: 0;
    border-radius: 6px;
    width: 398px;
    padding: 30px;
    margin: auto;
    left: 50%;
    transform: translate(-50%);
}

.contact-dialog__close-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.contact-dialog h3 {
    padding-right: 100px;
    line-height: 35px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.contact-dialog h4 {
    font-family: 'Averta-Regular';
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-dialog input {
    width: 249px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #333333;
    border-radius: 8px;
    padding-left: 13px;
    outline: none;
    cursor: pointer;
}

    .contact-dialog input::-webkit-outer-spin-button,
    .contact-dialog input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.contact-dialog__input-phone-prefix {
    width: 52px !important;
    margin-right: 12px;
}

.contact-dialog__input-phone-number {
    width: 200px !important
}

.contact-dialog__newsletter {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.contact-dialog p {
    font-family: 'Averta-Light';
    font-size: 16px;
    margin:0;
    padding-left: 16px;
    padding-right: 90px;
}

.contact-dialog input[type="checkbox"] {
    font-family: 'Averta-Regular';
    font-size: 15px;
    background: #333333;
    color: white;
    border-radius: 8px;
    width: 24px;
    height: 24px;
    margin: 0;
}

.contact-dialog input[type="submit"] {
    font-family: 'Averta-Regular';
    font-size: 15px;
    background: #333333;
    color: white;
    border-radius: 8px;
    width: 100%;
    height: 49px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .contact-dialog {
        top: 100px;
        width: 290px;
        padding: 10px;
    }

        .contact-dialog h3 {
            padding-right: 0;
            font-size: 20px;
            letter-spacing: 2px;
            margin-bottom: 0px;
        }

        .contact-dialog h4 {
            font-size: 16px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .contact-dialog input {
            height: 32px;
        }

    .contact-dialog__input-phone-number {
        width: 165px !important;
    }

    .contact-dialog input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }

    .contact-dialog p {
        font-size: 14px;
        padding-right: 30px;
    }

    .contact-dialog__newsletter {
        margin-top: 10px;
    }

    .contact-dialog input[type="submit"] {
        margin-top: 30px;
        margin-left: 0;
    }
}

/*#endregion GET IN TOUCH*/

/*#region HERO */

.hero {
    position: relative;
}

.hero__video {
    width: 100%;
    max-height: calc(100vh - 70px);
    min-height: 450px;
    object-fit: cover;
}

.hero__container {
    position: relative;
    margin-top: -5px;
}

.search {
    position: absolute;
    display: flex;
    top: -125px;
    border-radius: 5px;
    max-width: 1364px;
    background: white;
    box-shadow: 0px 3px 15px #00000026;
    white-space: nowrap;
    z-index: 1001;
    left: 0;
    right: 0;
    margin: auto;
}

.tab__search {
    top: -125px;
    border-radius: 5px;
    max-width: 1364px;
    background: white;
    box-shadow: 0px 3px 15px #00000026;
    white-space: nowrap;
    margin: auto;
    display: block;
    position: fixed;
    background: #fbfbfb;
    width: 1200px;
    padding: 20px 30px 20px 30px;
    visibility: hidden;
    z-index: 10000;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
}

.tab__search .search__button {
    width: fit-content;
    margin: auto;
    margin-top: 16px;
}

.search__filters {
    display: flex;
    padding: 17px 0 16px 23px;
    width: 100%;
}

.search__input {
    align-items: stretch;
    border-right: 1px solid #e5e4e4;
    padding-left: 9px;
    flex: 1;
}

.search__name {
    font-family: 'Averta-Regular';
    font-size: 15px;
    letter-spacing: 1.5px;
    padding-left: 3px;
}

.search__selection {
    position: relative;
    cursor: pointer;
    padding-top: 15px;
    padding-right: 30px;
}

    .search__selection select {
        background: transparent;
        border: 0;
        outline: none;
        font-size: 16px;
        cursor: pointer;
        width: -webkit-fill-available;
    }

    .search__selection span {
        font-family: 'Roboto-Light';
        font-size: 15px;
    }

.search__input:last-of-type {
    border-right: 0;
}

.hero__dropdown-content {
    display: none;
    top: 50px;
    left: -25px;
    position: absolute;
    background-color: white;
    min-width: 293px;
    overflow: auto;
    max-height: 200px;
    border: 1px solid #ddd;
    z-index: 1;
}

    .hero__dropdown-content a {
        color: #333;
        text-decoration: none;
        padding: 10px 30px;
    }

.show {
    display: grid;
}

.search__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Averta-Regular';
    font-size: 22px;
    background-color: #baa48c;
    color: white;
    border-radius: 0 5px 5px 0;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;

}

.search__button--mobile {
    display: none;
}

#search__overlay,
#tab__search__overlay
#contact__overlay {
    display: none;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
}

@media (max-width: 1023px) {
    .search {
        display: block;
        position: fixed;
        background: #fbfbfb;
        width: -webkit-fill-available;
        padding: 20px 30px 20px 30px;
        margin: 0 20px;
        visibility: hidden;
        z-index: 10000;
        top: 100px;
    }

    .tab__search {
        display: block;
        position: fixed;
        background: #fbfbfb;
        width: -webkit-fill-available;
        padding: 20px 30px 20px 30px;
        margin: 0 20px;
        visibility: hidden;
        z-index: 10000;
        top: 100px;
        width: -webkit-fill-available;
        min-width: fit-content;
        left: unset;
        right: unset;
        transform: none;
    }

    .search__selection {
        padding-right: 0px;
    }

    .search__filters {
        display: block;
        width: -webkit-fill-available;
        padding: 0;
    }

    .search__input {
        padding: 15px 0 30px 0;
        border: 0;
    }

    .hero__dropdown-content {
        min-width: -webkit-fill-available;
        left: 0;
    }

    .tab__search .search__button {
        width: fit-content;
    }

    .search__button {
        font-size: 18px;
        padding: 15px 20px;
        border-radius: 5px;
        margin: auto;
    }

    .search__button--mobile {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        z-index: 10;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__container {
        padding: 0 20px;
    }

    .search {
        max-width: calc(100% - 20px);
    }

    .tab__search {
        display: block;
        position: fixed;
        background: #fbfbfb;
        width: -webkit-fill-available;
        padding: 20px 30px 20px 30px;
        margin: 0 20px;
        visibility: hidden;
        z-index: 10000;
        top: 100px;
        width: 800px;
        top: 300px;
    }
}

/*#endregion HERO */

/*#region PROPERTY */

.projects__container {
    padding: 60px 0 60px 0px;
    margin: auto;
    max-width: 1364px;
    background-color: white;
}

.projects__info {
    display: flex;
}

.projects__description p {
    font-size: 12px;
    max-width: 832px;
    padding: 20px 0;
}

.projects__cards {
    display: grid;
    padding: 30px 0;
    grid-template-columns: 1fr 1fr 1fr;
}

.projects__card {
    position: relative;
    background: #FFF;
    box-shadow: 0px 5px 15px #0000000F;
    margin: 25px;
    min-width: fit-content;
}

.projects__card-image {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.projects__card-info {
    padding: 30px 30px 20px 30px;
}

    .projects__card-info h3 {
        font-family: 'Averta-SemiBold';
        font-size: 25px;
        text-transform: uppercase;
    }

.projects__progress {
    width: 180px;
}

    .projects__progress span {
        font-family: 'Averta-Regular';
        font-size: 10px;
        letter-spacing: 1px;
    }

.projects__progress-bar {
    background-color: #dedede;
    border-radius: 13px;
    margin-top: 5px;
}

    .projects__progress-bar > div {
        background-color: #707070;
        height: 3px;
        border-radius: 10px;
    }

.projects__card-details {
    font-family: 'Averta-Regular';
    font-size: 12px;
}

.projects__card-button {
    display: block;
    text-align: center;
    color: #333;
    font-family: 'Averta-Regular';
    font-size: 15px;
    background: #F6F6F6;
    border-radius: 5px;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
}

.projects__tab {
    background: #FFFFFF;
    box-shadow: 0px 5px 15px #0000000F;
    border-radius: 5px;
    padding: 6px 8px;
    height: fit-content;
    min-width: 516px;
}

.projects__tab-button {
    font-family: 'Averta-Regular';
    font-size: 15px;
    background-color: #F3F3F3;
    color: #333;
    width: 256px;
    padding: 9px 76px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    height: fit-content;
    cursor: pointer;
    border: 0;
}

    .projects__tab-button--active,
    .projects__tab-button:hover {
        background-color: #585858;
        color: white;
    }

@media (max-width: 1440px) {
    .projects__info {
        display: block;
    }

    .projects__tab {
        margin-left: 70px;
        width: fit-content;
    }
}

@media (max-width: 1023px) {
    .projects__description {
        padding: 0 30px 40px 30px;
    }

    .projects__container {
        padding: 120px 10px 50px 10px;
    }

    .projects__tab {
        margin-left: 30px;
    }

    .projects__cards {
        padding: 10px 10px 50px 10px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .projects__cards::-webkit-scrollbar-track {
        margin-left: 50px;
        margin-right: 50px;
    }

    .projects__cards {
        grid-template-columns: 1fr;
    }

    .projects__card {
        margin: 25px 0;
    }

    .projects__tab {
        min-width: auto;
        width: min-content;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .projects__description {
        padding: 0 70px 40px 70px;
    }

    .projects__container {
        padding: 120px 50px 50px 10px;
    }

    .projects__cards {
        grid-template-columns: 1fr 1fr;
        padding: 50px;
    }
}

/*#endregion PROJECT SECTION */

/*#region PORTFOLIO */

.portfolio {
    background-color: #fff;
}

.portfolio__container {
    max-width: 1642px;
    padding-bottom: 120px;
    margin: auto;
}

.portfolio__info {
    padding: 60px 80px;
    margin: auto;
    max-width: 1364px;
}

    .portfolio__info p {
        font-size: 15px;
        margin: 18px 0;
        max-width: 670px;
    }

.portfolio__gallery {
    display: flex;
    justify-content: center;
}

.portfolio__column--one {
    height: inherit;
    display: flex;
    flex-direction: column;
}

.portfolio__column--second {
    max-width: 1287px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.portfolio__row--up {
    margin-bottom: 15px;
    display: flex;
}

.portfolio__row--down {
    height: 260px;
    display: flex;
}

.portfolio__mask--first {
    width: 536px;
    height: 260px;
    margin-bottom: 15px;
}

.portfolio__mask--second {
    width: 536px;
    height: 380px;
}

.portfolio__mask--third {
    height: 380px;
    width: 410px;
}

.portfolio__mask--fourth {
    height: 380px;
    width: 410px;
    margin-left: 15px;
}

.portfolio__mask--fifth {
    height: 380px;
    width: 241px;
    margin-left: 15px;
}

.portfolio__mask--sixth {
    width: 538px;
    height: 260px;
}

.portfolio__mask--seventh {
    width: 538px;
    height: 260px;
    margin-left: 15px;
}

.potrfolio__mask-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.portfolio__btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 1920px) {
    .portfolio__column--second {
        max-width: 885px;
    }
}

@media (max-width: 1440px) {
    .portfolio__container {
        max-width: 100%;
        padding-bottom: 80px;
    }

    .portfolio__gallery {
        flex-direction: column;
        height: max-content;
        align-items: center;
    }

    .portfolio__column--one {
        flex-direction: row;
        max-width: calc(100% - 40px);
    }

    .portfolio__column--second {
        align-items: center;
        margin-left: 0;
        max-width: -webkit-fill-available;
    }

    .portfolio__row--up {
        max-width: calc(100% - 40px);
    }

    .portfolio__row--down {
        max-width: calc(100% - 40px);
        height: auto;
    }

    .portfolio__mask--first {
        width: 538px;
        height: 260px;
    }

    .portfolio__mask--second {
        width: 538px;
        height: 260px;
        margin-left: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .portfolio__info p {
        font-size: 12px;
    }

    .portfolio__container {
        margin-bottom: 60px;
    }

    .portfolio__info {
        padding: 0 30px 0 40px;
    }
}

@media (max-width: 767px) {
    .portfolio__info p {
        font-size: 12px;
    }

    .portfolio__info {
        padding: 0 30px 30px 40px;
    }

    .portfolio__mask--first {
        height: 130px;
        margin-bottom: 10px;
    }

    .portfolio__mask--second {
        height: 130px;
        margin-left: 10px;
    }

    .portfolio__mask--third {
        height: 190px;
    }

    .portfolio__mask--fourth {
        height: 190px;
        margin-left: 10px;
    }

    .portfolio__mask--fifth {
        height: 190px;
        margin-left: 10px;
    }

    .portfolio__mask--sixth {
        height: 130px;
    }

    .portfolio__mask--seventh {
        height: 130px;
        margin-left: 10px;
    }
}

/*#endregion PORTFOLIO SECTION */

/*#region section */

.section {
    background-color: #baa48c;
    padding: 100px 0 150px 0;
}
.section--phase {
    background-color: white;
    max-width: 1364px;
    margin: auto;
    position: relative;
    top: -200px;
    border-radius: 8px;
    padding: 0;
}

.section__container {
    max-width: 1364px;
    margin: auto;
}

.section__container h2 {
}

.section__description {
    color: white;
    padding: 0 30px;
    text-transform: uppercase;
}

.section__container p {
    font-family: 'Roboto-Light';
    font-size: 15px;
    margin: 18px 0;
    max-width: 670px;
}

.section__section {
    display: flex;
    padding-top: 40px;
}

.section__section--reverse {
    flex-direction: row-reverse;
}

.section__section-container {
    display: flex;
}

.section__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__text--right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section__column--one {
    width: 70%;
}

.section__column--two {
    width: 30%;
}

.section__mask {
    position: relative;
    margin-right: 10px;
}

.section__mask--first {
    width: 398px;
    height: 416px;
}

.section__mask--second {
    width: 536px;
    height: 203px;
}

.section__mask--third {
    width: 399px;
    height: 203px;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__mask-message {
    font-size: 15px;
    text-align: center;
    padding: 50px 30px 0 30px;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.section__mask--fourth {
    width: 399px;
    height: 203px;
}

.section__mask--fourth-property {
    margin: 0;
    width: 100%;
}

.section__card-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.section__card {
    background: white;
    width: 217px;
    min-height: 179px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1000;
}

.section__card-icon {
    width: 60px;
    height: 60px;
    margin-top: 30px;
}

.section__card--bottom {
    bottom: 10px;
    top: auto;
}

.section__card--right {
    left: auto;
    right: 10px;
}

.section__card p {
    padding: 0 20px;
    text-align: center;
}

.section__button {
    font-family: 'Averta-Regular';
    font-size: 15px;
    background-color: #333;
    color: white;
    padding: 9px 46px;
    text-decoration: none;
    border-radius: 5px;
}

.section__business{
    background-color: #333333;
    color: white;
}
.section__business  h2 {
    color: white;
}

.section__business  p{
    color: #333333;
}

#section__description p{

    font-family: Montserrat;
    letter-spacing: 1.5px;
    font-weight: lighter;
    padding-top: 40px;
    color: white;
}



@media (max-width: 1440px) {
    .section {
        padding: 0;
    }

        .section h3 {
            font-size: 20px;
            margin-top: 30px;
        }

    .section__container {
        padding: 40px 20px;
    }

    .section__section {
        display: block;
        padding-top: 0px;
    }

    .section__description {
        margin-bottom: 40px !important;
    }

    .section__mask {
        max-width: 100%;
        min-height: 200px;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .section__mask--fourth-property{
        margin: auto;
    }

    .section__section-container {
        display: block;
    }

    .section__card {
        width: calc(100% - 20px);
        min-height: 105px;
        top: auto;
        bottom: 10px;
    }

        .section__card p {
            padding: 30px 20px;
        }

    .section__card-icon {
        position: absolute;
        top: -26px;
        left: 0;
        right: 0;
        margin: auto;
        box-shadow: 0px 3px 6px #baa48c69;
        border-radius: 50%;
    }

    .section__column--one,
    .section__column--two {
        width: 100%;
    }

    .section__column--two {
        display: flex;
        flex-direction: column-reverse;
    }

    .section__text--right {
        align-items: flex-start;
        text-align: left;
    }

    .section__description {
        padding: 0;
    }

    .section__column--single{
        display: flex;
        flex-direction: row;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
    .section__mask {
        max-width: 450px;
        width: 450px;
        margin: 0 auto 40px auto;
        max-height: 200px;
    }

    .section--phase {
        top: -50px;
        border-radius: 40px 40px 0 0;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .section__container {
        padding: 80px;
    }

    .section__mask {
        max-width: 750px;
        width: 750px;
        margin: 0 auto 60px auto;
        max-height: 200px;
    }

    .section__card {
        width: 350px;
        min-height: 120px;
    }
    .section--phase {
        top: -50px;
        border-radius: 40px 40px 0 0;
    }
}

@media (max-width: 767px) {
    .section__mask {
        width: 100%;
        max-height: 200px;
    }
    .section--phase {
        top: -50px;
        border-radius: 40px 40px 0 0;
    }
    .section__column--single {
        flex-wrap: wrap;
    }
}

/*#endregion section SECTION */

/*#region SMART-CITY */

.smart-title {
    font-family: 'Montserrat-Bold';
    font-weight: bold;
    font-size: 50px;
    color: white;
    padding-bottom: 50px;
    letter-spacing: 5px;
}

.smart-subtitle {
    font-family: 'Montserrat-Regular';
    font-size: medium;
    color: white;
    padding: 0px 0px 50px 0px;
    letter-spacing: 1.5px;
}

.smart-card-container{
    display: flex;
    
}

.smart-card {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    text-align: left;
    font: normal normal normal 12px/15px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.smart-signature {
    padding-left: 10px;
}

.smart-section-btn {
    margin: auto;
    width: 300px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1023px) {
    
    .smart-card-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .smart-signature{
        padding-top: 50px;
    }
    .smart-title {
        font-size: 30px;
    }
}

@media (max-width: 650px) {
    #smart-img{
        max-width: 100%;
    }
    .embla__slide__img{
        height: 250px;
    }


}

/*#endregion section SMART-CITY */
/*#region ABOUT US */
.about-us {
    background-color: #f5f5f5;
    padding: 100px 0 150px 0;
    background-image: url(images/sdc_biglogo.svg);
    background-repeat: no-repeat;
    background-position: -5% 50%;

}

.about-us__container {
    max-width: 1364px;
    margin: auto;
}

    .about-us__container h2 {
        margin-bottom: 50px;
    }

.about-us__header_img{
    height: 50px;
}
.about-us__header{
    display: flex;
    justify-content: space-between;
}

.about-us__mask {
    position: relative;
    margin-right: 10px;
}

.about-us__mask--first {
    display: flex;
    border-radius: 5px;
    align-items: center;
    width: 944px;
    height: 203px;
    margin-bottom: 10px;
    background: #333333;
}

.about-us__mask--second {
    width: 398px;
    height: 542px;
}

.about-us__mask--third {
    width: 536px;
    height: 542px;
    background: white;
    border-radius: 8px;
}

.about-us__mask--fourth {
    width: 399px;
    height: 756px;
}

.about-us__column {
    display: flex;
    justify-content: space-between;
}

.about-us__card {
    background: white;
    width: calc(100% - 20px);
    min-height: 179px;
    border-radius: 8px;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1000;
}

.about-us__card--bottom {
    top: auto;
    bottom: 10px;
}


.about-us__card p {
    margin: 20px;
    font-size: 12px;
}

.about-us__card h3 {
    padding: 15px 20px;
    line-height: 1.2;
}


@media (max-width: 1440px) {
    .about-us {
        padding: 0;
    }

        .about-us h3 {
            font-size: 20px;
            margin-top: 30px;
        }

    .about-us__container {
        padding: 40px 20px;
    }

    .about-us__mask {
        max-width: 100%;
        min-height: 250px;
        margin-bottom: 20px;
        margin-right: 0;
        max-height: 450px;
    }

    .about-us__column {
        flex-direction: column;
    }

    .about-us__description {
        margin: 0 !important;
        padding: 0 30px;
    }
    .smart-section-btn {
        padding-bottom: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .about-us__mask {
        max-width: 450px;
        width: 450px;
        margin: 0 auto 40px auto;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .about-us__container {
        padding: 80px;
    }

    .about-us__mask {
        max-width: 750px;
        width: 750px;
        margin: 0 auto 60px auto;
    }

    .section__card {
        width: 350px;
        min-height: 120px;
    }


}

@media (max-width: 767px) {
    .section__mask {
        width: 100%;
    }

    .about-us__mask {
        width: 100%;
    }
    .section__header--property {
        padding: 0;
        padding-bottom: 25px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .move_up{
        top: -50px;
    }
}


/*#endregion ABOUT US  */

/*#region NEWS */

.news {
    font-family: 'Roboto-Light';
    background-color: #858585;
    color: white;
    padding: 35px 0 80px 0;
    font-size: 15px;
}

.news__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1440px;
    margin: auto;
}

.news__description {
    padding: 20px 0 50px;
}

.news__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 5px;
}

.news__presentation {
    display: block;
}

.news__paragraph {
    margin-bottom: 30px;
}

.news h2 {
    font-family: 'Averta-Regular';
    color: white;
    padding-top: 15px;
    margin-bottom: 45px;
}

.news__button {
    font-family: 'Averta-Regular';
    font-size: 15px;
    background-color: #585858;
    color: white;
    width: 256px;
    padding: 9px 76px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 5px;
}

.news__article {
    min-width: fit-content
}

    .news__article h3 {
        font-family: 'Averta-Bold';
        color: white;
        padding-top: 10px;
    }

    .news__article a {
        color: white;
        text-decoration: none;
    }

    .news__article p {
        font-family: 'Roboto';
    }

.news__article-intro {
    padding-top: 15px;
}

@media (max-width: 1440px) {
    .news {
        padding: 60px 0;
    }

    .news__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .news__paragraph {
        margin-bottom: 40px;
    }

    .news__column {
        display: block;
        padding: 0 40px;
    }

    .news__presentation {
        display: block;
        max-width: 100%;
        width: auto;
    }

    .news__article {
        margin-top: 40px;
    }

        .news__article img {
            max-width: 100%;
        }
}

@media (max-width: 767px) {
    .news__container {
        grid-template-columns: 1fr;
    }

    .news__description {
        padding: 20px 0 50px;
    }

    .news__button {
        padding: 9px 0px;
    }
}

/*#endregion NEWS SECTION */

/*#region FOOTER */

.footer__newsletter {
    background-color: #333;
    padding: 35px 50px;
}

.footer__newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1364px;
    margin: auto;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.footer__newsletter p {
    font-family: 'Averta-Regular';
    font-size: 15px;
    color: #a5a5a5;
}

.footer__form {
    position: relative;
}

.footer__input {
    background: transparent;
    outline: none;
    padding: 12px 122px 12px 10px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: white;
    width: 408px;
}

    .footer__input::placeholder {
        font-family: 'Averta-Bold';
        font-size: 12px;
        color: white;
    }

.footer__submit-button {
    font-family: 'Averta-Bold';
    font-size: 12px;
    letter-spacing: 1.5px;
    position: absolute;
    top: 6px;
    right: 8px;
    outline: none;
    text-decoration: none;
    background: #8E8E8E;
    border-radius: 8px;
    color: white;
    padding: 5px 12px;
}

.footer__info {
    color: white;
    position: relative;
    /* background: url("/static/images/hero.png"); */
    background-size: cover;
    background-color: #454545;
    padding: 45px 50px 55px 50px;
}

.footer__column_1{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__info a {
    color: white;
}

.footer__info-details {
    display: flex;
    justify-content: space-between;
    max-width: 1364px;
    margin: auto;
}

    .footer__info-details
    .footer__column {
        display: flex;
        align-items: center;
    }

.footer__logo span {
    font-family: 'Averta-Bold';
    font-size: 19px;
    line-height: 15px;
    display: block;
    padding-right: 15px;
}

.footer__phone,
.footer__social-icon {
    display: flex;
    font-family: 'Averta-Regular';
    font-size: 12px;
    padding-right: 15px;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .footer__social-icon a {
        margin: 0 !important;
    }

    .footer__phone img,
    .footer__social-icon img {
        margin-right: 7px;
    }

    .footer__phone a,
    .footer__social-icon a {
        text-decoration: none;
    }

.footer__social-icons {
    display: flex;
    align-items: center;
    margin: 0;
}

    .footer__social-icons li::marker {
        content: '';
    }

    .footer__social-icons li {
        margin-right: 15px;
    }

.footer__links {
    max-width: 1364px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}


    .footer__links a {
        font-family: 'Averta-Regular';
        font-size: 12px;
        text-decoration: none;
        display: block;
        margin-top: 13px;
    }

.footer__column:last-of-type {
    text-align: right;
}

@media (max-width: 1439px) {
    .footer__input {
        width: auto;
    }

    .footer__newsletter p {
        font-size: 12px;
        padding-right: 40px;
    }
}

@media (max-width: 1023px) {
    .footer__second-logo {
        display: none;
    }

    .footer__social-icons li:last-of-type {
        margin-right: 0;
    }
    .footer__info{
        padding-bottom: 150px;
    }
}

@media (max-width: 767px) {
    /*.footer__newsletter {
        padding: 18px 15px;
    }

        .footer__newsletter p {
            padding-right: 0;
        }

    .footer__newsletter-container {
        display: block;
    }

    .footer__form {
        width: auto;
        margin: 25px auto 10px auto;
    }*/

    .footer__input {
        width: -webkit-fill-available;
        padding: 12px 70px 12px 10px;
    }



    /*.footer__info-details .footer__column {
        display: block;
    }

    .footer__phone {
        margin: 30px 0 10px 0;
    }

    .footer__social-icon {
        margin: 0 0 10px 0;
    }

    .footer__column-menu {
        max-width: 50%;
    }*/
}



@media (max-width: 660px){

    .footer__links{
        flex-direction: column;
        align-items: center;
    }

    .footer__column{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-widget{
        height: auto;
    }

    .footer__info ul {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        align-items: center;
        margin-top: 35px;
        margin-bottom: 15px;
    }

    .footer__social-icons{
        padding-left: 0;
    }
}

/*#endregion FOOTER SECTION */


/*#region MOBILE_TAB */

.tab-container {
    background-color: #f8f9fb;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 1001;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 60px;
}

.tab__mobile {
    display: flex;
    font-family: 'Averta-Regular';
    font-size: 12px;
    white-space: nowrap;
    align-items: center;
    width: 33%;
    justify-content: center;
}
#wapp-pic-bottom{
    height: 30px;
}

.tab__icon{
    padding-right: 5px;
}

/*#endregion MOBILE_TAB */

#contact__bank-overlay {
    display: none;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;

}

#contact-bank{
    border: 2px #333333 solid;
}