@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap');
body {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: #222222;
}

a:hover {
  text-decoration: none;
}

a.neutral-link {
  font-weight: 700;
  color: #1ebbd7 !important;
  cursor: pointer;
}

.neutral-link:hover i {
  transform: translateX(6px);
  transition: transform 0.3s ease-out;
}

.white {
  color: #fff;
}

.black {
  color: black;
}

.blue {
  color: #70bbe3;
}

.title {
  font-weight: 700;
  font-size: 34px;
}

.space {
  display: block;
  clear: both;
}

.space.sm {
  height: 20px;
}

.space.md {
  height: 40px;
}

.section {
  padding: 80px 0px;
}

.mobile-menu {
  display: none;
}

.mobile-menu-options {
  display: none;
}

.mobile-menu .menu-icon {
  width: 40px;
  height: 40px;
}

.mobile-menu .menu-icon .line {
  background: #222222;
  height: 4px;
  margin: 8px 0px;
  width: 100%;
}

@keyframes monkey {
  0% {
    stroke-dashoffset: -2000;
  }
  50% {
    stroke: red;
  }
  100% {
    stroke-dashoffset: 0;
    stroke: purple;
  }
}

.wave1 {
  stroke: green;
  stroke-width: 2px;
  stroke-dashoffset: 0;
  stroke-dasharray: 2000;
  stroke-dashoffset: -2000;
  animation-name: monkey;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: fowards;
}


/* navbar */

.navbar {
  width: 100%;
  max-width:100%;
  padding-top: 40px;
  position: static;
  top: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
}

.navbar.sticky {
  width: 100%;
  max-width:100%;
  display: flex;
  padding-top: 40px;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar .logo img {
  height: 80px;
  margin-top: -20px;
}


/* .navbar .navbar-content{
  flex:1;
} */

.navbar .navbar-content ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.navbar .navbar-content ul li {
  display: inline-block;
  margin: auto 20px;
}

.navbar .navbar-content ul li a:hover {
  transition: 0.2s ease-in;
  color: #1ebbd7;
}

.button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  text-align: center;
  width: 150px;
  height: 44px;
  transform: translateY(-2px);
}

.button.blue {
  color: #fff;
  font-weight: 700;
  background: #1ebbd7;
  background: -moz-linear-gradient(left, #1ebbd7 1%, #70bbe3 99%);
  background: -webkit-linear-gradient(left, #1ebbd7 1%, #70bbe3 99%);
  background: linear-gradient(to right, #1ebbd7 1%, #70bbe3 99%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#1ebbd7', endColorstr='#70bbe3', GradientType=1);
  box-shadow: 0px 4px 8px rgba(24, 154, 211, 0.2);
}

.button.blue:hover {
  transition: 0.2s ease-in-out;
  background: #70bbe3;
  box-shadow: 0px 2px 3px rgba(24, 154, 211, 0.7);
  transform: translateY(0px);
}


/* home */

.home {
  height: 80vh;
  position: relative;
}

.home-content {
  margin-top: 120px;
}

.home-title {
  font-size: 120px;
  font-weight: 500;
  z-index: 2;
}

.buy-button {
  display: none;
}

#navigator-container {
  z-index: 1;
}

@keyframes movenavigator {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

#navigator {
  position: absolute;
  right: -20px;
  top: 30%;
  transform: translateY(0px);
  animation-name: movenavigator;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-direction: alternate;
}

#navio {
  width: 440px;
}

#clouds-container {
  width: 400px;
  position: absolute;
  right: -20px;
  top: 10%;
}

@keyframes moveCloud {
  0% {
    left: 200px;
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: -200px;
    opacity: 0;
  }
}

#clouds {
  position: absolute;
  width: 220px;
  opacity: 0;
  left: 300px;
  animation-name: moveCloud;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-direction: normal;
}

#waves {
  width: 380px;
  right: 40px;
  bottom: -50px;
  position: absolute;
}

@keyframes moveWave1 {
  from {
    left: -20px;
  }
  to {
    left: 80px;
  }
}

@keyframes moveWave2 {
  from {
    left: 20px;
  }
  to {
    left: 180px;
  }
}

#wave1 {
  width: 100%;
  max-width:100%;
  position: relative;
  left: -20px;
  animation-name: moveWave1;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-duration: 8s;
  animation-direction: alternate;
}

#wave2 {
  width: 60%;
  position: relative;
  margin-top: 40px;
  left: 50px;
  animation-name: moveWave2;
  animation-delay: 3s;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  animation-direction: alternate;
}


/* #home */


/* resume */

.resume-left-content {
  display: block;
  position: relative;
  background: #70bbe3;
  width: 80%;
  padding: 60px;
  border-radius: 10px;
}

.resume {
  position: relative;
}

.resume-left-content .description {
  font-size: 20px;
  width: 50%;
}

