
  @import url('https://fonts.googleapis.com/css2?family=Vesper+Libre:wght@700&display=swap');

:root {
  --lightyellow: #ebdd6d;
  --yellow:#fdc628;
  --white: #fff;
  --black: rgba(0, 0, 0, 0.7);
  --black2: #333;
  --lightgreen:#c6ebd7;
  --green:#047a7f;

}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
input,
textarea {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Vesper Libre", sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.8;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

nav li,
nav ul {
  list-style: none;
}

img {
  max-width: 100%;
}

::selection {
  background-color: var(--lightgreen);
  color: var(--white);
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media only screen and (max-width: 996px) {
  .container {
    padding: 0 12rem;
  }
}

@media only screen and (max-width: 567px) {
  .container {
    padding: 0 3rem;
  }
}



/* ====================
    Navigation
   ====================
*/

.hamburger {
  display: none;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  text-shadow: 0.5px 0.5px 0.5px #808080;
  background-color: var(--white);
}

.d-flex {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: space-between;
}

.fix-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  text-shadow: 0.5px 0.5px 0.5px #808080;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.logo {
  cursor: pointer;
}

.logo img{
  height: 8rem;
}
.nav-menu {
  height: auto;
}

.nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-link:link,
.nav-link:visited {
  padding: 1rem;
  color: var(--green);
  text-shadow: 0.5px 0.5px 0.5px var(--green);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  border-start-end-radius: 50%;
  border-end-start-radius: 50%; 
}

.nav-link:hover {
  color: var(--lightyellow);
  background-color: var(--green);
  text-shadow: 0.5px 0.5px 0.5px var(--green);
  border-start-end-radius: 50%;
  border-end-start-radius: 50%; 
}

/* =======================
    Navigation Media Query
   =======================
*/

@media only screen and (max-width: 996px) {
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .nav {
    display: block;
    background-color: var(--white);
    text-shadow: 0.5px 0.5px 0.5px #808080;
  }

  .nav-header {
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu {
    height: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  .hamburger {
    display: block;
    font-size: 2.5rem;
    color: var(--lightyellow);
    cursor: pointer;
  }

  .nav-list {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.6rem;
  }

  .nav-item:not(:last-child) {
    margin-right: 0.5rem;
  }

  .nav-list .nav-item {
    width: 100%;
  }

  .nav-list .nav-link:link,
  .nav-list .nav-link:visited {
    display: block;
    font-size: 1.5rem;
    padding: 1rem;
    border-start-end-radius: 0;
  border-end-start-radius: 0; 
  }
}


/* Section */
.section {
  margin-top: 7rem;
  padding: 8rem 0;
  overflow-x: hidden;
}
.container h1, .container h4 {
  font-weight: bold;
  color: var(--green); 
  text-shadow: 0.5px 0.5px 0.5px #808080;
}
.container p a {
  color: var(--green);
  text-shadow: 0.5px 0.5px 0.5px #808080;
  font-weight: bolder;
}
.container p a:hover {
  color: var(--yellow);
  text-shadow: 0.5px 0.5px 0.5px #808080;
}

.container p.top, .container p,.container h4 {
  margin-top: 2rem;
  text-indent: 20px;
}
/* gallery */

.gallery-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-top: 7rem;
}

.gallery-container .single {
  position: relative;
  height: 26rem;
  z-index: 0;
}

.gallery-container .single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-container .overlay {
  position: absolute;
  bottom: 0;
  height: 0%;
  width: 100%;
  background-color: rgba(50, 0, 50, 0.2);
  z-index: 1;
  overflow: hidden;
  transition: all 500ms ease-out;
}

.gallery-container .single:hover .overlay {
  height: 100%;
}

.gallery-container .overlay .details {
  color: var(--lightgreen);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.gallery-container .overlay .details h3 {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 2rem;
}

.gallery-container .overlay .btn-contact {
  color: var(--white);

}

.gallery-container .overlay .btn-contact a {
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.8rem;
  display: inline-block;
  padding: 0.6rem 1.3rem;

}

@media only screen and (max-width: 996px) {
  .gallery-container, .services_container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .gallery-container, .services_container {
    grid-template-columns: 1fr;
  }

  .gallery-container .single, .services1 {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
  }
}


/* Footer */

footer {
  background-color: var(--green);
  padding: 1rem;
  color: var(--lightgreen);
  text-align: center;
  text-shadow: 1px 1px 1px var(--green);
}
footer a:hover{
color: var(--lightyellow);
text-shadow: 1px 1px 1px var(--green);
}