* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

h1 {
  text-transform: uppercase;
  font-family: "Paytone One", sans-serif;
  letter-spacing: 4px;
  font-size: 2.6rem;
}

h2 {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Paytone One", sans-serif;
  padding: 20px;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #222;
}

.container {
  margin: 0 auto;
  width: 1280px;
  max-width: 100%;
  height: 100%;
}

section,
footer {
  padding: 1rem;
}

.burger {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 11;
}
.burger:focus {
  outline: none;
  border: 1px solid #fff;
  border-radius: 8px;
}
.burger:hover .burger-box-bars::after,
.burger:hover .burger-box-bars::before {
  width: 100%;
}
.burger-box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-box-bars, .burger-box-bars::after, .burger-box-bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #333;
  transition: width 0.3s;
}
.burger-box-bars {
  width: 100%;
}
.burger-box-bars::after {
  top: 13px;
  width: 60%;
}
.burger-box-bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #ffffff;
  transform: translateX(100%);
  z-index: 10;
  transition: transform 0.3s;
  border-bottom: 1px solid black;
}
.nav .logo {
  display: none;
}
.nav--active {
  transform: translateX(0);
}
.nav-items {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}
.nav-item {
  font-size: 1.2rem;
  padding: 10px;
  margin: 5px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  transition: 0.2s;
}
.nav-item:hover {
  color: #368681;
}

header {
  color: #ffffff;
}
header .hero-img {
  position: relative;
  height: 65vh;
  background-image: url("../img/hero-big.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
header .hero-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 122, 133, 0.8);
  z-index: -5;
}
header .hero-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .hero-text h1 {
  font-size: 2.2rem;
}
header .hero-text a {
  padding: 1rem 2rem;
  color: #fff;
  background-color: #333;
  font-size: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  transition: 0.2s;
}
header .hero-text a:hover {
  background-color: #666;
}

.projects {
  background-image: linear-gradient(#c9dce2, #fff);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.projects .project_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, 1fr);
  justify-items: stretch;
  gap: 2rem;
}
.projects .project_grid-img {
  position: relative;
  overflow: hidden;
  max-width: 250px;
  max-height: 290px;
  border-radius: 8px;
}
.projects .project_grid-img img {
  height: 100%;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.projects .project_grid-img:hover::after {
  background-color: rgba(0, 0, 0, 0.1);
}
.projects .project_grid-img:hover img {
  transform: scale(1.1);
}
.projects .see-more {
  margin-top: 2rem;
  text-decoration: none;
  background-color: #333;
  border-radius: 8px;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  transition: 0.2s;
}
.projects .see-more:hover {
  background-color: #666;
}

.offer {
  background-color: #c9dce2;
}
.offer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  row-gap: 2rem;
  padding-bottom: 20px;
}
.offer .card {
  position: relative;
  width: 250px;
  height: 290px;
  border-radius: 15px;
  transition: 0.2s;
  overflow: hidden;
}
.offer .card_inner {
  position: inherit;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.offer .card_inner h3 {
  font-family: "Lucida Sans" sans-serif;
  font-size: 1.2rem;
  color: #fff;
  z-index: 2;
  transition: 0.3s;
}
.offer .card::after, .offer .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.offer .card::before {
  z-index: 0;
  background-position: center center;
}
.offer .card::after {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.offer .card:hover .card_inner h3 {
  transform: scale(1.05);
}
.offer .card:hover::before {
  transform: scale(1.1);
}
.offer .card:hover::after {
  background-color: rgba(255, 255, 255, 0.15);
}
.offer .card-1::before {
  background-image: url(../img/offer1.webp);
}
.offer .card-2::before {
  background-image: url(../img/offer2.webp);
}
.offer .card-3::before {
  background-image: url(../img/offer3.webp);
}

.contact ul li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact ul li a {
  font-size: 1.3rem;
  text-align: center;
  padding: 10px;
  color: #333;
  color: #333;
}
.contact ul li a i {
  margin: 5px;
  transition: 0.2s;
}
.contact ul li a:hover i {
  color: #368681;
}

footer {
  text-align: center;
  background-color: #c9dce2;
  padding: 1rem;
}
footer h3 {
  color: #969696;
}
footer .links {
  display: flex;
  justify-content: center;
}
footer .links a {
  font-size: 2rem;
  padding: 15px;
  margin: 5px;
  color: #222;
  transition: 0.3s;
}
footer .links a:hover {
  transform: scale(1.15);
  color: #368681;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 80px;
  }
  .burger {
    display: none;
  }
  .nav {
    top: 0;
    right: none;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 90px;
    background-color: #fff;
    transform: translateY(0);
    border-bottom: 1px solid black;
  }
  .nav .logo {
    display: block;
    max-height: 8vh;
  }
  .nav .logo img {
    height: 80px;
  }
  .nav-items {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .nav-item {
    font-size: 1.4rem;
    color: black;
  }
  header {
    margin-top: 80px;
  }
  header .hero-text h1 {
    font-size: 5rem;
  }
  header .hero-text a {
    font-size: 1.4rem;
  }
  .projects {
    background-image: linear-gradient(#e5f6f5 10%, #fff);
  }
  .projects .project_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .projects .project_grid-img {
    max-width: 350px;
    max-height: 350px;
    cursor: pointer;
  }
  .projects .project_grid-img img {
    height: 100%;
    width: auto;
  }
  .projects .project_grid-img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.2s;
  }
  .projects .see-more {
    font-size: 1.6rem;
  }
  .offer {
    background-color: #c9dce2;
  }
  .offer .card {
    height: 350px;
    width: 350px;
  }
  .offer .card .card_inner h3 {
    font-size: 1.6rem;
  }
  .offer-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */