* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: helvetica;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  color: #333;
}
p {
  color: #707070;
}

nav {
  position: relative;
}

.navbar-container {
  width: 100%;
  height: 80px;
  background-color: #232;
  padding: 0 2rem;
}

.navbar-itens {
  position: absolute;
  right: 0;
  height: 80px;
  line-height: 80px;
  margin: 0;
  display: inline-block;
}

.navbar-itens li {
  display: inline-block;
  list-style: none;
  margin-left: 25px;
  text-transform: uppercase;
}

.navbar-itens a {
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
  &:hover {
    color: #ccc;
  }
}

.logo {
  width: 50px;
  margin-top: 15px;
}

.navbar-itens .default-btn {
  padding: 15px 20px;
  background-color: #2cc76a;
  border-radius: 5px;
  &:hover {
    background-color: #22bb5f;
    color: #fff;
  }
}

.main-banner {
  background-image: url("../assets/img/mainbanner.png");
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  h1,
  p {
    text-align: center;
    text-shadow: #000 3px 2px 3px;
    font-weight: bold;
    color: #fff;
  }
  h1 {
    font-size: 4rem;
  }
  p {
    font-size: 2rem;
  }
}

.service-containers {
  padding: 5rem 0;
  ul {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }
  li {
    flex: 1 1 200px;
    list-style: none;
    text-align: center;
    padding: 20px;
  }
  h3 {
    margin-bottom: 24px;
  }
  p {
    line-height: 24px;
  }
}

.fas {
  font-size: 4rem;
  margin-bottom: 15px;
}

.fa-shield-alt {
  color: #2cc76a;
}
.fa-rocket {
  color: #ef3f29;
}
.fa-comments {
  color: #ef8f29;
}

.pricing-container {
  padding-bottom: 4rem;
  text-align: center;
  h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  p {
    font-size: 1.5rem;
  }
}
.plans-container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 50px auto 0;
}
.plans {
  flex: 1;
  max-width: 275px;
  margin: 0 20px;
  ul {
    padding: 0;
  }
  li {
    list-style: none;
    height: 50px;
    line-height: 50px;
    background-color: #e8e9ea;
    color: #333;
  }
  .price {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #2cc762;
    color: #fff;
    text-align: center;
    line-height: 120px;
    margin: 0 auto -50px;
    font-size: 18px;
    position: relative;
  }
  .plan-name {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #202b34;
    padding: 50px 0;
  }
  .plan-btn {
    background-color: #2cc762;
    color: #fff;
    font-size: 2rem;
    height: 75px;
    line-height: 75px;
    cursor: pointer;
  }
  #recomended {
    background-color: #f45c57;
  }
}

.seachdomain-container {
  background-color: #34454e;
  text-align: center;
  padding: 5rem 0;
  h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 42px;
  }
  p {
    color: #d5d5d5;
    font-size: 24px;
    margin-bottom: 25px;
  }
  input {
    display: block;
    border: none;
    border-radius: 5px;
    margin: 0 auto;
  }
  input[type="text"] {
    width: 50%;
    height: 50px;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  input[type="submit"] {
    background-color: #2cc76a;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    padding: 15px 30px;
    opacity: 0.8;
  }
}
