:root {
    --color-white: #ffffff;
    --color-medium-orange: #F37715;
    --color-dark-orange: #DB6507;
    --color-black: #161616;
    --bg-medium-orange: rgba(243, 119, 21, 0.7686);
}

body {
    font-family: "Poppins", sans-serif;
}

/* reusable components */
.btn-custom {
    background-color: var(--color-medium-orange);
    color: var(--color-white);
}

.btn-custom:hover {
    color: var(--color-white);
    background-color: var(--color-dark-orange);
}

.horizontal-line {
    width: 40px;
    height: 2px;
    background: var(--color-medium-orange);
}


/* end reusable components */

/* Navbar */
.navbar {
    top: 0;
    position: fixed;
    z-index: 3;
    width: 100%;
    background: transparent;
}

.navbar-collapse {
    justify-content: flex-end !important;
}

.navbar-collapse .navbar-nav {
    align-items: center !important;
    gap: 10px;
}

.navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(3.5px) !important;
}

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

.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,<svg width="28" height="26" viewBox="0 0 28 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 5C2 3.89543 2.89543 3 4 3H24C25.1046 3 26 3.89543 26 5C26 6.10457 25.1046 7 24 7H4C2.89543 7 2 6.10457 2 5Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2 13C2 11.8954 2.89543 11 4 11H24C25.1046 11 26 11.8954 26 13C26 14.1046 25.1046 15 24 15H4C2.89543 15 2 14.1046 2 13Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2 21C2 19.8954 2.89543 19 4 19H14C15.1046 19 16 19.8954 16 21C16 22.1046 15.1046 23 14 23H4C2.89543 23 2 22.1046 2 21Z" fill="white"/></svg>') !important;
}

/* end navbar */


/* Carousel */
.home-slide img {
    height: 600px;
    object-fit: cover;
}

.home-slide .carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.home-slide .carousel-caption.custom {
    position: absolute;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0;
    left: 60%;
    bottom: 40%;
    text-align: left;
    padding: 40px 10% 40px 40px;
}

.home-slide .carousel-item .btn-with-box-shadown {
    position: absolute;
    bottom: 27%;
    left: 60%;
    background-color: rgba(243, 119, 21, 0.7686);
    color: var(--color-white);
    padding: 10px 15px 10px 15px;
    border-radius: 0 !important;
    font-weight: 700;
    -webkit-box-shadow: 30px 10px 4px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 30px 10px 4px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 30px 10px 4px 0px rgba(0, 0, 0, 0.4);
}

.home-slide .carousel-item .btn-with-box-shadown:hover {
    background-color: rgba(219, 101, 7, 0.7686);
}

.home-slide .carousel-item .btn-not-box-shadown {
    margin-top: 10px;
    background-color: var(--bg-medium-orange);
    color: var(--color-white);
    padding: 10px 15px 10px 15px;
    border-radius: 0 !important;
    font-weight: 700;
}

.home-slide .carousel-item .btn-not-box-shadown:hover {
    background-color: rgba(219, 101, 7, 0.7686);
}



/* end carousel */


/* Catalog */

.catalog {
    margin-top: 100px;
    margin-bottom: 100px;
}

.catalog .title {
    text-align: center;
    font-size: 20px;
}

.catalog .card-catalog {
    width: 100%;
    height: 220px;
    position: relative;
}

.catalog .card-catalog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog .card-catalog .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 34px;
    background-color: var(--bg-medium-orange);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

/* end catalog */

/* About us */
.about-us {
    width: 100%;
    min-height: 428px;
    background-image: url('../img/bg-about-us.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 10px 0 20px 0;
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
}

.about-us .text-about {
    margin-top: 50px;
    color: var(--color-white);
    filter: drop-shadow(0px 4px 10px var(--color-black));
}

.about-us .text-about h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-us .text-about p {
    font-size: 16px;
    font-weight: 400;
}

.about-us .frame-picture {
    width: 100%;
    max-width: 500px;
    height: 320px;
    background-color: var(--color-white);
    border-radius: 10px;
    filter: drop-shadow(5px 5px 10px var(--color-black));
    padding: 15px;
}

.about-us .frame-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .line-container {
    display: inline-block;
    position: relative;
}

.about-us .horizontal-line-white {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    filter: drop-shadow(5px 5px 10px var(--color-black));
}

/* end about us */

/* company green */

.company-green .title {
    text-align: center;
    font-size: 20px;
}

.company-green .frame-picture {
    width: 100%;
    max-width: 500px;
    height: 320px;
    background-color: var(--color-white);
    border-radius: 10px;
    filter: drop-shadow(5px 5px 10px var(--color-black));
    padding: 15px;
}

.company-green .frame-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#companyGreenModal .modal-header {
    border-bottom: unset !important;
}

#companyGreenModal .modal-body{
    padding: 20px 30px !important;
} 
/* end company green */

/* service realized */

.services-realized {
    padding-top: 100px;
    background: #ffffff;
}

.services-realized .title {
    text-align: center;
    font-size: 20px;
}



.services-realized .list-img-desktop {
    gap: 15px 30px;
    justify-content: center;
    flex-wrap: wrap;
}


.services-realized .list-img-desktop img {
    max-width: 336px;
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.services-realized .list-img-mobile img {
    max-width: 300px;
    width: 100%;
    margin-right: 15px !important;
    height: 184px;
    object-fit: cover;
}



/* end service realized */

/* contact */

.contact {
    width: 100%;
    padding: 80px 0 100px 0;
}

.contact .title {
    text-align: center;
    font-size: 20px;
}

.contact .box-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
    gap: 20px;
}

/* end contact */

/* footer */

footer {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p {
    color: var(--color-white);
    font-size: 16px;
}

/* end footer */

/* button whatsapp */
#whatsapp-button {
    display: flex;
    position: fixed;
    background: #25d366;
    bottom: 30px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    box-shadow: 2px 2px 12px rgba(22, 124, 60, 0.2);
    transition: 0.4s;
    align-items: center;
    justify-content: center;
    right: 10px;
}

#whatsapp-button>.rwb-tooltip {
    position: absolute;
    bottom: 0;
    right: 90px !important;
    margin-bottom: 0px;
    border-radius: 4px;
    padding: 15px;
    color: #2d2d2d;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    z-index: 999999;
    background-color: #fff;
}

#whatsapp-button>.rwb-tooltip:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    transform: rotate(270deg);
    border-color: #fff transparent transparent transparent;
    transition: 0.4s;
    right: 0px;
}

#whatsapp-button>img {
    display: block;
    width: 28px;
    height: 34px;
}

#whatsapp-button.simulation,
#whatsapp-button:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, 0.4);
}

#whatsapp-button.simulation>.rwb-tooltip,
#whatsapp-button:hover>.rwb-tooltip {
    opacity: 1;
    transform: translateX(0);
}

#whatsapp-button.simulation>.rwb-tooltip:after,
#whatsapp-button:hover>.rwb-tooltip:after {
    right: -10px;
    transition-delay: 0.4s;
}

/* end button */