* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100%;
  width: 100%;
}

.app {
  display: flex;
  min-height: 100vh;
  background-color: #dddddd;
}

.logo{
  margin-top: 250px;
  margin-left: 65px;
  margin-right: 50px;

}

.menu-toggle {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 99px;
  background-color: #000000;
  cursor: pointer;
}

.hamburger {
  position: relative;
  top: calc(50% - 2px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background-color: #FFF;
  transition-duration: .25s;
}

.hamburger > span::before {
  content: '';
  top: -8px;
}
.hamburger > span::after {
  content: '';
  top: 8px;
}
.menu-toggle.is-active .hamburger > span {
  transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before {
  top: 0;
  transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after {
  top: 0;
  transform: rotate(90deg);
}

.sidebar {
  flex: 1 1 0;
  max-width: 300px;
  padding: 2rem 1rem;
  background-color: #ffffff;
  padding-top: 90px;
}

.sidebar .menu {
  margin: 100px;
  margin-top: 40px;

}

.sidebar .menu .menu-item {
  display: block;
  padding: 1em;
  margin-right: -15px;
  color: #969696;
  text-decoration: none;
  transition: 0.1s linear;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.is-active {
  color: #3e9a31;
  border-bottom: 2px solid #000000;

}

.sidebar .menu .menu-item:hover {
  border-bottom: 2px solid #000000;

}

.content {
  display: flex;
  flex-direction: row;
  padding: 10rem;
  align-items: center;
  align-self: center;
  justify-content: center;
  margin: 0 auto;
}

.content2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: right;
  margin: 0 auto;
  margin-top: -120px;
}

#contentimg {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.text{
  margin-left: 50px;
}

.textsocial{
  display: flex;
  flex-direction: row;
  margin-top: 100px;
}

.social{
  margin-left: 150px;
  padding-left: 120px;
  border-left: 2px solid #000000;
}

.content h1 {
  color: #3C3F58;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content p {
  color: #707793;
}



.wrapper{
  display: flex;

  margin-top: 70px;
}
.wrapper .icon{
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span{
  display: block;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span i{
  line-height: 60px;
  font-size: 25px;
}
.wrapper .icon .tooltip{
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip{
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}
.icon .tooltip:before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover span{
  color: #fff;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip{
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
}
.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip:before{
  background: #3B5999;
}
.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before{
  background: #46C1F6;
}
.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip:before{
  background: #e1306c;
}
.wrapper .github:hover span,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip:before{
  background: #333;
}
.wrapper .youtube:hover span,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip:before{
  background: #DE463B;
}

@media (max-width: 1024px) {
  .sidebar {
    max-width: 200px;
  }
  .logo{
    margin-top: 240px;
    margin-left: 35px;
    margin-right: 20px;
  }
  .sidebar .menu {
    margin: 50px;
  }
  .content {
    flex-direction: column;
    padding: 1rem;
  }



}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .content {
    flex-direction: column;
    padding: 1rem;
  }

  #contentimg{
    width: 60%;
    margin-bottom: 40px;
  }

  .sidebar {
    position: fixed;
    top: 0;
    z-index: 3;
    left: -300px;
    height: 100vh;
    width: 100%;
    max-width: 240px;
    transition: 0.2s linear;
    padding-top: 50px;
  }

  .logo{
    margin-top: 240px;
    margin-left: 65px;
    margin-right: 50px;
  }

  .sidebar .menu {
    margin: 70px;
  }

  .sidebar.is-active {
    left: 0;
  }

  .text{
    text-align: center;
    margin-right: 40px;
  }

  .textsocial{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    justify-content: right;
    justify-items: right;
    justify-self: right;
  }

  h1{

  }

  .social{
    margin-top: 50px;
    margin-left: 20px;
    padding-left: 0px;
    border-left: none;

  }
  #contentimg2 {
    width: 80%;
    height: 80%;
  }

  .wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
  }

  .wrapper .icon{
    margin: 17px;

  }

}
