@charset "UTF-8";

/**
 * Easing Variables
 */

@font-face {
    font-family: 'EcoWorldSerif-Regular';
    src: url("../fonts/EcoWorldSerif-Regular.otf") format("otf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'EcoWorldSerif-Bold';
    src: url("../fonts/EcoWorldSerif-Bold.otf") format("otf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'EcoWorldSans-Regular';
    src: url("../fonts/EcoWorldSans-Regular.otf") format("otf");
}


body {
    font-family: 'EcoWorldSans-Regular';
    font-weight: 300;
    font-size: 15px;
    color: #231f20;
}

a {
    color: #231f20;
    font-family: 'EcoWorldSerif-Regular';
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'EcoWorldSerif-Regular';
}

h1 {
    font-size: 50px;
    letter-spacing: 2px;
}

h2 {
    font-size: 38px;
    letter-spacing: 2px;
    color: #231f20;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

.page[data-page] {
    min-height: calc(100vh - 153px);
}

.link-underline {
    text-decoration: underline;
}

@media all and (max-width: 768px) {
    .page[data-page] {
        margin-top: 60px;
    }
    .property-details-container button {
        margin-right: 50px;
    }
}

.grey-bg {
    background-color: #f9f9f9;
}

.green-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.green-underline:after {
    content: '';
    width: 150px;
    height: 3px;
    position: absolute;
    left: 5px;
    bottom: 0;
    background-color: #12803a;
}

.property-address-container>h3:after {
    width: 75px;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
}

.header a {
    font-family: 'EcoWorldSerif-Regular', serif;
    font-size: 15px;
    font-weight: 400;
    color: #231f20;
    text-decoration: none;
}

@media all and (max-width: 768px) {
    .header {
        position: fixed;
        z-index: 105;
        top: 0;
        left: 0;
        height: 60px;
        background-color: white;
    }
}

.header-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-items li {
    position: relative;
    margin: 0 20px;
}

@media all and (max-width: 992px) {
    .header-items li {
        margin: 0 10px;
    }
}

.header-items li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    max-width: 0;
    background: #12803a;
    -webkit-transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-items li:hover:after {
    max-width: 100%;
}

.header-items li:first-child {
    margin-left: 0;
}

.header-items li:last-child {
    margin-right: 0;
}

.header-ew-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
}

@media all and (max-width: 768px) {
    .header-ew-logo {
        width: 150px;
    }
}

@media all and (max-width: 576px) {
    .header-ew-logo {
        width: 125px;
    }
}

.dropdown-container:hover .dropdown-content {
    opacity: 1;
    pointer-events: all;
}

.dropdown-content {
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: 155px;
    padding: 0;
    padding-top: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    background-clip: content-box;
    opacity: 0;
    pointer-events: none;
    list-style: none;
}

.dropdown-content li {
    margin: 3px 15px !important;
}

.dropdown-content li:after {
    content: none;
}

.dropdown-content a {
    font-size: 16px;
}

.dropdown-content a:hover {
    color: black;
}

@media all and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
}

.mobile-menu {
    display: none;
    margin-left: auto;
    outline: none;
}

@media all and (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 104;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    opacity: 0;
    background: white;
    pointer-events: none;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.mobile-menu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-links ul ul {
    margin-bottom: 15px;
    height: 0px;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.mobile-menu-links ul ul li,
.mobile-menu-links ul ul a {
    font-size: 24px;
    margin: 5px 0px;
}

.mobile-menu-links ul ul.is-active {
    height: 128px;
}

.mobile-menu-links li,
.mobile-menu-links a {
    font-family: 'EcoWorldSans-Regular';
    color: #231f20;
    font-size: 30px;
    margin: 10px auto;
}

@media all and (min-width: 768px) {
    .mobile-menu-links li,
    .mobile-menu-links a {
        font-size: 40px;
    }
}

.mobile-menu-links.is-active {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: none;
    transform: none;
}

.footer p {
    font-family: 'EcoWorldSerif-Regular';
    font-size: 14px;
    color: #231f20;
}

.footer-links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-links-container a {
    font-family: 'EcoWorldSerif-Regular';
    font-size: 14px;
    color: #231f20;
}

.footer-links-container a:after {
    content: ".";
    padding: 0px 10px;
}

.footer-links-container a:last-child:after {
    content: none;
}

.footer-icons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-icons-container a {
    height: 25px;
    width: 25px;
    margin-left: 15px;
    margin-right: 15px;
}

.footer-icons-container a path {
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-icons-container a:hover path {
    fill: #12803a;
}

.button-border {
    font-weight: 600;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    border: 2px solid #12803a;
    position: relative;
    padding: 12px 40px 12px 20px;
    display: inline-block;
    -webkit-transition: -webkit-transform ease 0.3s;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.button-border small {
    letter-spacing: 1px;
}

.button-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform ease 0.3s;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.button-border:hover {
    color: #12803a;
    text-decoration: none;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.button-border:hover .button-icon {
    -webkit-transform: translateY(-50%) translateX(2px);
    transform: translateY(-50%) translateX(2px);
}

.button-border--black {
    background: none;
    border: 1px solid #231f20;
    padding: 10px 25px;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
    display: inline-block;
}

#map_canvas {
    width: 100%;
    height: 500px;
    border: 2px solid #000;
    margin-top: 20px;
    float: left;
}

#legend {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media all and (max-width: 576px) {
    #legend {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#legend h4 {
    min-width: 100px;
    margin-bottom: 0;
}

@media all and (max-width: 576px) {
    #legend h4 {
        margin-bottom: 10px;
    }
}

.legend-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
}

@media all and (max-width: 576px) {
    .legend-filter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 0 !important;
    }
}

.legend-filter li {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
}

.legend-filter input {
    margin-right: 0.5rem;
}

#legend img {
    vertical-align: middle;
}


