* {
  border: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, button, input {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 92%;
  height: auto;
  margin: 0 auto;
}

.header--logo {
  float: left;
}

header {
  margin: 12px 0;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

header ul li {
  list-style-type: none;
  font-weight: 700;
}

header ul li a {
  text-decoration: none;
  color: #9e9aa7;
}

header ul li a:hover {
  color: #35323e;
}

.header__nav--btn-secondary {
  background-color: #2acfcf;
  color: #fff;
  padding: 5px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 20px;
}

.header__nav--btn-secondary:hover {
  color: #fff;
}

.clearfix {
  clear: both;
}

h1 {
  color: #35323e;
  font-size: 3rem;
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(/images/illustration-working.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 25rem;
  margin: 1.5rem 0;
}

.banner--content {
  float: left;
  width: 40%;
}

.banner--btn {
  background-color: #2acfcf;
  color: #fff;
  padding: 5px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 20px;
  margin-top: 1.5rem;
}

.banner--btn:hover {
  color: #fff;
}

.banner--empty {
  display: none;
}

.banner--img {
  display: none;
}

.main--bg {
  background-color: #d9d9d9;
  width: 100%;
  padding: 4rem 0;
}

.shorten--bg {
  background-color: #3b3054;
  height: 6rem;
  width: 100%;
  border-radius: 8px;
  background-image: url(images/bg-boost-desktop.svg);
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 9;
  margin-top: 3rem;
}

.shorten--btn {
  background-color: #2acfcf;
  color: #fff;
  padding: 5px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.70rem 2rem;
}

.shorten--input {
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  border-radius: 5px;
  width: 70%;
  padding: 0.75rem 2rem;
}

.banner--heading {
  font-size: 4rem;
}

.main--section {
  margin: 2rem auto 6rem auto;
  text-align: center;
  width: 40%;
}

h2 {
  font-size: 2.50rem;
  color: #35323e;
}

p {
  color: #9e9aa7;
  line-height: 1.75rem;
}

/* .features{
    //display:inline-block;
    //flex-direction:row;
    //grid-template-columns: repeat(3, auto);
    //grid-gap:1.75rem;
    //margin-top:2rem;
    //float:left;
} */
.features--box {
  background-color: #fff;
  padding: 1.50rem;
  border-radius: 0.40rem;
  float: left;
  width: 31.61%;
  position: relative;
}

.features--box:not(.features--third) {
  margin-right: 2rem;
}

h3 {
  color: #35323e;
}

.features--icon {
  background-color: #35323e;
  border-radius: 50%;
  padding: 1.25rem;
  margin-top: -3.5rem;
  margin-left: 1rem;
}

.features--second {
  margin-top: 2.5rem;
}

.features--third {
  margin-top: 5rem;
}

.features--line {
  width: 2rem;
  height: 0.50rem;
  background-color: #2acfcf;
  position: absolute;
  right: -2rem;
  top: 8rem;
}

.boost {
  background-color: #35323e;
  padding: 3rem 0;
  text-align: center;
  background-image: url(./images/bg-boost-desktop.svg);
  background-position: center;
}

h4 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.50rem;
}

.boost--btn {
  background-color: #2acfcf;
  color: #fff;
  padding: 5px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 1rem;
}

.footer {
  background-color: #35323e;
  padding: 3rem 0;
}

.footer--box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[5];
      grid-template-columns: repeat(5, auto);
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer--logo {
  width: 100%;
  height: auto;
}

/* .footer--social{
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap:1rem;
} */
.footer--social ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[4];
      grid-template-columns: repeat(4, auto);
  grid-gap: 1.50rem;
}

.footer--social ul li {
  list-style-type: none;
}

.footer--social ul li a {
  text-decoration: none;
  fill: #fff;
}

.footer--social ul li a:hover {
  fill: #2acfcf;
}

.footer--heading {
  font-size: 1rem;
  color: #fff;
}

ul.footer--ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin-top: 1rem;
}

ul.footer--ul li {
  list-style-type: none;
}

ul.footer--ul li a {
  text-decoration: none;
  color: #9e9aa7;
  font-size: 0.85rem;
  font-weight: 500;
}

ul.footer--ul li a:hover {
  color: #2acfcf;
}

/**************************
******* Mobile style*******
**************************/
@media (max-width: 420px) {
  .header--logo {
    float: none;
  }
  nav {
    display: none;
  }
  nav.active {
    display: block;
  }
  header ul {
    display: block;
    background-color: #3b3054;
    padding: 15px;
    border-radius: 12px;
  }
  header ul li {
    margin: 15px 0;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  header ul li a {
    color: #fff;
    display: block;
    padding: 8px 15px;
  }
  header ul li a:hover {
    color: #2acfcf;
  }
  .header__nav--btn-primary {
    border-top: 1px solid rgba(191, 191, 191, 0.3);
  }
  .header--toggle {
    display: block;
    width: 40px;
    height: 40px;
    float: right;
    cursor: pointer;
    font-size: 1.50rem;
    text-align: center;
    color: #d9d9d9;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
  }
  .header--toggle::before {
    content: '\f0c9';
    font-family: fontAwesome;
  }
  .header--toggle.active::before {
    content: '\f00d';
  }
  .banner {
    background: none;
    margin: 6rem 0 5rem 0;
  }
  .banner--img {
    display: block;
    width: 100%;
  }
  .banner--content {
    display: block;
    width: 100%;
    text-align: center;
  }
  .banner--heading {
    font-size: 2.55rem;
  }
  .shorten--input, .shorten--btn {
    width: 90%;
    display: block;
    margin: .30rem 0;
  }
  .shorten--bg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 0;
  }
  .main--section {
    width: 100%;
  }
  .features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    grid-gap: 4rem;
  }
  .features--box {
    width: 100%;
    text-align: center;
  }
  .features--second, .features--third {
    margin: 0;
  }
  .features--line {
    left: 8.25rem;
    position: relative;
    top: 5.5rem;
    width: 0.50rem;
    height: 4rem;
  }
  h4 {
    font-size: 1.50rem;
  }
  .footer--box {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    text-align: center;
    grid-gap: 1.75rem;
  }
}
/*# sourceMappingURL=style.css.map */
