@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap");

:root {
    /* --brand: rgba(255, 75, 57, 1); */
    --brand: #634d40; /* #eca600; */
    --dark: #092032;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* img {
    width: 100%;
} */

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    z-index: 1021;
    transition: 0.6s;
    
}

#loader.hide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.6s, opacity 0.6s linear;
}

.loader-img {
    height: 100px;
    position: relative;
}

.loader-img > img {
    height: 100%;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #b5af99;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.whatsapp-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 70px;
    width: 70px;
    z-index: 1000;
}

.whatsapp-button img {
    height: 100%;
}

.cookie-wrg {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    display: none;
}

/* hero slider */
.hero-slider .owl-prev,
.hero-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: var(--brand) !important;
}

.owl-dot.active span {
    background-color: var(--brand) !important;
}

.carousel-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-overlay > div {
    width: 60%;
}

.carousel-title {
    color: white;
    font-size: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 100;
    text-align: center;
}

.carousel-info {
    color: white;
    font-family: sans-serif;
    letter-spacing: 1px;
    text-align: center;
}

/* slide */
.slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
}

/* navbar */
.top-nav {
    background-color: var(--brand);
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.navbar {
    box-shadow: var(--shadow);
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--brand);
    border: 1px solid #fff;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}
.conditions-section {
    margin: 20px 0;
}
.conditions-section a {
    color: #fff;
    margin: 0 10px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: var(--brand);
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #fff;
    border-color: var(--brand);
    color: var(--brand);
}

.intro {
    margin-bottom: 36px;
    text-align: center;
}

.intro p {
    max-width: 500px;
}
.intro h6 {
    color: var(--brand);
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-box {
    align-items: center;
    display: flex;
}

.info-box img {
    width: 90px;
}

#about p {
    text-align: justify;
}

.about-img {
    background-position: center;
    background-size: cover;
}

#milestone {
    background: linear-gradient(
            rgba(255, 77, 41, 0.85),
            rgba(255, 77, 41, 0.85)
        ),
        url("/src/images/layout/bg_banner1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#milestone h1,
#milestone p {
    color: #fff;
}

.service {
    padding: 32px;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
}

.service img {
    width: 90px;
}

.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 10px;
}

.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 76, 41, 0) 0%,
        var(--dark) 100%
    );
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%;
}

.project h2,
.project h6 {
    color: #fff;
}

.product-categorie {
    text-align: center;
}

.product-categorie .image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-categorie .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(99, 77, 64, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-categorie h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.product-view a {
    padding: 0 10px 0 10px;
    height: auto;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.product-view a:hover {
    background-color: #fff;
    color: var(--brand);
}

.product-view .btn-orcamento {
    background-color: #634d40;
    border: #634d40;
    font-weight: bold;
    font-size: 16px;
}

.product-view .btn-orcamento:hover {
    background-color: #fff;
    color: #000;
    border: #fff;
}

.product-categorie .product-view {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

/* .product-categorie .social-icons a {
    width: 40px;
    height: 40px;
} */

.product-categorie:hover .product-view {
    top: 50%;
    opacity: 1;
}

.product-categorie:hover .overlay {
    top: 0%;
    opacity: 1;
}

/* #reviews {    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.product-container {
    height: 350px;
    width: 350px;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--brand);
}

.review .stars {
    color: var(--brand);
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand);
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
}

footer {
    /* background: linear-gradient(
            0deg,
            rgba(8, 32, 50, 0.9),
            rgba(8, 32, 50, 0.9)
        ),
        url('/src/images/layout/bg_banner1.jpg'), #082032;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: var(--brand);
}

footer .footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0px;
    padding-top: 0px;
    background-color: #fff;
}

.footer-bottom p {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0px;
    padding-top: 0px;
    background-color: #fff;
    color: var(--brand);
}

footer .navbar-brand {
    color: #fff;
}

footer p {
    color: #fff;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
    border: 1px solid #fff;
}

.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}

input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}

/* categorie page */
.categorie-title {
    padding: 100px 0 100px 0;
}

.categorie-title h2 {
    color: var(--brand);
}

/* product page */
.product-slider {
    padding-top: 0px;
}

.product-slider .owl-prev,
.product-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.product-slider .owl-prev:hover,
.product-slider .owl-next:hover {
    background-color: var(--brand) !important;
}

#product-detail h1 {
    text-align: center;
    border-bottom: 1px solid var(--brand);
    padding-bottom: 10px;
}

#product-detail p {
    text-align: justify;
}

.actions-container {
    padding-top: 100px;
}

.actions {
    padding-top: 50px;
    padding-bottom: 100px;
}

.actions .action {
    background-color: var(--brand);
    height: 150px;
    width: 150px;
    color: #fff;
    font-weight: bold;
    border-radius: 500px;
}

.action > div {
    height: 150px;
    width: 150px;
}