/*Checkboxes styles*/

.legend-filter input[type="checkbox"] {
    display: none;
}

.legend-filter input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.legend-filter input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.legend-filter input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.legend-filter input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sticky-container {
    /*background-color: #333;*/
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -98px;
    top: 130px;
    width: 180px;
    z-index: 99;
}

.sticky li,
.sticky li a {
    list-style-type: none;
    background-color: #12803a;
    font-family: "EcoWorldSans-Regular";
    color: #efefef !important;
    text-decoration: none;
    white-space: nowrap;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    -webkit-filter: grayscale(100%) sepia(35%);
}

.sticky li:hover {
    margin-left: -150px;
    /*-webkit-transform: translateX(-115px);
      -moz-transform: translateX(-115px);
      -o-transform: translateX(-115px);
      -ms-transform: translateX(-115px);
      transform:translateX(-115px);*/
    /*background-color: #8e44ad;*/
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

.sticky li img,
.sticky li svg {
    float: left;
    margin: 5px 5px;
    margin-right: 10px;
    width: 32px;
}

.sticky li svg path {
    fill: white;
}

.sticky li p {
    padding: 0px;
    margin: 0px;
    text-transform: capitalize;
    line-height: 43px;
}

@media all and (max-width: 576px) {
    .page-home {
        top: 60px;
        position: relative;
    }
}

.home-img-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vh;
}

@media all and (min-width: 768px) {
    .home-img-slide {
        height: calc(100vh - 80px);
    }
}

.home-details-title {
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

@media all and (min-width: 768px) {
    .home-details-title {
        padding-top: 0;
        padding-left: 50px;
        padding-right: 0px;
    }
}

.home-details-title h1 {
    font-size: 30px;
    letter-spacing: 2px;
    color: black;
}

@media all and (min-width: 768px) {
    .home-details-title h1 {
        font-size: 60px;
        color: white;
    }
}

@media all and (min-width: 992px) {
    .home-details-title h1 {
        font-size: 80px;
    }
}

.home-details-title>h1:nth-child(2) {
    margin-left: 30px;
    margin-top: -30px;
}

@media all and (min-width: 768px) {
    .home-details-title>h1:nth-child(2) {
        margin-left: 50px;
    }
}

.home-details-container {
    background-color: #f0f0f0;
    position: relative;
    padding-bottom: 60px;
}

@media all and (min-width: 768px) {
    .home-details-container {
        background-color: transparent;
        position: absolute;
        left: 0;
        bottom: 0;
        padding-bottom: 0;
    }
}

.home-details-slider>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.home-details-content {
    background-color: #f0f0f0;
    padding: 15px 30px;
}

@media all and (min-width: 768px) {
    .home-details-content {
        padding: 15px 50px;
    }
}

.home-details-btn {
    border: 1px solid #231f20;
    letter-spacing: 2px;
    padding: 5px 25px;
    display: inline-block;
}

@media all and (min-width: 768px) {
    .home-details-btn {
        padding: 10px 40px;
    }
}

.home-details-btn:hover {
    color: #231f20;
    text-decoration: none;
}

.home-pagination-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 5%;
}

