/* reset */

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

/*html {
   font-size: 74.5%; 62.5% de 16px=10px; 
}*/

body {
  font-family: "Mulish", sans-serif;
  background: #eee;
  color: #333;
}

p {
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
}

strong {
  color: #2071e7;
  font-weight: 400;
}

em {
  color: #555;
}

/* class */

.container {
  display: block;
  max-width: 1200px;
  margin: auto;
}

.title {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 3rem;
}

/* vp / header / main */

.vp-container {
  min-height: 185vh;
  display: flex;
  flex-direction: column;
}

header {
  min-height: 5vh;
  padding: 1rem 2rem;
  background: #333;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.vp-logo {
  margin-bottom: 0;
  font-family: "Long Cang", cursive;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.vp-logo i {
  color: #2071e7;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.vp-logo a {
  font-size: 3rem;
  font-weight: 300;
  color: white;
}

.main-nav ul {
  display: flex;
  flex-flow: row nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.main-nav li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 1rem;
}

.main-nav li a:hover {
  color: var(--primary);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.hero-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 35px;
}

.hero-cta:hover {
  opacity: 0.8;
}

header ul {
  display: flex;
  flex-flow: row nowrap;
}

header ul li {
  padding: 1rem;
  list-style: none;
}

header ul li a:hover {
  color: #2071e7;
}

header a {
  color: white;
}

.hero {
  background: url(../images/test\ 1.jpg) center center/cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: white;
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.vp-container {
  min-height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.vp {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(..//images/test\ 1.jpg) center center/cover;
}

.vp-content {
  max-width: 800px;
  text-align: center;
  color: white;
}

.vp-content h1 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.vp-content p {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 2rem;
}

/* project-card */

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background: #666;
  border: 1px solid #555;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.cta {
  display: inline-block;
  background: #007bff;
  color: ghostwhite;
  padding: 10px;
  text-decoration: none;
  border-radius: 4px;
}

.cta.disabled {
  background: #333;
  cursor: not-allowed;
}

/* offer */

.offer {
  padding: 5rem 0rem 5rem 0rem;
}

.offer-list {
  display: flex;
  flex: row nowrap;
  justify-content: space-between;
}

.offer-elem {
  border: 1px solid #ddd;
  background: white;
  margin: 1rem;
  flex: 1;
}

.offer-elem-img {
  width: 100%;
  height: 255.69px;
}

.offer-elem-text {
  padding: 2rem;
  text-align: center;
}

.offer-separator {
  margin: 1rem auto;
  height: 2px;
  width: 50px;
  background: #333;
}

.bg-dark {
  background: #333;
  color: whitesmoke;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 35px;
}

.button-link:hover {
  opacity: 0.8;
}

.button-link-1 {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 35px;
}

.button-link-1:hover {
  opacity: 0.8;
}

.button-link-2 {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 35px;
}

.button-link-2:hover {
  opacity: 0.8;
}

.button-link-3 {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 35px;
}

.button-link-3:hover {
  opacity: 0.8;
}

/* contact */
.contact {
  padding: 6rem 3rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(..//images/test\ 1.jpg) center center/cover;
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form input {
  background: #333;
  border: 0;
  border-bottom: 1px solid #555;
  padding: 1rem;
  font-size: 1.3rem;
  color: whitesmoke;
  outline: 0;
  margin-bottom: 1rem;
}

/* footer */

footer {
  background: #333;
  padding: 2rem;
  color: white;
  text-align: center;
}
