html {
    font-family: "Roboto", -apple-system, "Helvetica Neue", sans-serif;
}

.wrapper {
    max-width: 100%;
    height: 100vh;
}



.header {
    background-color: #44612d;
    /* Replace with your desired color */
    color: pink;
    /* Replace with your desired color */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    width: 150px;
    margin-right: 5rem;

}

.menu {
    position: relative;

    .svg-icon {


        svg {
            cursor: pointer;
        }
    }

}

/* Style your navigation links */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline-block;
    margin-right: 20px;
}

.menu li a:after {
    height: 1px;
    left: 10%;
    top: 50%;
    margin-top: 20px;
    width: 80%;
    background: #ffffff;
}

.menu li a:hover::after {
    background: #ffffff;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    vertical-align: middle;
}

.menu li a:hover {
    border-bottom: 3px solid white;
}

.introimage {
    max-width: 100%;
}




main.main-content {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;

    .section2-title {
        padding: 4rem;

        p:first-child {
            font-size: 24px;
        }

        h3 {
            font-size: 40px;
            padding: 15px 0;
            font-weight: 800;
        }

        .p-1 {
            padding-top: 15px;
            font-size: 18px;
            font-weight: 500;

            &#p-phone {
                color: orange;
            }
        }


    }
}

.section2-title {
    padding: 10px;

    h2 {
        font-size: 2rem;
        font-weight: bolder;
        margin-left: 1rem;
        padding: 1rem 0;
    }
}

.main-content .item-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 15px;
    /* margin: 0 10px; */
    padding-right: 30px;
    padding-left: 30px;

    .item-wrapper {
        width: 100%;

        .image-wrapper img {
            max-width: 100%;
            height: auto;
            background-size: cover;
        }

        .desc {
            h3 {
                font-size: 1.2rem;
                font-weight: bold;
                text-align: center;
                padding-bottom: 0.5rem;
            }

            p {
                color: #bf8f45;
                font-weight: 600;
                margin-bottom: .5em;
                font-size: 1rem;
            }
        }
    }

}

.wrapper {
    footer {
        background-color: #152331;
        color: rgb(168, 167, 167);

        .border {
            border-top-color: rgba(231, 228, 228, 0.1);

            .container {
                padding: 50px;
                text-align: center;
            }
        }
    }

    dropdown-content {
        background-color: #04AA6D;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
    }

    /* .menu>ul>li> {
        position: relative;
    }

    .menu ul ul {
        position: absolute;
        display: none;
        padding: 0px;
        margin: 0px;
        list-style: none;
        border-radius: 3px;
        width: 200px;
        background-color: white;
        box-shadow: 0 0 1 pixel gray;
    }

    .menu ul ul a {
        display: block;
        line-height: 30px;
        color: black;
        text-decoration: none;
        font-variant: small-caps;
        font-size: larger;
        padding: 0 10px;
    }

    .menu>ul>li:hover>ul {
        display: block
    }

    .menu ul ul a:hover {
        background-color: black;
        color: white;
    } */
    .desc {
        text-align: center;

    }


}