.navbar {
    height: 95px;
    padding: 16px 0;
    background-color: transparent;
    transition: background-color 0.4s ease, height 0.4s ease;
}

/*Toggler Preto*/
.custom-navbar .navbar-toggler-icon-black {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*Toggler Branco*/
.custom-navbar .navbar-toggler-icon-white {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-brand img {
    width: auto;
    height: 72px;
    padding-right: 8px;
}

.navbar-nav .nav-link {
    margin-right: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 500;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    border: none !important;
}

.navbar-toggler-icon {
    background-color: transparent;
    border: none;
    color: #000;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
    border: 2px;
    color: black;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.custom-navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    margin-top: 0;
}

.custom-navbar .dropdown-menu a {
    text-align: center;
    color: #fff;
    font-size: 12px;
    display: block;
    padding: 10px;
}

.custom-navbar .dropdown-menu a:hover {
    background-color: rgba(103, 63, 0, 0.8);
}

.custom-navbar .dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.navbar-scrolled {
    background-color: white;
}

@media (min-width: 768px) {
    .navbar-scrolled {
        height: 70px !important;
    }
}


@media (max-width: 768px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        color: #fff;
        height: 100%;
        z-index: 50;
        border-radius: 5px;
        padding: 25px;
        margin-top: 10px;
    }

    .navbar-collapse .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        margin-right: 0;
    }

    .navbar-collapse .navbar-nav .nav-link {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .item-subline {
        display: inline-block;
        position: relative;
    }

    .item-subline::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 55%;
        margin-bottom: 4px;
        height: 1.6px;
        background-color: black;
        transform: translateX(-50%);
    }
}


/* CAROUSEL */
.carousel-inner img {
    object-fit: cover;
    height: 100vh;
}

@media (max-width: 768px) {
    .carousel-inner img {
        object-fit: cover;
        height: 100vh;
        width: 100%;
    }
}

.carousel-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/* PROJECT SECTION */
.project-container {
    padding: 50px;
    font-family: 'Poppins', sans-serif;
}

.image-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

@media screen and (max-width: 768px)
{
    .image-column {
        justify-content: center;
    }
}

@media (max-width: 498px) {
    .project-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-height: 90vh;
        padding-top: 80px;
        width: 100%;
    }

    .image-column {
        gap: 10px;
        width: 100%;
    }

    .image-card {
        width: 100% !important;
        height: 200px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .image-card img {
        object-fit: cover;
        border-radius: 1px;
    }

    .image-card h4 {
        top: calc(50% - 0.5rem);
        margin: 0;
        font-size: 1rem !important;
        font-weight: 600 !important;
        text-align: center;
        width: 100%;
    }

    .proj-title {
        margin-bottom: 20px;
    }
}

.image-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;

    width: 270px;
}

@media screen and (max-width: 1400px)
{
    .image-card {
        width: 270px;
    }
}

.image-card img {
    width: 100%;
    height: 500px;
    border-radius: 1px;
    transition: filter 0.3s;
    object-fit: cover;
}

.image-card h4 {
    position: absolute;
    text-align: center;
    color: #fff;
    bottom: 230px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 25px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.image-card:hover img {
    filter: brightness(0.6) grayscale(100%) blur(2px);
}

.image-card:hover h4 {
    opacity: 1;
}


/* ABOUT SECTION */
#about {
    background-color: #f8c42c;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    padding-top: 70px;
    padding-bottom: 60px;
}

#about h2 {
    color: #333;
}

#about p {
    color: #2a2a2a;
}

.about-title {
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.abt {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;

    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.proj-title {
    display: flex;
    flex-direction: column;
    align-items: center;

    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 767px) {
    .about {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .about-title {
        margin-bottom: 5vh;
    }

}


/* CONTACT SECTION */
#contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.contact-info {
    padding-top: 27px;
}

.contact-info ul {
    padding-left: 10px;
}



/* FOOTER */
.footer {
    background: #000;
    padding: 20px 0px 10px 0px;
    font-family: 'Play', sans-serif;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer .row2 {
    width: 100%;
    margin: 1% 0%;
    padding: 0.4% 0%;
    color: gray;
    font-size: 0.8em;
}

.footer .row2 a {
    text-decoration: none;
    color: gray;
    transition: 0.5s;
}

.footer .row2 a:hover {
    color: #fff;
}

.footer .row2 a i {
    font-size: 2em;
    margin: 0% 1%;
}

@media (max-width:720px) {
    .footer {
        text-align: left;
        padding: 5%;
    }

    .footer .row2 ul li {
        display: block;
        margin: 10px 0px;
        text-align: left;
    }

    .footer .row2 a i {
        margin: 0% 3%;
    }
}