* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

.container {
  width: 100%;
  min-height: 100vh;
  padding: 0 8%;
  box-sizing: border-box;
  overflow: hidden;
}
.container .navbar {
  width: 100%;
  display: flex;
  align-items: center;
}
.container .navbar .menu-icon {
  display: none;
  width: 25px;
  cursor: pointer;
}
.container .navbar .logo {
  width: 50px;
  cursor: pointer;
  margin: 30px 0;
}

nav {
  flex: 1;
  text-align: right;
}
nav ul li {
  display: inline-block;
  margin-right: 30px;
}
nav ul li a {
  color: #000;
  font-size: 14px;
}
nav ul li a:hover {
  color: #ff5ea2;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0;
}
.row .col-1 {
  flex-basis: 40%;
  position: relative;
  margin-left: 50px;
}
.row .col-1 h2 {
  font-size: 52px;
}
.row .col-1 h3 {
  font-size: 30px;
  color: #707070;
  font-weight: 100;
  margin: 20px 0 10px;
}
.row .col-1 p {
  font-size: 16px;
  color: #b7b7b7;
  font-weight: 100;
}
.row .col-1 h4 {
  margin: 30px 0;
  font-size: 20px;
}
.row .col-1 button {
  width: 140px;
  border: 0;
  padding: 12px 10px;
  outline: none;
  color: #fff;
  background: linear-gradient(to right, #fb5283, #ff3527);
  border-radius: 6px;
  cursor: pointer;
  transition: width 0.5s;
}
.row .col-1 button img {
  width: 30px;
  display: none;
}
.row .col-1 button:hover img {
  display: block;
}
.row .col-1 button:hover {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.row .col-1 button::after {
  content: "";
  width: 10px;
  height: 57%;
  background: linear-gradient(#ff469f, #ff6062);
  position: absolute;
  left: -40px;
  top: 8px;
}
.row .col-2 {
  position: relative;
  flex-basis: 60%;
  display: flex;
  align-items: center;
}
.row .col-2 .controller {
  width: 90%;
}
.row .col-2 .color-box {
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(#ff54a2, #ff575a);
  border-radius: 20px 0 0 20px;
  height: 100%;
  width: 80%;
  z-index: -1;
  transform: translateX(150px);
}
.row .col-2 .add-btn img {
  width: 35px;
  margin-bottom: 5px;
}
.row .col-2 .add-btn {
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.social-links {
  text-align: center;
}
.social-links img {
  height: 13px;
  margin: 20px;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  nav ul {
    width: 100%;
    background: linear-gradient(#ff54a2, #ff575a);
    position: absolute;
    top: 75px;
    right: 0;
    z-index: 2;
  }
  nav ul li {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  nav ul li a {
    color: #fff;
  }
  .container .navbar .menu-icon {
    display: block;
  }
  #menuList {
    overflow: hidden;
    transition: 0.5s;
  }
  .row {
    flex-direction: column-reverse;
    margin: 50px 0;
  }
  .row .col-2 {
    flex-basis: 100%;
    margin-bottom: 50px;
  }
  .row .col-2 .controller {
    width: 77%;
  }
  .row .col-2 .color-box {
    transform: translateX(75px);
  }
  .row .col-1 {
    flex-basis: 100%;
  }
  .row .col-1 h2 {
    font-size: 35px;
  }
}
.container .row .col-1 h3 {
  font-size: 15px;
}