@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --main-color: #27463c;
    --second-color: #f1efd1;
}

body {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    letter-spacing: .04rem;
}

#main__hero {
    position: relative;
    height: 100vh;
}

#main__hero .main__hero--background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

#main__hero .main__hero--background::before {
    position: absolute;
    content: '';
    background-color: rgba(0,0,0, .25);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#main__hero .floating-readmore {
    position: absolute;
    bottom: 25px;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
}

#main__hero .floating-readmore a {
    color: inherit;
    text-decoration: none;
    transition: .2s ease-in-out;
}

#main__hero .floating-readmore a:hover {
    text-decoration: underline;
    transition: .2s ease-in-out;
}

.fw-bolder {
    font-weight: 900!important;
}

header {
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

header #header__top {
    font-size: .85rem;
}

header a {
    color: inherit;
    text-decoration: none;
}

header .nav-link {
    color: #fff!important;
    box-shadow: none!important;
    border: 0!important;
    font-size: .9rem;
    text-transform: uppercase;
}

header.scrolled .nav-link {
    color: #000!important;
}

header.scrolled #header__main {
    transform: translateY(-1px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #fff;
}

header img.center-logo {
    width: 5rem;
}

header.scrolled img.center-logo {
    width: 4rem;

}

.navbar-toggler {
    border: 0!important;
    box-shadow: none!important;
}

header.scrolled .navbar-toggler-icon {
    width: 2em;
    height: 2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2839, 70, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .navbar-toggler-icon {
    width: 2em;
    height: 2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#header__top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  z-index: 1000;
}

#header__top.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#header__main {
    position: fixed;
    transform: translateY(25px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    left: 0;
    width: 100%;
}

.btn-main {
    background-color: var(--main-color)!important;
    border-color: var(--main-color)!important;
    color: #fff!important;
    transition: .5s ease-in-out;
}

.btn-main:hover {
    background-color: var(--second-color)!important;
    border-color: var(--main-color)!important;
    color: var(--main-color)!important;
    transition: .5s ease-in-out;
}

.btn {
    border-radius: 4px;
}

.btn-text {
    font-size: .9rem;
}

#main__features {
    background-color: var(--second-color);
}

.text-main {
    color: var(--main-color)!important;
}

#main__houses .card-img-top {
    height: 350px;
    overflow: hidden;
    position: relative;
}

#main__houses .card:hover .img-desc {
    opacity: 1;
    transition: .3s ease-in-out;
}

#main__houses .card-img-top .img-desc {
    transition: .3s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(39,70,60,.8);
    color: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.2rem;
}

#main__houses .card-img-top img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#main__info {
    position: relative;
    overflow: hidden;
}

#main__info .main__info--background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#main__info .main__info--background img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#main__info a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

#main__info .card p {
    text-align: center;
}

#main__blog a {
    color: inherit;
    text-decoration: none;
}

#main__blog .card-img-top {
    height: 230px;
    overflow: hidden;
}

#main__blog .card-img-top img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#footer__main {
    background-color: var(--main-color);
    color: #fff;
}

#footer__main a {
    text-decoration: none;
    color: #fff;
}

#footer__copyright {
    font-size: .85rem;
}

#footer__copyright a {
    color: inherit;
    text-decoration: none;
}

.page-title {
    position: relative;
    height: 250px;
    width: 100%;
}

.page-title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .55);
    z-index: 1;
}

.page-title .container {
    position: absolute;
    display: flex;
    color: #fff;
    justify-content: start;
    flex-direction: column;
    align-items: start;
    left: 0;
    right: 0;
    bottom: 55px;
    z-index: 50;
}