.pagination-dot {
    height: 10px;
    width: 10px;
    background: #e4e4e4;
    margin-right: 15px;
    cursor: pointer;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-dot.is-active {
    background: #505050;
}

.home-btn-container {
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-btn-container:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: 1px;
    padding: 20px 0;
    background-color: #b9b9b9;
    background-clip: content-box;
}

.home-btn-container>button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    height: 100%;
    width: 65px;
    padding: 22px;
    background-color: #e4e4e4;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.home-btn-container>button:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.home-btn-container>button:hover {
    background-color: gainsboro;
}

.home-btn-container .home-left-btn:before {
    background-image: url("../img/icons/icon-left-btn.svg");
}

.home-btn-container .home-right-btn:before {
    background-image: url("../img/icons/icon-right-btn.svg");
}

.home-featured-title {
    font-family: 'EcoWorldSerif-Regular';
    color: #231f20;
    text-align: left;
    letter-spacing: 2px;
    padding-top: 50px;
}

.featured-projects-container .featured-projects {
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    height: 0;
    padding-top: 70%;
}

@media all and (min-width: 768px) {
    .featured-projects-container .featured-projects {
        padding-top: 40%;
    }
}

.featured-projects-container .featured-projects:before {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 1;
}

.featured-projects-container .featured-projects::after {
    content: '\A';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-projects-container .featured-projects:hover::after {
    opacity: 1;
}

.featured-projects-container .featured-projects:hover .featured-project-overlay {
    opacity: 1;
}

.featured-projects-container .inner-content {
    position: absolute;
    top: 8%;
    left: 0;
    width: 100%;
    height: 100%;
    letter-spacing: 3px;
}

.featured-projects-container .inner-content p {
    font-family: 'EcoWorldSans-Regular';
    font-size: 12px;
    color: #231f20;
}

@media all and (min-width: 1200px) {
    .featured-projects-container .inner-content p {
        font-size: 18px;
    }
}

.featured-projects-container .fp-uk {
    background: url("../img/homepage/featured-panel-uk.jpg");
}

.featured-projects-container .fp-aus {
    background: url("../img/homepage/featured-panel-aus.jpg");
}

.featured-projects-container .fp-my {
    background: url("../img/homepage/featured-panel-my.jpg");
}

.featured-projects-container a:hover {
    color: #231f20;
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: white;
    opacity: 0;
}

@media all and (max-width: 768px) {
    .featured-project-overlay {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.featured-project-overlay .featured-details-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.featured-project-overlay button {
    padding: 5px 35px;
    cursor: pointer;
    background: none;
    color: white;
    font-family: 'EcoWorldSans-Regular';
    letter-spacing: 1px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    height: 100%;
    width: 100%;
    pointer-events: none;
    display: none;
}

@media all and (min-width: 768px) {
    .overlay {
        display: block;
    }
}

.page[data-page="profile"] h1,
.page[data-page="profile"] h2 {
    color: #231f20;
}

.profile-title h2 {
    margin-bottom: -5px;
}

.profile-subtitle {
    font-size: 1.1rem;
}

.profile-bg-container {
    height: 150px;
    background: url("../img/profilepage/bg-profilepage.jpg");
    background-position: center;
    background-size: cover;
}

@media all and (min-width: 576px) {
    .profile-bg-container {
        height: 250px;
    }
}

@media all and (min-width: 768px) {
    .profile-bg-container {
        height: 500px;
    }
}

.green-line-break {
    width: 30%;
    height: 1px;
    background: #12803a;
}

.profile-policy-list {
    font-family: 'EcoWorldSans-Regular';
    font-weight: 600;
    list-style-type: upper-roman;
    color: #231f20;
}

.profile-policy-list p {
    font-weight: 400;
}

.profile-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.profile-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profile-video-container iframe .ytp-expand-pause-overlay .ytp-pause-overlay {
    display: none;
}

.profile-video-container iframe .html5-endscreen {
    display: none;
}

.scrollesel {
    overflow: hidden;
    padding: 10px 0;
    margin: 0 -10px;
}

.scrollesel--track {
    white-space: nowrap;
}

.scrollesel--track:after {
    content: '';
    display: block;
    clear: both;
}

.scrollesel--track>div {
    float: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 3px solid #12803a;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scrollesel--track>div img {
    pointer-events: none;
    width: 100%;
    height: auto;
}

.scrollesel--track>div a {
    display: inline-block;
    pointer-events: auto;
}

.page[data-page='countries'] a {
    cursor: pointer;
}

.page[data-page='countries'] h1 {
    color: white;
    z-index: 1;
}

@media all and (max-width: 576px) {
    .page[data-page='countries'] h1 {
        font-size: 40px;
    }
}

.page[data-page='countries'] h2 {
    color: #231f20;
}

@media all and (max-width: 576px) {
    .page[data-page='countries'] h2 {
        font-size: 30px;
    }
}

.page[data-page='countries'] h4 {
    font-size: 22px;
    margin-bottom: 0.8rem;
}

.page[data-page='countries'] .title-countries {
    font-size: 70px;
}

@media all and (max-width: 992px) {
    .page[data-page='countries'] .title-countries {
        font-size: 50px;
    }
}

@media all and (max-width: 576px) {
    .page[data-page='countries'] .title-countries {
        font-size: 30px;
    }
}

.show {
    display: block;
}

.hide {
    display: none;
}

.active-filter {
    color: #12803a !important;
    pointer-events: none;
}

.active-filter::after {
    max-width: 100% !important;
}

.filter-btn {
    position: relative;
}

.filter-btn:hover::after {
    max-width: 100%;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    max-width: 0;
    background: #12803a;
    -webkit-transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.countries-bg {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media all and (max-width: 992px) {
    .countries-bg {
        background-position-y: 0px;
    }
}

@media all and (max-width: 768px) {
    .countries-bg {
        height: 200px;
    }
}

@media all and (max-width: 576px) {
    .countries-bg {
        height: 150px;
    }
}

.countries-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.countries-filter-container {
    list-style: none;
}

@media all and (max-width: 768px) {
    .countries-filter-container>li {
        display: block;
    }
}

.countries-filter-container li {
    position: relative;
    padding-bottom: 5px;
}

.countries-filter-container a {
    font-family: 'EcoWorldSans-Regular';
    font-size: 16px;
    font-weight: 300;
    color: #231f20;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.countries-filter-container li:hover ul {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
}

@media all and (max-width: 768px) {
    .countries-filter-container li:hover ul {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.countries-filter-container li ul {
    min-width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    list-style: none;
    padding: 1rem 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media all and (max-width: 768px) {
    .countries-filter-container li ul {
        display: block;
        position: relative;
        top: 0;
        padding: 0;
        padding-left: 0.5rem;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.countries-filter-container li ul li {
    white-space: nowrap;
}

@media all and (max-width: 768px) {
    .countries-filter-container li ul li {
        display: inline-block;
        padding-bottom: 0.2rem;
    }
}

.countries-filter-container li ul li:hover::after {
    max-width: 100%;
}

.countries-filter-container li ul li:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    max-width: 0;
    background: #333;
    -webkit-transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.countries-filter-container li ul li:last-child a:after {
    display: none;
}

@media all and (max-width: 768px) {
    .countries-filter-container li ul a {
        font-size: 0.8rem;
        letter-spacing: 1px;
        position: relative;
        margin-right: 0.5rem;
    }
    .countries-filter-container li ul a:after {
        content: "";
        width: 1px;
        height: 100%;
        background-color: black;
        position: absolute;
        top: 0;
        right: -0.4rem;
    }
}

@media all and (max-width: 992px) {
    .project-container {
        margin-bottom: 300px;
    }
}

@media all and (max-width: 576px) {
    .project-container {
        margin-bottom: 450px;
    }
}

.project-container:last-child {
    margin-bottom: 150px;
}

@media all and (max-width: 992px) {
    .project-container:last-child {
        margin-bottom: 225px;
    }
}

@media all and (max-width: 576px) {
    .project-container:last-child {
        margin-bottom: 350px;
    }
}

.project-bg-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

@media all and (max-width: 992px) {
    .project-bg-container {
        height: 400px;
    }
}

@media all and (max-width: 576px) {
    .project-bg-container {
        height: 200px;
    }
}

.project-details-container {
    width: 70%;
    min-height: 265px;
    background-color: #fafafa;
    position: absolute;
    top: 450px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

@media all and (max-width: 992px) {
    .project-details-container {
        top: 350px;
    }
}

@media all and (max-width: 576px) {
    .project-details-container {
        top: 150px;
    }
}

.project-details-container button {
    background: none;
    border: 1px solid #231f20;
    padding: 5px 15px;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
}

.project-logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 992px) {
    .project-logo-container {
        min-height: 170px;
        border: none;
    }
}

.my-border-right:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 80%;
    border-right: 1px solid #dee2e6;
}

.project-logo-wrapper {
    margin: 10px;
}

.project-logo-wrapper img {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: auto;
}

@media all and (max-width: 992px) {
    .project-logo-wrapper img {
        margin: 10px 0px;
    }
}

.green-bg {
    background-color: #12803a;
}

.gold-bg {
    background-color: #bdae85;
}

.stickyheader {
    z-index: 99;
    background: white;
    padding-bottom: 5px;
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comingsoon {
    border: 1px solid black;
    padding: 50px 25px;
    margin-bottom: 50px;
    font-family: 'EcoWorldSans-Regular';
    font-weight: 600;
}

.comingsoon button {
    background: none;
    border: 1px solid #231f20;
    padding: 5px 15px;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
}

.page[data-page='property-inner'] a {
    cursor: pointer;
}

.page[data-page='property-inner'] h1 {
    color: white;
    z-index: 1;
    text-transform: capitalize;
}

@media all and (max-width: 576px) {
    .page[data-page='property-inner'] h1 {
        font-size: 40px;
    }
}

.page[data-page='property-inner'] h2 {
    color: #231f20;
    text-transform: capitalize;
}

.page[data-page='property-inner'] h3 {
    color: #231f20;
    text-transform: capitalize;
}

.page[data-page='property-inner'] .underline {
    border-bottom: 1px solid #b6b6b6;
}

.page[data-page='property-inner'] td {
    padding: 10px 0px;
    vertical-align: top;
}

.page[data-page='property-inner'] ul {
    padding-left: 20px;
    list-style-position: outside !important;
}

.page[data-page='property-inner'] small {
    font-size: 60%;
}

.property-bg-container {
    height: 400px;
    background-size: cover;
    background-position: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.property-bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.property-logo-wrapper {
    position: relative;
}

@media all and (max-width: 992px) {
    .property-logo-wrapper {
        border: none;
    }
}

.property-logo-wrapper h4 {
    max-width: 250px;
    margin: auto;
}

.property-logo-container {
    position: relative;
    height: 250px;
}

@media all and (min-width: 992px) {
    .property-logo-container {
        width: 250px;
        margin: auto;
    }
}

.property-logo {
    padding: 10px 10px;
    background-color: #bdae85;
    max-width: 160px !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    position: absolute;
    top: 50%;
    /* position the top  edge of the element at the middle of the parent */
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.property-details-container button {
    background: none;
    border: 2px solid #12803a;
    padding: 12px 20px;
    font-weight: 600;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.property-details-container #brochure {
    background: #12803a;
    border: 2px solid #12803a;
    padding: 14px 20px;
    font-weight: 600;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .property-details-container button {
        margin-bottom: 24px;
    }
    .property-details-container #brochure {
        padding: 14px 27px;
        margin-left: 0;
    }
}

.property-details-container #brochure:hover {
    background: #12803a;
    border: 2px solid #12803a;
    padding: 14px 20px;
    font-weight: 600;
    font-family: 'EcoWorldSans-Regular';
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}

.property-details-slider {
    position: relative;
}

.property-gallery-desc {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    color: #231f20;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

.property-gallery-desc.is-active {
    opacity: 1;
    -webkit-transition: 0.7s all cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.7s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-pagination-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
}

.property-btn-container {
    position: absolute;
    top: 50%;
    left: 15px;
    width: calc(100% - 30px);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: 60px;
}

@media all and (max-width: 576px) {
    .property-btn-container {
        height: 30px;
    }
}

.property-btn-container>button,
.property-btn-container>a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    height: 100%;
    width: 65px;
    padding: 22px;
    background-color: #e4e4e4;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

@media all and (max-width: 576px) {
    .property-btn-container>button,
    .property-btn-container>a {
        width: 30px;
        padding: 10px;
    }
}

.property-btn-container>button:before,
.property-btn-container>a:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.property-btn-container>button:hover,
.property-btn-container>a:hover {
    background-color: gainsboro;
}

.property-btn-container .property-left-btn:before {
    background-image: url("../img/icons/icon-left-btn.svg");
}

.property-btn-container .property-right-btn:before {
    background-image: url("../img/icons/icon-right-btn.svg");
}

.property-inner-content {
    letter-spacing: 2px;
}

.property-address-container {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-color: #f0f0f0;
}


/*------------------
    Popup Video
-------------------*/

.property-gallery-container {
    position: relative;
}

.property-gallery-slide {
    z-index: 100;
}

.popup-video {
    z-index: 1;
    position: absolute !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media all and (max-width: 768px) {
    .popup-video {
        top: 45%;
    }
}

#headerPopup {
    width: 75%;
    margin: 0 auto;
}

@media all and (max-width: 768px) {
    #headerPopup {
        width: 90%;
    }
}

.video-btn {
    cursor: pointer;
    border: 1px solid #231f20 !important;
    padding: 10px 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
    .video-btn {
        padding: 10px 40px;
    }
}

.video-btn:hover,
.video-btn.active,
.video-btn:focus {
    border: 1px solid #231f20 !important;
    background-color: white;
    color: black;
    text-decoration: none;
    outline: none;
    color: black;
}

#headerPopup iframe {
    width: 100%;
    margin: 0 auto;
}

button.mfp-close {
    background-color: #e4e4e4 !important;
}

.fa.fa-play {
    font-size: 11px;
    padding: 0px 0px 3px 3px;
}


/*---------------------
      Video Section
----------------------*/

.imgvideo {
    cursor: pointer;
}

.playbutton {
    background: url(../img/video/play-btn.png) center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin: -37px 0 0 -37px;
    z-index: 10;
    opacity: 0.8;
}

.ytvideo,
.virtual {
    position: relative;
    margin: 0;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /* pour anciens Chrome et Safari */
    background-size: cover;
    /* version standardisée */
    cursor: pointer;
    margin: 0 auto;
    display: block;
    position: relative;
    width: 100%;
    height: 40vh;
}

@media all and (min-width: 992px) {
    .ytvideo,
    .virtual {
        max-width: 960px;
        height: 540px;
        padding: 0;
    }
}

.ytvideo iframe,
.virtual iframe {
    border-style: none;
    height: 100%;
    width: 100%;
}

.ytvideo video,
.virtual video {
    border-style: none;
    height: 100%;
    width: 100%;
}

.ytvideo .seo,
.virtual .seo {
    display: none;
}

@media all and (min-width: 768px) {
    .container-form {
        max-width: 960px !important;
    }
}

.container-form p {
    font-weight: 400 !important;
}

#form-project-region {
    text-transform: capitalize;
}

.page[data-page='news'] h1,
.page[data-page='events'] h1 {
    color: #231f20;
    letter-spacing: 2px;
    padding-top: 50px;
}

@media all and (max-width: 768px) {
    .page[data-page='event-article'] header {
        padding-top: 60px;
    }
}

.page[data-page='event-article'] h1 {
    font-size: 2.25em;
    letter-spacing: initial;
}

.page[data-page='event-article'] blockquote {
    font-style: italic;
}


/*-----------------
  Date & time
------------------*/

#wrapper {
    width: 780px;
    font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft YaHei UI", "Microsoft YaHei", STXihei, SimSun, sans-serif;
}

@media all and (max-width: 768px) {
    #wrapper {
        margin-top: 20px;
    }
}

.perfect-datetimepicker tbody td.selected {
    border: 1px solid #12803a !important;
    background-color: #12803a !important;
}

.perfect-datetimepicker table td.weekend {
    color: black !important;
}

.log-wrapper {
    float: right;
}

.log {
    max-height: 300px;
    overflow: auto;
}

.log .log__entry {
    margin: .1em 0;
    padding: .1em .2em;
    border: 1px solid black;
    white-space: nowrap;
}

.perfect-datetimepicker {
    margin: auto !important;
}


/*-------------------------*/

.events-img-slide {
    background-size: cover;
    background-position: center;
    height: 425.25px;
}

.events-img-slide1 {
    background-size: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.events-details {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f0f0f0;
}

.events-details .events-details-container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media all and (max-width: 992px) {
    .events-details .events-details-container {
        min-height: 250px;
    }
}

.events-details .events-slider-controls {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    height: 60px;
}

.events-details-slider {
    height: 100%;
}

.events-details-slider>div,
.events-details-slider>div>div {
    height: 100%;
}

.no-siema-slider .events-details-slider>div,
.no-siema-slider .events-details-slider>div>div {
    height: auto;
}

.no-siema-slider .events-details-slider .events-details-slide {
    height: 100%;
}

.no-siema-slider .events-details .events-slider-controls {
    display: none !important;
}

.events-details-slide {
    height: 100%;
    padding: 0px 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
}

.events-details-slide .underline {
    border-bottom: 1px solid #231f20;
    width: 100%;
    display: block;
}

.events-details-title p {
    font-family: 'EcoWorldSans-Regular';
    color: #231f20;
}

.events-details-content p {
    margin: 35px 0px;
}

.events-details-content a {
    font-family: 'EcoWorldSans-Regular';
}

.events-details-btn {
    border: 1px solid #231f20;
    letter-spacing: 2px;
    padding: 10px 40px;
    display: inline-block;
    position: relative;
    z-index: 5;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: color;
}

.events-details-btn:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #231f20;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.events-details-btn:hover {
    color: white;
    text-decoration: none;
}

.events-details-btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.events-pagination-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 5%;
}

.pagination-dot {
    height: 10px;
    width: 10px;
    background: #e4e4e4;
    margin-right: 15px;
    cursor: pointer;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagination-dot.is-active {
    background: #505050;
}

.events-btn-container {
    position: relative;
}

.events-btn-container:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: 1px;
    padding: 20px 0;
    background-color: #b9b9b9;
    background-clip: content-box;
}

.events-btn-container>button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    height: 100%;
    width: 65px;
    padding: 22px;
    background-color: #e4e4e4;
    -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.events-btn-container>button:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.events-btn-container>button:hover {
    background-color: gainsboro;
}

.events-btn-container .events-left-btn:before {
    background-image: url("../img/icons/icon-left-btn.svg");
}

.events-btn-container .events-right-btn:before {
    background-image: url("../img/icons/icon-right-btn.svg");
}

.post-list-container a {
    text-decoration: none;
}

.post-list-container a:hover p {
    color: #12803a;
}

.post-list-container a:hover .events-details-btn {
    color: white;
    text-decoration: none;
}

.post-list-container a:hover .events-details-btn:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.post-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.post-card p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.post-card .events-details-btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.post-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.post-card-img::before {
    content: 'FIND OUT MORE';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    font-family: 'EcoWorldSans-Regular';
    color: white;
    border: 1px solid white;
    padding: 5px 30px;
    letter-spacing: 1px;
    white-space: nowrap;
    -webkit-transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card-img::after {
    content: '\A';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card-img:hover::after,
.post-card-img:hover::before {
    opacity: 1;
}

.post-title,
.post-date {
    color: #231f20;
}

.post-card-info {
    min-height: 107px;
}

.page[data-page='contact-us'] h1,
.page[data-page='contact-us'] h2 {
    color: #231f20;
}

.page[data-page='contact-us'] a {
    color: #231f20;
}

.contact-form .text-md {
    font-size: 1.2rem;
}

.contact-form p a {
    font-family: 'EcoWorldSans-Regular';
    text-decoration: underline;
}

.contact-form select {
    width: 100%;
    height: 2.5rem;
    padding-left: 10px;
    -webkit-appearance: none;
    background-color: #cfcfcf;
    border: none;
    border-radius: 0;
    outline: none;
    font-family: 'EcoWorldSans-Regular';
    font-size: 16px;
    color: #231f20;
}

.contact-form input {
    padding-left: 10px;
    background-color: transparent;
    outline: none;
    font-family: 'EcoWorldSans-Regular';
    font-size: 1.1rem;
	border: 1px solid #000;
}

.contact-form input::-webkit-input-placeholder {
    color: #666666;
    font-size: 1.1rem;
}

.contact-form input:-ms-input-placeholder {
    color: #666666;
    font-size: 1.1rem;
}

.contact-form input::-ms-input-placeholder {
    color: #666666;
    font-size: 1.1rem;
}

.contact-form input::placeholder {
    color: #666666;
    font-size: 1.1rem;
}

.contact-form textarea {
    height: 70%;
}

.contact-form .checkbox-container .form-check {
    min-width: 45%;
}

.contact-form .form-check-input {
    margin-top: -0.1rem;
}

.contact-form .form-check-label {
    font-size: 1.2rem;
}

.select-container {
    position: relative;
}

#popup-img {
    display: block;
}

#popup-img-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    #popup-img {
        display: none;
    }
    #popup-img-mobile {
        display: block;
    }
}

.select-container:after {
    content: '';
    height: 10px;
    width: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent url("../img/icons/icon-down-arrow.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.projects-selector option {
    display: none;
}

.contact-submit-btn {
    border: 1px solid #231f20;
    letter-spacing: 2px;
    padding: 10px 40px;
    -ms-flex-item-align: start;
    align-self: start;
}

.contact-submit-btn:hover {
    color: #231f20;
    text-decoration: none;
}

.contact-social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-social-icons img {
    width: 45px;
}

@media all and (max-width: 1200px) {
    .gmap-container {
        max-width: none;
    }
}

.contact-wrapper p {
    font-size: 1.5em;
    font-family: 'EcoWorldSans-Regular';
}

.contact-wrapper b {
    font-size: 1.2em;
    font-family: 'EcoWorldSans-Regular';
    font-weight: normal;
}

@media all and (min-width: 768px) {
    .contact-wrapper b {
        font-weight: bold;
    }
}

option.show-all {
    display: block !important;
}

.page[data-page='disclaimer'] {
    background-color: #f7f7f7;
}

.page[data-page='tnc'] {
    background-color: #f7f7f7;
}

.page[data-page='privacy'] {
    background-color: #f7f7f7;
}

.page[data-page='privacy'] li {
    padding-bottom: 10px;
}

#egpopup .modal-content {
	background:transparent;
	border:0;
}

#egpopup .modal-header {
	border-bottom:0;
	padding-top:0;
	padding-bottom:0;
}
#egpopup .close {
	
    float: right;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0px 0 #fff;
    opacity: 1;
	padding: 0rem 1rem;
}


@media (min-width: 576px) {
#egpopup .modal-dialog {
    max-width: 1000px!important;
}
}

.gallery-caption{
    position: relative;
    padding: 10px 10px;
    background: rgb(224 224 224 / 60%);
    width: 100%;
    margin-top: -42px;
    color: #fff;
    z-index: 999999;
    font-weight: bold;
}


.news-ul ul{
padding-left: 2rem;	
}
/*# sourceMappingURL=main.css.map */