/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #b6e7b0, #6588c7);
  min-height: 100vh;
  padding: 40px;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

ul, ol {
  margin-bottom: 10px;
  font-size: 14px;
}

li {
  margin-left: 30px;
  font-size: 14px;
}

/* CONTAINER */
header,
.hero {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo img {
  height: 60px;
}

.logo-icon {
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
}

.nav a.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.nav a.active {
  font-weight: bold;
}

.contact {
  text-align: right;
  font-size: 13px;
}

.contact strong {
  font-size: 18px;
}

.contact a {
  text-decoration: none;
  color: black;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*padding: 60px 50px;*/
  padding: 20px 50px 50px 50px;
  align-items: center;
  gap: 40px;
  background-image: url("background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* TEXT */
.hero-text {
  max-width: 450px;
}

.subtitle {
  text-transform: uppercase;
  font-weight: 600;
  /*letter-spacing: 2px;*/
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-text h2 {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-text h1 span, .hero-text h3 span {
  display: block;
  margin-bottom: 10px;
}

.hero-text h1 span.big {
  font-size: 80px;
  line-height: 65px;
  margin-top: 18px;
}

.hero-text h1 span.background-black, .hero-text h2 span.background-black {
  background-color: black;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  display: inline;
}

.btn-primary {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 60px;
}

.hero-footer p {
  font-size: 13px;
  margin-bottom: 10px;
}

.hero-footer small {
  font-size: 11px;
  opacity: 0.6;
}

/* IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
}

main.hero.pages {
  display: block;
  background-position: bottom;
  background-size: 100% auto;
}

main .hero-text {
  max-width: 100%;
}

.split-cols .col-70 {
  width: 71%;
  float: left;
}

.split-cols .col-30 {
  width: 29%;
  float: left;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  body {
    padding: 20px;
  }

  .header {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-image img {
    width: 280px;
    height: 280px;
  }
}
