:root {
  --background: #282A36;
  --primary: #0E1419;
  --secondary: #69518E;
  --terciary: #E77EB0;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --font-family-sans-serif: 'Ubuntu', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body, * {
  font-family: var(--font-family-sans-serif);
}

.content {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  position: relative;
}

.session p {
  font-size: 30px;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.two-columns div {
  min-width: 400px;
  width: calc(50% - 2%);
  margin: 0 1%;
}

.two-columns div img {
  width: 100%;
}

.title {
  font-size: 70px;
  font-weight: 400;
}

h1 {
  color: var(--terciary);
  font-weight: 400;
}

p {
  font-weight: 100;
}

a {
  color: white;
  text-decoration: none;
}

b {
  color: var(--terciary);
}

html, * {
  padding: 0;
  margin: 0px;
}

body {
  background-color: var(--background);
  color: white;
  font-family: var(--font-family-sans-serif);
}

nav {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  position: relative;
  height: 80px;
}

nav img {
  position: absolute;
  top: 20px;
  width: 230px;
  left: 20px;
}

nav ul {
  position: absolute;
  top: 30px;
  right: 20px;
  list-style: none;
}

nav ul li {
  font-size: 20px;
  text-align: left;
  display: inline-block;
  margin-left: 20px;
  font-weight: 300;
}

#mobile-hamburguer {
  display: none;
  width: 40px;
  position: absolute;
  right: 10px;
  top: 25px;
  color: white;
}

#contate-nos {
  padding: 5px 10px;
  border: 2px solid white;
  border-radius: 10px;
}

footer {
  width: 100%;
  background-color: var(--primary);

}

.content-footer {
  margin: 0 auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.column{
  margin: 40px 40px 20px;
  width: 250px;
}

.column p {
  font-size: 18px;
}

.column li {
  font-size: 20px;
}

#column-1 p{
  margin: 20px 0;
}

.column ul {
  margin: 20px 0;
}

.column li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  nav {
    width: 100%;
  }

  nav img {
    width: 250px;
    top: 28px;
  }
  
  nav ul {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 0;
    list-style: none;
    z-index: 200;
    background-color: #313442;
    overflow: hidden;
    transition: height 0.2s linear;
  }

  nav ul:hover {
    height: 200px;
  }
  
  nav ul li {
    text-align: center;
    display: block;
    margin-top: 20px;
    position: relative;
    z-index: 100;
  }

  #mobile-hamburguer {
    display: block;
    width: 35px;
    position: absolute;
    left: auto;
    right: 20px;
    top: 30px;
    color: white;
    z-index: 2;
  }

  #mobile-effect:hover ul {
    height: 200px;
    z-index: 200;
  }

  #contate-nos {
    border: none;
  }
}

@media (max-width: 500px) {
  nav {
    margin-bottom: 20px;
  }

  nav img {
    width: 200px;
  }

  footer{
    height: 1100px;
  }
}