.resume-right-content {
  display: flex;
  width: 450px;
  justify-content: center;
  align-items: center;
  height: 280px;
  color: rgb(71, 71, 71);
  font-size: 30px;
  right: 0;
  bottom: 30px;
  position: absolute;
  background: #fff;
  box-shadow: -2px 5px 13px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.resume-right-content .description {
  text-align: center;
  font-weight: 600;
}


/* #resume */


/* chapters */

.chapters-section {
  padding-top: 140px;
  padding-bottom: 60px;
}

.chapters-section .chapter-description {
  margin-bottom: 80px;
}

.chapters-section .chapter-description .icon img {
  display: inline-block;
  height: 60px;
  position: absolute;
  border-radius: 3px;
}

.chapters-section .chapter-description .icon {
  position: relative;
}

.chapters-section .chapter-description .icon .cap-title {
  margin-left: 80px;
  font-weight: 700;
  font-size: 24px;
}

.chapters-section .chapter-description .description {
  margin-top: 40px;
}


/* #chapters  */


/* ABOUT ME */

.about-me {
  background: #70bbe3;
  padding: 80px 40px;
  border-radius: 20px;
  width: 100%;
  max-width:100%;
  display: flex;
  justify-content: space-around;
}

.about-me .profile-container img {
  border-radius: 20px;
  width: 180px;
  height: 180px;
  display: inline-block;
  border: 4px solid #fff;
}

.about-me .description-container {
  margin-left: 40px;
  color: #fff;
}


/* ###ABOUT ME */

.phrase {
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  color: #222222;
  padding: 40px 0px;
  text-shadow: 0px 40px 15px rgba(102, 102, 102, 0.12);
}


/* princing section  */

.princing-section {
  position: relative;
  margin: 200px 0px 80px 0px;
  padding: 60px 0px;
  background: #fafafa;
}

.containers-vector {
  position: absolute;
  right: 80px;
  width: 300px;
  transform: translateY(-240px);
}

.princing-section .header-content {
  width: 400px;
  margin-left: 100px;
}

.pricing-cards {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.pricing-cards .icon {
  padding: 40px 0px;
}

.pricing-card-title {
  font-size: 18px;
  font-weight: 700;
}


/* #princing section  */


/* footer*/

footer {
  background-color: #f7f7f7;
  width: 100%;
  max-width:100%;
  padding: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

footer .logo img {
  height: 80px;
}

footer .menu-options {
  flex-grow: 1;
  text-align: right;
  margin-top: 23px;
  margin-right: 20px;
}

footer .social-icons {
  margin-top: 20px;
  text-align: right;
}

footer .menu-options ul {
  list-style: none;
  display: inline-block;
  padding: 0;
}

footer .menu-options ul li {
  display: inline;
  margin-left: 20px;
}

footer .menu-options ul li a {
  font-weight: 700;
}

footer .menu-options ul li a:hover {
  color: #70bbe3;
  transition: color 0.3s ease-in-out;
}

footer .social-icons ul {
  list-style: none;
  display: inline-block;
  padding: 0;
}

footer .social-icons ul li {
  display: inline;
  margin-left: 20px;
}


/* Scroll */

.scroll-downs {
  position: absolute;
  left: 50%;
  bottom: 100px;
  margin: auto;
  width: 24px;
  cursor: pointer;
  height: 45px;
}

.mousey {
  width: 3px;
  padding: 6px 11px;
  height: 35px;
  border: 2px solid #1d1d1d;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 6px;
  border-radius: 25%;
  background-color: #1ebbd7;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.copyright{
  padding:10px 0px;
  background: #222222;
  color:#fff;
}

.copyright a{
  color:#fff;
}

@media(max-width:768px) {
  .scroll-downs {
    position: static;
    padding: 20px 0px;
  }
  .mousey {
    height: 28px;
  }
}


/* #footer*/

@media(max-width:768px) {
  .button {
    width: 100%;
  }
  .princing-section .header-content {
    margin-left: 0;
    width: 100%;
    margin-bottom: 100px;
  }
  .princing-section {
    margin-top: 0;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu-options {
    display: block;
  }
  .home {
    height: auto;
    margin-bottom: 60px;
  }
  .home-content {
    margin-top: 40px;
  }
  .home-title {
    font-size: 40px;
  }
  .home-content .neutral-link {
    display: none;
  }
  .buy-button {
    display: block;
    position: static;
    margin: 20px 0px;
  }
  #navigator-container {
    margin-top: -40px;
    position: relative;
    height: 290px;
  }
  #navigator {
    bottom: 0;
    left: 30px;
    margin-top: 50px;
  }
  #navigator #navio {
    width: 220px;
  }
  #clouds {
    width: 140px;
    top: 20%;
  }
  #waves {
    width: 200px;
    left: 0px;
    bottom: 0px;
    position: absolute;
  }
  #wave2 {
    margin-top: 20px;
    left: 20px;
  }
  .mobile-menu {
    display: block;
    z-index: 999;
    position: absolute;
    right: 20px;
    top: 40px;
  }
  .mobile-menu-options.open {
    transition: all 0.5 ease-in;
    right: 0;
    position: absolute;
  }
  .mobile-menu-options {
    position: fixed;
    z-index: 9;
    width: 100%;
    max-width: 100%;
    background: #fafafa;
    height: 100vh;
    overflow-y: scroll;
    right: -100%;
    top: 105px;
    padding-top: 20px;
    transition: all 0.5 ease-in;
  }
  .mobile-menu-options ul {
    list-style: none;
    padding: 20px;
  }
  .mobile-menu-options ul li a.link {
    padding: 20px;
    display: block;
    font-size: 24px;
  }
  .navbar-content {
    display: none;
  }
  .resume-left-content, .resume-left-content .description {
    width: 100%;
    font-size: 16px;
    text-align: justify;
  }
  .resume-left-content {
    padding: 20px;
  }
  .resume-right-content {
    width: 100%;
    position: static;
    margin-top: 20px;
  }
  .about-me {
    padding: 20px;
    display: block;
    text-align: center;
  }
  .about-me .profile-container {
    text-align: center;
    margin-bottom: 20px;
  }
  .about-me .title {
    text-align: center;
  }
  .about-me .description-container {
    margin-left: 0;
    text-align: justify;
  }
  .containers-vector {
    display: none;
  }
}

@media(min-width:1024px){
  .home-title {
    font-size:90px;
  }
  #waves{
    margin-bottom:-60px;
  }
}