* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
}

.wrapper {
    width: auto;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 400, 0, 0.4)), url("");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: opacity(80%);
}

.Container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    flex-direction: row;
    flex-grow: 2%;
    margin-inline-end: initial;
    opacity: 1;
}

    @media only screen and (max-width: 767px) {
        /* hide the element on screens smaller than 768px (i.e., mobile devices) */
        .services-nav {
          display: none;
        }
      }
      

.logo {
    margin: -3.5%;
}

.menu {
    display: inline-block;
    line-height: 80px;
}

.menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: black;
    border: 1.5px solid transparent;
    border-radius: 4px;
    padding: 10px 15px;
    transition: 0.5s ease;

}

.menu ul li a:hover {
    border-color: black;
}

.header {
    text-align: center;
}

header button:hover {
    border-color: white;
}

.header h1 {
    font-family: "Raleway", sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1rem;
    color: black;
    padding: 45% 20px 8px;
}

.header p {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    color: black;
    padding: 10px 15px;
}

button {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: black;
    background-color: rgba(0, 0, 0, 0.151);
    font-family: "Raleway", sans-serif;
    padding: 15px 20px;
    margin: 100px auto 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}




/* TEXT */
a,
a:visited,
a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
}

p {
    font-weight: 500;
    line-height: 150%;
}

/* SPACING */
.container {
    max-width: 95%;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

.containerTxt {
    max-width: 90%;
    margin: 0 auto;
}


/* FOOTER */
footer {
    background-color: rgba(34, 34, 34, 0.9);
    color: #fff;
    padding: 0px 0;
}

.wrapper1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.wrapper1 p {
    font-size: 12px;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    flex: 0 0 100%;
}

.wrapper1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    margin-left: 10px;
}

.wrapper1 a:hover {
    text-decoration: underline;
    transition: all 0.9s ease-in-out;
    color: rgb(75, 214, 63);
}